forked from TrueCloudLab/frostfs-node
Evgenii Stratonikov
b1a31281e4
Previous release was EACL-compatible. Starting from now all EACL should've been migrated to APE chains. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
24 lines
482 B
Go
24 lines
482 B
Go
package object
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/bearer"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/acl"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
|
)
|
|
|
|
type RequestContextKeyT struct{}
|
|
|
|
var RequestContextKey = RequestContextKeyT{}
|
|
|
|
// RequestContext is a context passed between middleware handlers.
|
|
type RequestContext struct {
|
|
Namespace string
|
|
|
|
SenderKey []byte
|
|
|
|
ContainerOwner user.ID
|
|
|
|
Role acl.Role
|
|
|
|
BearerToken *bearer.Token
|
|
}
|