Denis Kirillov
18878b66d3
Some checks failed
/ DCO (pull_request) Failing after 3s
/ Vulncheck (pull_request) Failing after 2s
/ Builds (1.19) (pull_request) Failing after 3s
/ Builds (1.20) (pull_request) Successful in 7m47s
/ Lint (pull_request) Failing after 4s
/ Tests (1.19) (pull_request) Successful in 8m8s
/ Tests (1.20) (pull_request) Failing after 3s
This is required because node check session token owner TrueCloudLab/frostfs-node#528 For client cut TrueCloudLab/frostfs-sdk-go#114 such owner will be gate owner Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package layer
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/api/data"
|
|
s3errors "git.frostfs.info/TrueCloudLab/frostfs-s3-gw/api/errors"
|
|
)
|
|
|
|
func (n *layer) GetObjectTaggingAndLock(ctx context.Context, objVersion *ObjectVersion, nodeVersion *data.NodeVersion) (map[string]string, *data.LockInfo, error) {
|
|
var err error
|
|
owner := n.BearerOwner(ctx)
|
|
|
|
tags := n.cache.GetTagging(owner, objectTaggingCacheKey(objVersion))
|
|
lockInfo := n.cache.GetLockInfo(owner, lockObjectKey(objVersion))
|
|
|
|
if tags != nil && lockInfo != nil {
|
|
return tags, lockInfo, nil
|
|
}
|
|
|
|
if nodeVersion == nil {
|
|
nodeVersion, err = n.getNodeVersion(ctx, objVersion)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
}
|
|
|
|
tags, lockInfo, err = n.treeService.GetObjectTaggingAndLock(ctx, objVersion.BktInfo, nodeVersion)
|
|
if err != nil {
|
|
if errors.Is(err, ErrNodeNotFound) {
|
|
return nil, nil, fmt.Errorf("%w: %s", s3errors.GetAPIError(s3errors.ErrNoSuchKey), err.Error())
|
|
}
|
|
return nil, nil, err
|
|
}
|
|
|
|
n.cache.PutTagging(owner, objectTaggingCacheKey(objVersion), tags)
|
|
n.cache.PutLockInfo(owner, lockObjectKey(objVersion), lockInfo)
|
|
|
|
return tags, lockInfo, nil
|
|
}
|