forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
55 lines
1.6 KiB
Go
55 lines
1.6 KiB
Go
package util
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
|
commonCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var convertEACLCmd = &cobra.Command{
|
|
Use: "eacl",
|
|
Short: "Convert representation of extended ACL table",
|
|
Run: convertEACLTable,
|
|
}
|
|
|
|
func initConvertEACLCmd() {
|
|
flags := convertEACLCmd.Flags()
|
|
|
|
flags.String("from", "", "File with JSON or binary encoded extended ACL table")
|
|
_ = convertEACLCmd.MarkFlagFilename("from")
|
|
_ = convertEACLCmd.MarkFlagRequired("from")
|
|
|
|
flags.String("to", "", "File to dump extended ACL table (default: binary encoded)")
|
|
flags.Bool(commonflags.JSON, false, "Dump extended ACL table in JSON encoding")
|
|
}
|
|
|
|
func convertEACLTable(cmd *cobra.Command, _ []string) {
|
|
pathFrom := cmd.Flag("from").Value.String()
|
|
to := cmd.Flag("to").Value.String()
|
|
jsonFlag, _ := cmd.Flags().GetBool(commonflags.JSON)
|
|
|
|
table := common.ReadEACL(cmd, pathFrom)
|
|
|
|
var data []byte
|
|
var err error
|
|
if jsonFlag || len(to) == 0 {
|
|
data, err = table.MarshalJSON()
|
|
commonCmd.ExitOnErr(cmd, "can't JSON encode extended ACL table: %w", err)
|
|
} else {
|
|
data, err = table.Marshal()
|
|
commonCmd.ExitOnErr(cmd, "can't binary encode extended ACL table: %w", err)
|
|
}
|
|
|
|
if len(to) == 0 {
|
|
common.PrettyPrintJSON(cmd, table, "eACL")
|
|
return
|
|
}
|
|
|
|
err = os.WriteFile(to, data, 0644)
|
|
commonCmd.ExitOnErr(cmd, "can't write exteded ACL table to file: %w", err)
|
|
|
|
cmd.Printf("extended ACL table was successfully dumped to %s\n", to)
|
|
}
|