Airat Arifullin
84ea075587
Some checks failed
DCO action / DCO (pull_request) Successful in 1m53s
Vulncheck / Vulncheck (pull_request) Successful in 2m35s
Tests and linters / Staticcheck (pull_request) Successful in 3m33s
Build / Build Components (1.20) (pull_request) Successful in 3m38s
Build / Build Components (1.21) (pull_request) Successful in 3m32s
Tests and linters / Tests with -race (pull_request) Failing after 4m7s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m13s
Tests and linters / Tests (1.21) (pull_request) Successful in 5m29s
Tests and linters / Lint (pull_request) Successful in 20m17s
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
68 lines
2 KiB
Go
68 lines
2 KiB
Go
package container
|
|
|
|
import (
|
|
"os"
|
|
|
|
internalclient "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/client"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/key"
|
|
commonCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var getExtendedACLCmd = &cobra.Command{
|
|
Use: "get-eacl",
|
|
Short: "Get extended ACL table of container",
|
|
Long: `Get extended ACL table of container`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
id := parseContainerID(cmd)
|
|
pk := key.GetOrGenerate(cmd)
|
|
cli := internalclient.GetSDKClientByFlag(cmd, pk, commonflags.RPC)
|
|
|
|
eaclPrm := internalclient.EACLPrm{
|
|
Client: cli,
|
|
ClientParams: client.PrmContainerEACL{
|
|
ContainerID: &id,
|
|
},
|
|
}
|
|
|
|
res, err := internalclient.EACL(cmd.Context(), eaclPrm)
|
|
commonCmd.ExitOnErr(cmd, "rpc error: %w", err)
|
|
|
|
eaclTable := res.EACL()
|
|
|
|
if containerPathTo == "" {
|
|
cmd.Println("eACL: ")
|
|
common.PrettyPrintJSON(cmd, &eaclTable, "eACL")
|
|
|
|
return
|
|
}
|
|
|
|
var data []byte
|
|
|
|
if containerJSON {
|
|
data, err = eaclTable.MarshalJSON()
|
|
commonCmd.ExitOnErr(cmd, "can't encode to JSON: %w", err)
|
|
} else {
|
|
data, err = eaclTable.Marshal()
|
|
commonCmd.ExitOnErr(cmd, "can't encode to binary: %w", err)
|
|
}
|
|
|
|
cmd.Println("dumping data to file:", containerPathTo)
|
|
|
|
err = os.WriteFile(containerPathTo, data, 0644)
|
|
commonCmd.ExitOnErr(cmd, "could not write eACL to file: %w", err)
|
|
},
|
|
}
|
|
|
|
func initContainerGetEACLCmd() {
|
|
commonflags.Init(getExtendedACLCmd)
|
|
|
|
flags := getExtendedACLCmd.Flags()
|
|
|
|
flags.StringVar(&containerID, commonflags.CIDFlag, "", commonflags.CIDFlagUsage)
|
|
flags.StringVar(&containerPathTo, "to", "", "Path to dump encoded container (default: binary encoded)")
|
|
flags.BoolVar(&containerJSON, commonflags.JSON, false, "Encode EACL table in json format")
|
|
}
|