1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package auth import ( "net/http" "github.com/MichaelMure/git-bug/entity" ) func Middleware(fixedUserId entity.Id) func(http.Handler) http.Handler { return func(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { ctx := CtxWithUser(r.Context(), fixedUserId) next.ServeHTTP(w, r.WithContext(ctx)) }) } }