2022-04-22 07:18:21 +00:00
|
|
|
package neofs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2022-05-19 08:13:25 +00:00
|
|
|
"io"
|
2022-04-22 07:18:21 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2022-05-18 13:40:09 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2022-05-18 07:48:30 +00:00
|
|
|
"github.com/nspcc-dev/neofs-s3-gw/api"
|
2022-04-22 07:18:21 +00:00
|
|
|
"github.com/nspcc-dev/neofs-s3-gw/api/data"
|
|
|
|
"github.com/nspcc-dev/neofs-s3-gw/api/layer"
|
2022-05-18 07:48:30 +00:00
|
|
|
"github.com/nspcc-dev/neofs-s3-gw/creds/accessbox"
|
2022-04-22 07:18:21 +00:00
|
|
|
"github.com/nspcc-dev/neofs-s3-gw/internal/neofs/services/tree"
|
|
|
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
2022-05-12 01:48:17 +00:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2022-04-22 07:18:21 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/credentials/insecure"
|
|
|
|
)
|
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
type (
|
|
|
|
TreeClient struct {
|
2022-05-18 13:40:09 +00:00
|
|
|
key *keys.PrivateKey
|
2022-05-12 01:48:17 +00:00
|
|
|
conn *grpc.ClientConn
|
|
|
|
service tree.TreeServiceClient
|
|
|
|
}
|
2022-04-22 07:18:21 +00:00
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
TreeNode struct {
|
|
|
|
ID uint64
|
2022-05-18 07:48:30 +00:00
|
|
|
ObjID oid.ID
|
2022-05-12 01:48:17 +00:00
|
|
|
TimeStamp uint64
|
|
|
|
Meta map[string]string
|
|
|
|
}
|
|
|
|
)
|
2022-04-22 07:18:21 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
versioningEnabledKV = "versioning_enabled"
|
|
|
|
lockConfigurationKV = "lock_configuration"
|
2022-05-17 14:56:05 +00:00
|
|
|
oidKV = "OID"
|
2022-04-22 07:18:21 +00:00
|
|
|
fileNameKV = "FileName"
|
|
|
|
systemNameKV = "SystemName"
|
2022-05-17 14:56:05 +00:00
|
|
|
isUnversionedKV = "IsUnversioned"
|
2022-05-17 14:56:05 +00:00
|
|
|
isDeleteMarkerKV = "IdDeleteMarker"
|
2022-04-22 07:18:21 +00:00
|
|
|
|
2022-05-12 01:50:52 +00:00
|
|
|
settingsFileName = "bucket-settings"
|
|
|
|
notifConfFileName = "bucket-notifications"
|
2022-05-12 02:33:03 +00:00
|
|
|
corsFilename = "bucket-cors"
|
2022-05-12 01:50:52 +00:00
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
// versionTree -- ID of a tree with object versions.
|
2022-05-17 14:56:05 +00:00
|
|
|
versionTree = "version"
|
2022-05-18 07:48:30 +00:00
|
|
|
|
|
|
|
// systemTree -- ID of a tree with system objects
|
|
|
|
// i.e. bucket settings with versioning and lock configuration, cors, notifications.
|
|
|
|
systemTree = "system"
|
2022-05-17 14:56:05 +00:00
|
|
|
|
|
|
|
separator = "/"
|
2022-04-22 07:18:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewTreeClient creates instance of TreeClient using provided address and create grpc connection.
|
2022-05-18 13:40:09 +00:00
|
|
|
func NewTreeClient(addr string, key *keys.PrivateKey) (*TreeClient, error) {
|
2022-04-22 07:18:21 +00:00
|
|
|
conn, err := grpc.Dial(addr, grpc.WithTransportCredentials(insecure.NewCredentials()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("did not connect: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c := tree.NewTreeServiceClient(conn)
|
|
|
|
|
|
|
|
return &TreeClient{
|
2022-05-18 13:40:09 +00:00
|
|
|
key: key,
|
2022-04-22 07:18:21 +00:00
|
|
|
conn: conn,
|
|
|
|
service: c,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
func newTreeNode(nodeInfo *tree.GetNodeByPathResponse_Info) (*TreeNode, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
var objID oid.ID
|
2022-04-22 07:18:21 +00:00
|
|
|
meta := make(map[string]string, len(nodeInfo.GetMeta()))
|
|
|
|
|
|
|
|
for _, kv := range nodeInfo.GetMeta() {
|
2022-05-17 14:56:05 +00:00
|
|
|
if kv.GetKey() == oidKV {
|
2022-05-18 07:48:30 +00:00
|
|
|
if err := objID.DecodeString(string(kv.GetValue())); err != nil {
|
2022-05-12 01:48:17 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2022-04-22 07:18:21 +00:00
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
meta[kv.GetKey()] = string(kv.GetValue())
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
return &TreeNode{
|
|
|
|
ID: nodeInfo.GetNodeId(),
|
|
|
|
ObjID: objID,
|
|
|
|
TimeStamp: nodeInfo.Timestamp,
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 01:48:17 +00:00
|
|
|
func (n *TreeNode) Get(key string) (string, bool) {
|
|
|
|
value, ok := n.Meta[key]
|
2022-04-22 07:18:21 +00:00
|
|
|
return value, ok
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func newNodeVersion(node *tree.GetNodeByPathResponse_Info) (*layer.NodeVersion, error) {
|
|
|
|
treeNode, err := newTreeNode(node)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid tree node: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, isUnversioned := treeNode.Get(isUnversionedKV)
|
|
|
|
_, isDeleteMarker := treeNode.Get(isDeleteMarkerKV)
|
|
|
|
|
|
|
|
return &layer.NodeVersion{
|
|
|
|
BaseNodeVersion: layer.BaseNodeVersion{
|
|
|
|
ID: node.NodeId,
|
2022-05-18 07:48:30 +00:00
|
|
|
OID: treeNode.ObjID,
|
2022-05-17 14:56:05 +00:00
|
|
|
},
|
|
|
|
IsUnversioned: isUnversioned,
|
|
|
|
IsDeleteMarker: isDeleteMarker,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) GetSettingsNode(ctx context.Context, cnrID *cid.ID) (*data.BucketSettings, error) {
|
2022-04-22 07:18:21 +00:00
|
|
|
keysToReturn := []string{versioningEnabledKV, lockConfigurationKV}
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{settingsFileName}, keysToReturn)
|
2022-04-22 07:18:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("couldn't get node: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
settings := &data.BucketSettings{}
|
|
|
|
|
|
|
|
if versioningEnabledValue, ok := node.Get(versioningEnabledKV); ok {
|
|
|
|
if settings.VersioningEnabled, err = strconv.ParseBool(versioningEnabledValue); err != nil {
|
|
|
|
return nil, fmt.Errorf("settings node: invalid versioning: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if lockConfigurationValue, ok := node.Get(lockConfigurationKV); ok {
|
|
|
|
if settings.LockConfiguration, err = parseLockConfiguration(lockConfigurationValue); err != nil {
|
|
|
|
return nil, fmt.Errorf("settings node: invalid lock configuration: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return settings, nil
|
|
|
|
}
|
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) PutSettingsNode(ctx context.Context, cnrID *cid.ID, settings *data.BucketSettings) error {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{settingsFileName}, []string{})
|
2022-05-12 01:48:17 +00:00
|
|
|
isErrNotFound := errors.Is(err, layer.ErrNodeNotFound)
|
2022-04-22 07:18:21 +00:00
|
|
|
if err != nil && !isErrNotFound {
|
|
|
|
return fmt.Errorf("couldn't get node: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
meta := metaFromSettings(settings)
|
|
|
|
|
|
|
|
if isErrNotFound {
|
2022-05-18 07:48:30 +00:00
|
|
|
_, err = c.addNode(ctx, cnrID, systemTree, 0, meta)
|
2022-04-22 07:18:21 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
return c.moveNode(ctx, cnrID, systemTree, node.ID, 0, meta)
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) GetNotificationConfigurationNode(ctx context.Context, cnrID *cid.ID) (*oid.ID, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{notifConfFileName}, []string{oidKV})
|
2022-05-12 01:50:52 +00:00
|
|
|
if err != nil {
|
2022-05-17 13:52:51 +00:00
|
|
|
return nil, err
|
2022-05-12 01:50:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
return &node.ObjID, nil
|
2022-05-17 13:52:51 +00:00
|
|
|
}
|
2022-05-12 01:50:52 +00:00
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) PutNotificationConfigurationNode(ctx context.Context, cnrID *cid.ID, objID *oid.ID) (*oid.ID, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{notifConfFileName}, []string{oidKV})
|
2022-05-17 13:52:51 +00:00
|
|
|
isErrNotFound := errors.Is(err, layer.ErrNodeNotFound)
|
|
|
|
if err != nil && !isErrNotFound {
|
|
|
|
return nil, fmt.Errorf("couldn't get node: %w", err)
|
2022-05-12 01:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
meta := make(map[string]string)
|
|
|
|
meta[systemNameKV] = notifConfFileName
|
2022-05-17 14:56:05 +00:00
|
|
|
meta[oidKV] = objID.EncodeToString()
|
2022-05-12 01:50:52 +00:00
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
if isErrNotFound {
|
2022-05-18 07:48:30 +00:00
|
|
|
_, err = c.addNode(ctx, cnrID, systemTree, 0, meta)
|
2022-05-17 13:52:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2022-05-12 01:50:52 +00:00
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
return &node.ObjID, c.moveNode(ctx, cnrID, systemTree, node.ID, 0, meta)
|
2022-05-12 01:50:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) GetBucketCORS(ctx context.Context, cnrID *cid.ID) (*oid.ID, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{corsFilename}, []string{oidKV})
|
2022-05-12 02:33:03 +00:00
|
|
|
if err != nil {
|
2022-05-17 13:52:51 +00:00
|
|
|
return nil, err
|
2022-05-12 02:33:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
return &node.ObjID, nil
|
2022-05-17 13:52:51 +00:00
|
|
|
}
|
2022-05-12 02:33:03 +00:00
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) PutBucketCORS(ctx context.Context, cnrID *cid.ID, objID *oid.ID) (*oid.ID, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{corsFilename}, []string{oidKV})
|
2022-05-17 13:52:51 +00:00
|
|
|
isErrNotFound := errors.Is(err, layer.ErrNodeNotFound)
|
|
|
|
if err != nil && !isErrNotFound {
|
|
|
|
return nil, fmt.Errorf("couldn't get node: %w", err)
|
2022-05-12 02:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
meta := make(map[string]string)
|
|
|
|
meta[systemNameKV] = corsFilename
|
2022-05-17 14:56:05 +00:00
|
|
|
meta[oidKV] = objID.EncodeToString()
|
2022-05-12 02:33:03 +00:00
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
if isErrNotFound {
|
2022-05-18 07:48:30 +00:00
|
|
|
_, err = c.addNode(ctx, cnrID, systemTree, 0, meta)
|
2022-05-17 13:52:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
return &node.ObjID, c.moveNode(ctx, cnrID, systemTree, node.ID, 0, meta)
|
2022-05-12 02:33:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 13:52:51 +00:00
|
|
|
func (c *TreeClient) DeleteBucketCORS(ctx context.Context, cnrID *cid.ID) (*oid.ID, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
node, err := c.getSystemNode(ctx, cnrID, systemTree, []string{corsFilename}, []string{oidKV})
|
2022-05-17 13:52:51 +00:00
|
|
|
if err != nil && !errors.Is(err, layer.ErrNodeNotFound) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if node != nil {
|
2022-05-18 07:48:30 +00:00
|
|
|
return &node.ObjID, c.removeNode(ctx, cnrID, systemTree, node.ID)
|
2022-05-17 13:52:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
2022-05-12 02:33:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) GetVersions(ctx context.Context, cnrID *cid.ID, filepath string) ([]*layer.NodeVersion, error) {
|
|
|
|
return c.getVersions(ctx, cnrID, versionTree, filepath, false)
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) GetLatestVersion(ctx context.Context, cnrID *cid.ID, objectName string) (*layer.NodeVersion, error) {
|
|
|
|
meta := []string{oidKV, isUnversionedKV, isDeleteMarkerKV}
|
|
|
|
path := strings.Split(objectName, separator)
|
|
|
|
|
|
|
|
return c.getLatestVersion(ctx, cnrID, versionTree, fileNameKV, path, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) GetSystemVersion(ctx context.Context, cnrID *cid.ID, objectName string) (*layer.BaseNodeVersion, error) {
|
|
|
|
meta := []string{oidKV}
|
|
|
|
path := strings.Split(objectName, separator)
|
|
|
|
|
|
|
|
node, err := c.getLatestVersion(ctx, cnrID, systemTree, systemNameKV, path, meta)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &node.BaseNodeVersion, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) getLatestVersion(ctx context.Context, cnrID *cid.ID, treeID, attrPath string, path, meta []string) (*layer.NodeVersion, error) {
|
|
|
|
nodes, err := c.getNodes(ctx, cnrID, treeID, attrPath, path, meta, true)
|
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "not found") {
|
|
|
|
return nil, layer.ErrNodeNotFound
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("couldn't get nodes: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
if len(nodes) == 0 {
|
|
|
|
return nil, layer.ErrNodeNotFound
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
return newNodeVersion(nodes[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) GetUnversioned(ctx context.Context, cnrID *cid.ID, filepath string) (*layer.NodeVersion, error) {
|
|
|
|
return c.getUnversioned(ctx, cnrID, versionTree, filepath)
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) getUnversioned(ctx context.Context, cnrID *cid.ID, treeID, filepath string) (*layer.NodeVersion, error) {
|
|
|
|
nodes, err := c.getVersions(ctx, cnrID, treeID, filepath, true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(nodes) > 1 {
|
|
|
|
return nil, fmt.Errorf("found more than one unversioned node")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(nodes) != 1 {
|
2022-05-17 14:56:05 +00:00
|
|
|
return nil, layer.ErrNodeNotFound
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nodes[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) AddVersion(ctx context.Context, cnrID *cid.ID, filepath string, version *layer.NodeVersion) error {
|
2022-05-17 14:56:05 +00:00
|
|
|
return c.addVersion(ctx, cnrID, versionTree, fileNameKV, filepath, version)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) AddSystemVersion(ctx context.Context, cnrID *cid.ID, filepath string, version *layer.BaseNodeVersion) error {
|
|
|
|
newVersion := &layer.NodeVersion{
|
|
|
|
BaseNodeVersion: *version,
|
|
|
|
IsUnversioned: true,
|
|
|
|
}
|
2022-05-17 14:56:05 +00:00
|
|
|
return c.addVersion(ctx, cnrID, systemTree, systemNameKV, filepath, newVersion)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) RemoveVersion(ctx context.Context, cnrID *cid.ID, id uint64) error {
|
2022-05-18 13:40:09 +00:00
|
|
|
return c.removeNode(ctx, cnrID, versionTree, id)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) RemoveSystemVersion(ctx context.Context, cnrID *cid.ID, id uint64) error {
|
2022-05-18 13:40:09 +00:00
|
|
|
return c.removeNode(ctx, cnrID, systemTree, id)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
func (c *TreeClient) Close() error {
|
|
|
|
if c.conn != nil {
|
|
|
|
return c.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) addVersion(ctx context.Context, cnrID *cid.ID, treeID, attrPath, filepath string, version *layer.NodeVersion) error {
|
2022-05-17 14:56:05 +00:00
|
|
|
path := strings.Split(filepath, separator)
|
|
|
|
meta := map[string]string{
|
2022-05-17 14:56:05 +00:00
|
|
|
oidKV: version.OID.EncodeToString(),
|
|
|
|
attrPath: path[len(path)-1],
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-18 06:51:12 +00:00
|
|
|
if version.IsDeleteMarker {
|
|
|
|
meta[isDeleteMarkerKV] = "true"
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
if version.IsUnversioned {
|
|
|
|
meta[isUnversionedKV] = "true"
|
|
|
|
|
|
|
|
node, err := c.getUnversioned(ctx, cnrID, treeID, filepath)
|
|
|
|
if err == nil {
|
|
|
|
parentID, err := c.getParent(ctx, cnrID, treeID, node.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.moveNode(ctx, cnrID, treeID, version.ID, parentID, meta)
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
if !errors.Is(err, layer.ErrNodeNotFound) {
|
2022-05-17 14:56:05 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.addNodeByPath(ctx, cnrID, treeID, path[:len(path)-1], meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) getVersions(ctx context.Context, cnrID *cid.ID, treeID, filepath string, onlyUnversioned bool) ([]*layer.NodeVersion, error) {
|
2022-05-18 07:48:30 +00:00
|
|
|
keysToReturn := []string{oidKV, isUnversionedKV, isDeleteMarkerKV}
|
2022-05-17 14:56:05 +00:00
|
|
|
path := strings.Split(filepath, separator)
|
2022-05-17 14:56:05 +00:00
|
|
|
nodes, err := c.getNodes(ctx, cnrID, treeID, fileNameKV, path, keysToReturn, false)
|
2022-05-17 14:56:05 +00:00
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "not found") {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("couldn't get nodes: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result := make([]*layer.NodeVersion, 0, len(nodes))
|
|
|
|
for _, node := range nodes {
|
2022-05-17 14:56:05 +00:00
|
|
|
nodeVersion, err := newNodeVersion(node)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
if onlyUnversioned && !nodeVersion.IsUnversioned {
|
2022-05-17 14:56:05 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
result = append(result, nodeVersion)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) getParent(ctx context.Context, cnrID *cid.ID, treeID string, id uint64) (uint64, error) {
|
|
|
|
request := &tree.GetSubTreeRequest{
|
|
|
|
Body: &tree.GetSubTreeRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-05-17 14:56:05 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
RootId: id,
|
2022-05-18 07:48:30 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-05-17 14:56:05 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
cli, err := c.service.GetSubTree(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to get sub tree client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.Recv()
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to get sub tree: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-05-19 08:13:25 +00:00
|
|
|
for {
|
|
|
|
if _, err = cli.Recv(); err == io.EOF {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to read out sub tree stream: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
return resp.GetBody().GetParentId(), nil
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
func metaFromSettings(settings *data.BucketSettings) map[string]string {
|
|
|
|
results := make(map[string]string, 3)
|
|
|
|
|
|
|
|
results[systemNameKV] = settingsFileName
|
|
|
|
results[versioningEnabledKV] = strconv.FormatBool(settings.VersioningEnabled)
|
|
|
|
results[lockConfigurationKV] = encodeLockConfiguration(settings.LockConfiguration)
|
|
|
|
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) getSystemNode(ctx context.Context, cnrID *cid.ID, treeID string, path, meta []string) (*TreeNode, error) {
|
|
|
|
return c.getNode(ctx, cnrID, treeID, systemNameKV, path, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) getNode(ctx context.Context, cnrID *cid.ID, treeID, pathAttr string, path, meta []string) (*TreeNode, error) {
|
|
|
|
nodes, err := c.getNodes(ctx, cnrID, treeID, pathAttr, path, meta, false)
|
2022-04-22 07:18:21 +00:00
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "not found") {
|
2022-05-12 01:48:17 +00:00
|
|
|
return nil, layer.ErrNodeNotFound
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("couldn't get nodes: %w", err)
|
|
|
|
}
|
2022-05-17 14:56:05 +00:00
|
|
|
if len(nodes) == 0 {
|
2022-05-12 01:48:17 +00:00
|
|
|
return nil, layer.ErrNodeNotFound
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
2022-05-17 14:56:05 +00:00
|
|
|
if len(nodes) != 1 {
|
2022-04-22 07:18:21 +00:00
|
|
|
return nil, fmt.Errorf("found more than one node")
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
return newTreeNode(nodes[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *TreeClient) getNodes(ctx context.Context, cnrID *cid.ID, treeID, pathAttr string, path, meta []string, latestOnly bool) ([]*tree.GetNodeByPathResponse_Info, error) {
|
|
|
|
request := &tree.GetNodeByPathRequest{
|
|
|
|
Body: &tree.GetNodeByPathRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-05-17 14:56:05 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
Path: path,
|
|
|
|
Attributes: meta,
|
|
|
|
PathAttribute: pathAttr,
|
|
|
|
LatestOnly: latestOnly,
|
2022-05-18 07:48:30 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-05-17 14:56:05 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
resp, err := c.service.GetNodeByPath(ctx, request)
|
|
|
|
if err != nil {
|
2022-05-18 13:40:09 +00:00
|
|
|
return nil, fmt.Errorf("failed to get node path deb: %w", err)
|
2022-05-17 14:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return resp.GetBody().GetNodes(), nil
|
2022-04-22 07:18:21 +00:00
|
|
|
}
|
|
|
|
|
2022-05-18 07:48:30 +00:00
|
|
|
func getBearer(ctx context.Context) []byte {
|
|
|
|
if bd, ok := ctx.Value(api.BoxData).(*accessbox.Box); ok && bd != nil && bd.Gate != nil {
|
|
|
|
if bd.Gate.BearerToken != nil {
|
|
|
|
return bd.Gate.BearerToken.Marshal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
func (c *TreeClient) addNode(ctx context.Context, cnrID *cid.ID, treeID string, parent uint64, meta map[string]string) (uint64, error) {
|
|
|
|
request := &tree.AddRequest{
|
|
|
|
Body: &tree.AddRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-04-22 07:18:21 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
ParentId: parent,
|
|
|
|
Meta: metaToKV(meta),
|
2022-05-18 07:48:30 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-04-22 07:18:21 +00:00
|
|
|
},
|
|
|
|
}
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2022-04-22 07:18:21 +00:00
|
|
|
|
|
|
|
resp, err := c.service.Add(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp.GetBody().GetNodeId(), nil
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
func (c *TreeClient) addNodeByPath(ctx context.Context, cnrID *cid.ID, treeID string, path []string, meta map[string]string) error {
|
|
|
|
request := &tree.AddByPathRequest{
|
|
|
|
Body: &tree.AddByPathRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-05-17 14:56:05 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
Path: path,
|
|
|
|
Meta: metaToKV(meta),
|
|
|
|
PathAttribute: fileNameKV,
|
2022-05-18 07:48:30 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-05-17 14:56:05 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-17 14:56:05 +00:00
|
|
|
_, err := c.service.AddByPath(ctx, request)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
func (c *TreeClient) moveNode(ctx context.Context, cnrID *cid.ID, treeID string, nodeID, parentID uint64, meta map[string]string) error {
|
|
|
|
request := &tree.MoveRequest{
|
|
|
|
Body: &tree.MoveRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-04-22 07:18:21 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
NodeId: nodeID,
|
|
|
|
ParentId: parentID,
|
|
|
|
Meta: metaToKV(meta),
|
2022-05-18 13:40:09 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-04-22 07:18:21 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
_, err := c.service.Move(ctx, request)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-12 01:50:52 +00:00
|
|
|
func (c *TreeClient) removeNode(ctx context.Context, cnrID *cid.ID, treeID string, nodeID uint64) error {
|
2022-05-18 13:40:09 +00:00
|
|
|
request := &tree.RemoveRequest{
|
2022-05-12 01:50:52 +00:00
|
|
|
Body: &tree.RemoveRequest_Body{
|
2022-05-18 13:40:09 +00:00
|
|
|
ContainerId: cnrID[:],
|
2022-05-12 01:50:52 +00:00
|
|
|
TreeId: treeID,
|
|
|
|
NodeId: nodeID,
|
2022-05-18 07:48:30 +00:00
|
|
|
BearerToken: getBearer(ctx),
|
2022-05-12 01:50:52 +00:00
|
|
|
},
|
|
|
|
}
|
2022-05-18 13:40:09 +00:00
|
|
|
if err := c.signRequest(request.Body, func(key, sign []byte) {
|
|
|
|
request.Signature = &tree.Signature{
|
|
|
|
Key: key,
|
|
|
|
Sign: sign,
|
|
|
|
}
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := c.service.Remove(ctx, request)
|
2022-05-12 01:50:52 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:18:21 +00:00
|
|
|
func metaToKV(meta map[string]string) []*tree.KeyValue {
|
|
|
|
result := make([]*tree.KeyValue, 0, len(meta))
|
|
|
|
|
|
|
|
for key, value := range meta {
|
|
|
|
result = append(result, &tree.KeyValue{Key: key, Value: []byte(value)})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseLockConfiguration(value string) (*data.ObjectLockConfiguration, error) {
|
|
|
|
result := &data.ObjectLockConfiguration{}
|
|
|
|
if len(value) == 0 {
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
lockValues := strings.Split(value, ",")
|
|
|
|
result.ObjectLockEnabled = lockValues[0]
|
|
|
|
|
|
|
|
if len(lockValues) == 1 {
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(lockValues) != 4 {
|
|
|
|
return nil, fmt.Errorf("invalid lock configuration: %s", value)
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
var days, years int64
|
|
|
|
|
|
|
|
if len(lockValues[1]) > 0 {
|
|
|
|
if days, err = strconv.ParseInt(lockValues[1], 10, 64); err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid lock configuration: %s", value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(lockValues[3]) > 0 {
|
|
|
|
if years, err = strconv.ParseInt(lockValues[3], 10, 64); err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid lock configuration: %s", value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result.Rule = &data.ObjectLockRule{
|
|
|
|
DefaultRetention: &data.DefaultRetention{
|
|
|
|
Days: days,
|
|
|
|
Mode: lockValues[2],
|
|
|
|
Years: years,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func encodeLockConfiguration(conf *data.ObjectLockConfiguration) string {
|
|
|
|
if conf == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if conf.Rule == nil || conf.Rule.DefaultRetention == nil {
|
|
|
|
return conf.ObjectLockEnabled
|
|
|
|
}
|
|
|
|
|
|
|
|
defaults := conf.Rule.DefaultRetention
|
|
|
|
return fmt.Sprintf("%s,%d,%s,%d", conf.ObjectLockEnabled, defaults.Days, defaults.Mode, defaults.Years)
|
|
|
|
}
|