Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
package extended
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/util"
|
|
commonCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/eacl"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var printEACLCmd = &cobra.Command{
|
|
Use: "print",
|
|
Short: "Pretty print extended ACL from the file(in text or json format) or for given container.",
|
|
Run: printEACL,
|
|
}
|
|
|
|
func init() {
|
|
flags := printEACLCmd.Flags()
|
|
flags.StringP("file", "f", "",
|
|
"Read list of extended ACL table records from text or json file")
|
|
_ = printEACLCmd.MarkFlagRequired("file")
|
|
}
|
|
|
|
func printEACL(cmd *cobra.Command, _ []string) {
|
|
file, _ := cmd.Flags().GetString("file")
|
|
eaclTable := new(eacl.Table)
|
|
data, err := os.ReadFile(file)
|
|
commonCmd.ExitOnErr(cmd, "can't read file with EACL: %w", err)
|
|
if strings.HasSuffix(file, ".json") {
|
|
commonCmd.ExitOnErr(cmd, "unable to parse json: %w", eaclTable.UnmarshalJSON(data))
|
|
} else {
|
|
rules := strings.Split(strings.TrimSpace(string(data)), "\n")
|
|
commonCmd.ExitOnErr(cmd, "can't parse file with EACL: %w", util.ParseEACLRules(eaclTable, rules))
|
|
}
|
|
util.PrettyPrintTableEACL(cmd, eaclTable)
|
|
}
|