094eb12578
Use `X-Amz-Date` header as `now` when * compute expiration epoch * set Timestamp for object and container * forming locks * send notifications Signed-off-by: Denis Kirillov <denis@nspcc.ru>
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/nspcc-dev/neofs-s3-gw/api/auth"
|
|
"github.com/nspcc-dev/neofs-s3-gw/api/errors"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// KeyWrapper is wrapper for context keys.
|
|
type KeyWrapper string
|
|
|
|
// BoxData is an ID used to store accessbox.Box in a context.
|
|
var BoxData = KeyWrapper("__context_box_key")
|
|
|
|
// ClientTime is an ID used to store client time.Time in a context.
|
|
var ClientTime = KeyWrapper("__context_client_time")
|
|
|
|
// AttachUserAuth adds user authentication via center to router using log for logging.
|
|
func AttachUserAuth(router *mux.Router, center auth.Center, log *zap.Logger) {
|
|
router.Use(func(h http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
var ctx context.Context
|
|
box, err := center.Authenticate(r)
|
|
if err != nil {
|
|
if err == auth.ErrNoAuthorizationHeader {
|
|
log.Debug("couldn't receive access box for gate key, random key will be used")
|
|
ctx = r.Context()
|
|
} else {
|
|
log.Error("failed to pass authentication", zap.Error(err))
|
|
if _, ok := err.(errors.Error); !ok {
|
|
err = errors.GetAPIError(errors.ErrAccessDenied)
|
|
}
|
|
WriteErrorResponse(w, GetReqInfo(r.Context()), err)
|
|
return
|
|
}
|
|
} else {
|
|
ctx = context.WithValue(r.Context(), BoxData, box.AccessBox)
|
|
if !box.ClientTime.IsZero() {
|
|
ctx = context.WithValue(ctx, ClientTime, box.ClientTime)
|
|
}
|
|
}
|
|
|
|
h.ServeHTTP(w, r.WithContext(ctx))
|
|
})
|
|
})
|
|
}
|