summaryrefslogtreecommitdiff
path: root/srv/src/api/auth.go
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-05-19 21:35:45 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-05-19 21:35:45 -0600
commit8da42184eb26bbd35618d81e47bcd23b6ce21adb (patch)
tree22983ba9306e242b94a257270476df67f5e89e85 /srv/src/api/auth.go
parent56530a8a66937194fb4e99af95bcea6bb0281f66 (diff)
Implement basic auth middleware
Diffstat (limited to 'srv/src/api/auth.go')
-rw-r--r--srv/src/api/auth.go72
1 files changed, 72 insertions, 0 deletions
diff --git a/srv/src/api/auth.go b/srv/src/api/auth.go
new file mode 100644
index 0000000..e668d7b
--- /dev/null
+++ b/srv/src/api/auth.go
@@ -0,0 +1,72 @@
+package api
+
+import (
+ "net/http"
+
+ "golang.org/x/crypto/bcrypt"
+)
+
+// NewPasswordHash returns the hash of the given plaintext password, for use
+// with Auther.
+func NewPasswordHash(plaintext string) string {
+ hashedPassword, err := bcrypt.GenerateFromPassword([]byte(plaintext), 12)
+ if err != nil {
+ panic(err)
+ }
+ return string(hashedPassword)
+}
+
+// Auther determines who can do what.
+type Auther interface {
+ Allowed(username, password string) bool
+}
+
+type auther struct {
+ users map[string]string
+}
+
+// NewAuther initializes and returns an Auther will which allow the given
+// username and password hash combinations. Password hashes must have been
+// created using NewPasswordHash.
+func NewAuther(users map[string]string) Auther {
+ return &auther{users: users}
+}
+
+func (a *auther) Allowed(username, password string) bool {
+
+ hashedPassword, ok := a.users[username]
+ if !ok {
+ return false
+ }
+
+ err := bcrypt.CompareHashAndPassword(
+ []byte(hashedPassword), []byte(password),
+ )
+
+ return err == nil
+}
+
+func authMiddleware(auther Auther, h http.Handler) http.Handler {
+
+ respondUnauthorized := func(rw http.ResponseWriter) {
+ rw.Header().Set("WWW-Authenticate", `Basic realm="NOPE"`)
+ rw.WriteHeader(http.StatusUnauthorized)
+ }
+
+ return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
+
+ username, password, ok := r.BasicAuth()
+
+ if !ok {
+ respondUnauthorized(rw)
+ return
+ }
+
+ if !auther.Allowed(username, password) {
+ respondUnauthorized(rw)
+ return
+ }
+
+ h.ServeHTTP(rw, r)
+ })
+}