aboutsummaryrefslogtreecommitdiffstats
path: root/api/auth/middleware.go
blob: d1d654cea60d51056c63285b29cb652f95d86f8f (plain) (blame)
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))
		})
	}
}