mirror of
https://github.com/minio/mc.git
synced 2025-11-10 13:42:32 +03:00
151 lines
4.3 KiB
Go
151 lines
4.3 KiB
Go
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
//
|
|
// This file is part of MinIO Object Storage stack
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/minio/cli"
|
|
json "github.com/minio/colorjson"
|
|
"github.com/minio/mc/pkg/probe"
|
|
"github.com/minio/pkg/console"
|
|
)
|
|
|
|
var adminConfigEnvFlags = []cli.Flag{
|
|
cli.BoolFlag{
|
|
Name: "env",
|
|
Usage: "list all the env only help",
|
|
},
|
|
}
|
|
|
|
var adminConfigResetCmd = cli.Command{
|
|
Name: "reset",
|
|
Usage: "interactively reset a config key parameters",
|
|
Before: setGlobalsFromContext,
|
|
Action: mainAdminConfigReset,
|
|
OnUsageError: onUsageError,
|
|
Flags: append(adminConfigEnvFlags, globalFlags...),
|
|
CustomHelpTemplate: `NAME:
|
|
{{.HelpName}} - {{.Usage}}
|
|
|
|
USAGE:
|
|
{{.HelpName}} TARGET [CONFIG-KEY...]
|
|
|
|
FLAGS:
|
|
{{range .VisibleFlags}}{{.}}
|
|
{{end}}
|
|
EXAMPLES:
|
|
1. Reset MQTT notifcation target 'name1' settings to default values.
|
|
{{.Prompt}} {{.HelpName}} myminio/ notify_mqtt:name1
|
|
2. Reset compression's 'extensions' setting to default value.
|
|
{{.Prompt}} {{.HelpName}} myminio/ compression extensions
|
|
3. Reset site name and site region to default values.
|
|
{{.Prompt}} {{.HelpName}} myminio/ site name region
|
|
`,
|
|
}
|
|
|
|
// configResetMessage container to hold locks information.
|
|
type configResetMessage struct {
|
|
Status string `json:"status"`
|
|
targetAlias string
|
|
restart bool
|
|
}
|
|
|
|
// String colorized service status message.
|
|
func (u configResetMessage) String() (msg string) {
|
|
msg += console.Colorize("ResetConfigSuccess",
|
|
"Key is successfully reset.\n")
|
|
suggestion := fmt.Sprintf("mc admin service restart %s", u.targetAlias)
|
|
if u.restart {
|
|
msg += console.Colorize("ResetConfigSuccess",
|
|
fmt.Sprintf("Please restart your server with `%s`.\n", suggestion))
|
|
}
|
|
return
|
|
}
|
|
|
|
// JSON jsonified service status message.
|
|
func (u configResetMessage) JSON() string {
|
|
u.Status = "success"
|
|
statusJSONBytes, e := json.MarshalIndent(u, "", " ")
|
|
fatalIf(probe.NewError(e), "Unable to marshal into JSON.")
|
|
|
|
return string(statusJSONBytes)
|
|
}
|
|
|
|
// checkAdminConfigResetSyntax - validate all the passed arguments
|
|
func checkAdminConfigResetSyntax(ctx *cli.Context) {
|
|
if !ctx.Args().Present() {
|
|
showCommandHelpAndExit(ctx, 1) // last argument is exit code
|
|
}
|
|
}
|
|
|
|
// main config set function
|
|
func mainAdminConfigReset(ctx *cli.Context) error {
|
|
// Check command arguments
|
|
checkAdminConfigResetSyntax(ctx)
|
|
|
|
// Reset color preference of command outputs
|
|
console.SetColor("ResetConfigSuccess", color.New(color.FgGreen, color.Bold))
|
|
console.SetColor("ResetConfigFailure", color.New(color.FgRed, color.Bold))
|
|
|
|
// Get the alias parameter from cli
|
|
args := ctx.Args()
|
|
aliasedURL := args.Get(0)
|
|
|
|
// Create a new MinIO Admin Client
|
|
client, err := newAdminClient(aliasedURL)
|
|
fatalIf(err, "Unable to initialize admin connection.")
|
|
|
|
if len(ctx.Args()) == 1 {
|
|
// Call get config API
|
|
hr, e := client.HelpConfigKV(globalContext, "", "", ctx.IsSet("env"))
|
|
fatalIf(probe.NewError(e), "Unable to get help for the sub-system")
|
|
|
|
// Print
|
|
printMsg(configHelpMessage{
|
|
Value: hr,
|
|
envOnly: ctx.IsSet("env"),
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
input := strings.Join(args.Tail(), " ")
|
|
// Check if user has attempted to set values
|
|
for _, k := range args.Tail() {
|
|
if strings.Contains(k, "=") {
|
|
e := fmt.Errorf("new settings may not be provided for sub-system keys")
|
|
fatalIf(probe.NewError(e), "Unable to reset '%s' on the server", args.Tail()[0])
|
|
}
|
|
}
|
|
|
|
// Call reset config API
|
|
restart, e := client.DelConfigKV(globalContext, input)
|
|
fatalIf(probe.NewError(e), "Unable to reset '%s' on the server", input)
|
|
|
|
// Print set config result
|
|
printMsg(configResetMessage{
|
|
targetAlias: aliasedURL,
|
|
restart: restart,
|
|
})
|
|
|
|
return nil
|
|
}
|