frostfs-s3-gw/cmd/gate/app-new-auth.go

27 lines
700 B
Go
Raw Normal View History

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