fix(auth): add x_webauth_user to hook context

This commit is contained in:
Nicolas Carlier 2025-01-12 08:17:13 +00:00
parent 6a2cf96e95
commit 3cfb6c9044

View File

@ -12,9 +12,9 @@ const xWebAuthUser = "X-WebAuth-User"
func AuthN(authenticator auth.Authenticator) Middleware {
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Del(xWebAuthUser)
r.Header.Del(xWebAuthUser)
if ok, username := authenticator.Validate(r); ok {
w.Header().Set(xWebAuthUser, username)
r.Header.Set(xWebAuthUser, username)
next.ServeHTTP(w, r)
return
}