Apply basic auth to whole server

This commit is contained in:
Ben Sarmiento
2024-01-15 23:04:11 +01:00
parent 5b8ea46fa4
commit e65ade4f38

View File

@@ -2,13 +2,12 @@ package handlers
import (
"net/http"
"strings"
)
// basicAuth is a middleware that performs basic authentication.
func (hs *Handlers) basicAuth(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != "OPTIONS" && needsAuth(r.URL.Path) {
if r.Method != "OPTIONS" {
if !hs.authenticate(r) {
hs.unauthorized(w)
return
@@ -20,15 +19,15 @@ func (hs *Handlers) basicAuth(next http.Handler) http.Handler {
}
// needsAuth checks if the given path requires authentication.
func needsAuth(path string) bool {
authenticatedPaths := []string{"/http/", "/dav/", "/infuse/"}
for _, p := range authenticatedPaths {
if strings.HasPrefix(path, p) {
return true
}
}
return false
}
// func needsAuth(path string) bool {
// authenticatedPaths := []string{"/http/", "/dav/", "/infuse/"}
// for _, p := range authenticatedPaths {
// if strings.HasPrefix(path, p) {
// return true
// }
// }
// return false
// }
// authenticate performs the basic authentication check.
func (hs *Handlers) authenticate(r *http.Request) bool {