68 lines
2.4 KiB
Go
68 lines
2.4 KiB
Go
package container
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/commonflags"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const (
|
|
containerDumpFlag = "dump"
|
|
containerContractFlag = "container-contract"
|
|
containerIDsFlag = "cid"
|
|
)
|
|
|
|
var (
|
|
DumpCmd = &cobra.Command{
|
|
Use: "dump-containers",
|
|
Short: "Dump FrostFS containers to file",
|
|
PreRun: func(cmd *cobra.Command, _ []string) {
|
|
_ = viper.BindPFlag(commonflags.EndpointFlag, cmd.Flags().Lookup(commonflags.EndpointFlag))
|
|
},
|
|
RunE: dumpContainers,
|
|
}
|
|
|
|
RestoreCmd = &cobra.Command{
|
|
Use: "restore-containers",
|
|
Short: "Restore FrostFS containers from file",
|
|
PreRun: func(cmd *cobra.Command, _ []string) {
|
|
_ = viper.BindPFlag(commonflags.AlphabetWalletsFlag, cmd.Flags().Lookup(commonflags.AlphabetWalletsFlag))
|
|
_ = viper.BindPFlag(commonflags.EndpointFlag, cmd.Flags().Lookup(commonflags.EndpointFlag))
|
|
},
|
|
RunE: restoreContainers,
|
|
}
|
|
|
|
ListCmd = &cobra.Command{
|
|
Use: "list-containers",
|
|
Short: "List FrostFS containers",
|
|
PreRun: func(cmd *cobra.Command, _ []string) {
|
|
_ = viper.BindPFlag(commonflags.EndpointFlag, cmd.Flags().Lookup(commonflags.EndpointFlag))
|
|
},
|
|
RunE: listContainers,
|
|
}
|
|
)
|
|
|
|
func initListContainersCmd() {
|
|
ListCmd.Flags().StringP(commonflags.EndpointFlag, commonflags.EndpointFlagShort, "", commonflags.EndpointFlagDesc)
|
|
ListCmd.Flags().String(containerContractFlag, "", "Container contract hash (for networks without NNS)")
|
|
}
|
|
|
|
func initRestoreContainersCmd() {
|
|
RestoreCmd.Flags().String(commonflags.AlphabetWalletsFlag, "", commonflags.AlphabetWalletsFlagDesc)
|
|
RestoreCmd.Flags().StringP(commonflags.EndpointFlag, commonflags.EndpointFlagShort, "", commonflags.EndpointFlagDesc)
|
|
RestoreCmd.Flags().String(containerDumpFlag, "", "File to restore containers from")
|
|
RestoreCmd.Flags().StringSlice(containerIDsFlag, nil, "Containers to restore")
|
|
}
|
|
|
|
func initDumpContainersCmd() {
|
|
DumpCmd.Flags().StringP(commonflags.EndpointFlag, commonflags.EndpointFlagShort, "", commonflags.EndpointFlagDesc)
|
|
DumpCmd.Flags().String(containerDumpFlag, "", "File where to save dumped containers")
|
|
DumpCmd.Flags().String(containerContractFlag, "", "Container contract hash (for networks without NNS)")
|
|
DumpCmd.Flags().StringSlice(containerIDsFlag, nil, "Containers to dump")
|
|
}
|
|
|
|
func init() {
|
|
initDumpContainersCmd()
|
|
initRestoreContainersCmd()
|
|
initListContainersCmd()
|
|
}
|