forked from TrueCloudLab/frostfs-s3-gw
[#65] Allow no sign requests
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
12b92a31c6
commit
8185b71462
3 changed files with 13 additions and 12 deletions
|
@ -26,8 +26,15 @@ func AttachUserAuth(router *mux.Router, center auth.Center, log *zap.Logger) {
|
|||
return
|
||||
}
|
||||
|
||||
h.ServeHTTP(w, r.WithContext(
|
||||
context.WithValue(r.Context(), BearerTokenKey, token)))
|
||||
var ctx context.Context
|
||||
if token == nil {
|
||||
log.Info("couldn't receive bearer token, switch to use neofs-key")
|
||||
ctx = r.Context()
|
||||
} else {
|
||||
ctx = context.WithValue(r.Context(), BearerTokenKey, token)
|
||||
}
|
||||
|
||||
h.ServeHTTP(w, r.WithContext(ctx))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue