aboutsummaryrefslogtreecommitdiff
path: root/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'error.go')
-rw-r--r--error.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/error.go b/error.go
new file mode 100644
index 0000000..114bbf1
--- /dev/null
+++ b/error.go
@@ -0,0 +1,24 @@
+package main
+
+import (
+ "net/http"
+)
+
+type NotAuthorized struct{}
+
+func (n NotAuthorized) WithError(err error) http.Handler {
+ return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ w.Header().Set("WWW-Authenticate", `Basic realm="Pour accéder à Bagage, veuillez entrer vos identifiants Deuxfleurs"`)
+ w.WriteHeader(401)
+ w.Write([]byte("401 Unauthorized\n"))
+ })
+}
+
+type InternalError struct{}
+
+func (i InternalError) WithError(err error) http.Handler {
+ return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ w.WriteHeader(500)
+ w.Write([]byte("500 Internal Server Error\n"))
+ })
+}