forked from TrueCloudLab/frostfs-node
8bba490c30
There is a need to support NeoFS-binary sessions along with JSON ones in NeoFS CLI. Provide generic `common.ReadBinaryOrJSON` functions which tries to decode NeoFS-binary structure and falls back to JSON format. Use this function in all places with token reading. Signed-off-by: Leonard Lyubich <ctulhurider@gmail.com>
96 lines
2.7 KiB
Go
96 lines
2.7 KiB
Go
package container
|
|
|
|
import (
|
|
"strings"
|
|
|
|
v2object "github.com/nspcc-dev/neofs-api-go/v2/object"
|
|
internalclient "github.com/nspcc-dev/neofs-node/cmd/neofs-cli/internal/client"
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-cli/internal/common"
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-cli/internal/commonflags"
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-cli/internal/key"
|
|
objectCli "github.com/nspcc-dev/neofs-node/cmd/neofs-cli/modules/object"
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// flags of list-object command.
|
|
const (
|
|
flagListObjectPrintAttr = "with-attr"
|
|
)
|
|
|
|
// flag vars of list-objects command.
|
|
var (
|
|
flagVarListObjectsPrintAttr bool
|
|
)
|
|
|
|
var listContainerObjectsCmd = &cobra.Command{
|
|
Use: "list-objects",
|
|
Short: "List existing objects in container",
|
|
Long: `List existing objects in container`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
id := parseContainerID(cmd)
|
|
|
|
filters := new(object.SearchFilters)
|
|
filters.AddRootFilter() // search only user created objects
|
|
|
|
cli := internalclient.GetSDKClientByFlag(cmd, key.GetOrGenerate(cmd), commonflags.RPC)
|
|
|
|
var prmSearch internalclient.SearchObjectsPrm
|
|
var prmHead internalclient.HeadObjectPrm
|
|
|
|
prmSearch.SetClient(cli)
|
|
|
|
if flagVarListObjectsPrintAttr {
|
|
prmHead.SetClient(cli)
|
|
objectCli.Prepare(cmd, &prmSearch, &prmHead)
|
|
} else {
|
|
objectCli.Prepare(cmd, &prmSearch)
|
|
}
|
|
|
|
prmSearch.SetContainerID(id)
|
|
prmSearch.SetFilters(*filters)
|
|
|
|
res, err := internalclient.SearchObjects(prmSearch)
|
|
common.ExitOnErr(cmd, "rpc error: %w", err)
|
|
|
|
objectIDs := res.IDList()
|
|
|
|
for i := range objectIDs {
|
|
cmd.Println(objectIDs[i].String())
|
|
|
|
if flagVarListObjectsPrintAttr {
|
|
var addr oid.Address
|
|
addr.SetContainer(id)
|
|
addr.SetObject(objectIDs[i])
|
|
prmHead.SetAddress(addr)
|
|
|
|
resHead, err := internalclient.HeadObject(prmHead)
|
|
if err == nil {
|
|
attrs := resHead.Header().Attributes()
|
|
for i := range attrs {
|
|
attrKey := attrs[i].Key()
|
|
if !strings.HasPrefix(attrKey, v2object.SysAttributePrefix) {
|
|
// FIXME(@cthulhu-rider): neofs-sdk-go#226 use dedicated method to skip system attributes
|
|
cmd.Printf(" %s: %s\n", attrKey, attrs[i].Value())
|
|
}
|
|
}
|
|
} else {
|
|
cmd.Printf(" failed to read attributes: %v\n", err)
|
|
}
|
|
}
|
|
}
|
|
},
|
|
}
|
|
|
|
func initContainerListObjectsCmd() {
|
|
commonflags.Init(listContainerObjectsCmd)
|
|
objectCli.InitBearer(listContainerObjectsCmd)
|
|
|
|
flags := listContainerObjectsCmd.Flags()
|
|
|
|
flags.StringVar(&containerID, cidFlag, "", cidFlagUsage)
|
|
flags.BoolVar(&flagVarListObjectsPrintAttr, flagListObjectPrintAttr, false,
|
|
"Request and print user attributes of each object",
|
|
)
|
|
}
|