package ext import ( "context" "encoding/base64" "log/slog" "net/http" ) type authService interface { ValidateToken(token []byte) (bool, error) } func DisableAuthentication(next http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() ctx = context.WithValue(ctx, "disableAuthentication", true) next(w, r.WithContext(ctx)) } } func Authenticate(auth authService) func(next http.HandlerFunc) http.HandlerFunc { return func(next http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { cookie, err := r.Cookie("auth") if err != nil { slog.Error("Error loading cookie", "error", err) next(w, r) return } value, err := base64.StdEncoding.DecodeString(cookie.Value) if err != nil { slog.Error("Error decoding", "error", err) next(w, r) return } valid, err := auth.ValidateToken(value) if err != nil { slog.Error("Error validating token", "error", err, "cookie", cookie.Value) next(w, r) return } ctx := r.Context() ctx = context.WithValue(ctx, "logged", true) slog.Info("Validated token", "valid?", valid) next(w, r.WithContext(ctx)) } } }