frostfs-s3-gw/cmd/gate/app-new-auth.go
2020-07-22 17:58:35 +03:00

26 lines
700 B
Go

package main
import (
"context"
"net/http"
"github.com/gorilla/mux"
"github.com/minio/minio/auth"
s3http "github.com/minio/minio/http"
"go.uber.org/zap"
)
func attachNewUserAuth(router *mux.Router, center *auth.Center, log *zap.Logger) {
uamw := func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
bearerToken, err := center.AuthenticationPassed(r)
if err != nil {
log.Error("failed to pass authentication", zap.Error(err))
// TODO: Handle any auth error by rejecting request.
}
h.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), s3http.BearerTokenContextKey, bearerToken)))
})
}
router.Use(uamw)
}