2022-11-11 07:32:17 +00:00
|
|
|
package basic
|
|
|
|
|
|
|
|
import (
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/util"
|
2023-01-16 09:20:16 +00:00
|
|
|
commonCmd "github.com/TrueCloudLab/frostfs-node/cmd/internal/common"
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/container/acl"
|
2022-11-11 07:32:17 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var printACLCmd = &cobra.Command{
|
|
|
|
Use: "print",
|
|
|
|
Short: "Pretty print basic ACL from the HEX representation",
|
2022-12-23 17:35:35 +00:00
|
|
|
Example: `frostfs-cli acl basic print 0x1C8C8CCC`,
|
2022-11-11 07:32:17 +00:00
|
|
|
Long: `Pretty print basic ACL from the HEX representation.
|
|
|
|
Few roles have exclusive default access to set of operation, even if particular bit deny it.
|
|
|
|
Container have access to the operations of the data replication mechanism:
|
|
|
|
Get, Head, Put, Search, Hash.
|
|
|
|
InnerRing members are allowed to data audit ops only:
|
|
|
|
Get, Head, Hash, Search.`,
|
|
|
|
Run: printACL,
|
|
|
|
Args: cobra.ExactArgs(1),
|
|
|
|
}
|
|
|
|
|
|
|
|
func printACL(cmd *cobra.Command, args []string) {
|
|
|
|
var bacl acl.Basic
|
2023-01-16 09:20:16 +00:00
|
|
|
commonCmd.ExitOnErr(cmd, "unable to parse basic acl: %w", bacl.DecodeString(args[0]))
|
2022-11-11 07:32:17 +00:00
|
|
|
util.PrettyPrintTableBACL(cmd, &bacl)
|
|
|
|
}
|