frostfs-s3-gw/api/user-auth.go

26 lines
661 B
Go
Raw Normal View History

package api
2020-07-16 18:33:47 +03:00
import (
"net/http"
"github.com/gorilla/mux"
"github.com/nspcc-dev/neofs-s3-gate/auth"
2020-07-16 18:33:47 +03:00
"go.uber.org/zap"
)
func AttachUserAuth(router *mux.Router, center *auth.Center, log *zap.Logger) {
2020-07-16 18:33:47 +03:00
uamw := func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
2020-07-22 12:12:22 +03:00
bearerToken, err := center.AuthenticationPassed(r)
2020-07-16 18:33:47 +03:00
if err != nil {
log.Error("failed to pass authentication", zap.Error(err))
2020-07-28 01:54:47 +03:00
WriteErrorResponse(r.Context(), w, GetAPIError(ErrAccessDenied), r.URL)
2020-07-24 17:05:33 +03:00
return
2020-07-16 18:33:47 +03:00
}
h.ServeHTTP(w, r.WithContext(auth.SetBearerToken(r.Context(), bearerToken)))
2020-07-16 18:33:47 +03:00
})
}
router.Use(uamw)
}