Denis Kirillov
d531b13866
All checks were successful
/ DCO (pull_request) Successful in 1m18s
/ Vulncheck (pull_request) Successful in 1m50s
/ Lint (pull_request) Successful in 3m1s
/ Tests (1.19) (pull_request) Successful in 2m47s
/ Tests (1.20) (pull_request) Successful in 3m2s
/ Builds (1.19) (pull_request) Successful in 2m54s
/ Builds (1.20) (pull_request) Successful in 7m58s
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.Owner(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
|
|
}
|