From b2dd00dd5b83fc7e8b311a55f5a2536e4f3d45a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Wed, 7 Mar 2018 20:04:18 +0000 Subject: Adding enterprise commands support (#8327) --- cmd/commands/config.go | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 cmd/commands/config.go (limited to 'cmd/commands/config.go') diff --git a/cmd/commands/config.go b/cmd/commands/config.go new file mode 100644 index 000000000..ef3b0f75e --- /dev/null +++ b/cmd/commands/config.go @@ -0,0 +1,68 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package commands + +import ( + "encoding/json" + "errors" + "os" + + "github.com/mattermost/mattermost-server/cmd" + "github.com/mattermost/mattermost-server/model" + "github.com/mattermost/mattermost-server/utils" + "github.com/spf13/cobra" +) + +var ConfigCmd = &cobra.Command{ + Use: "config", + Short: "Configuration", +} + +var ValidateConfigCmd = &cobra.Command{ + Use: "validate", + Short: "Validate config file", + Long: "If the config file is valid, this command will output a success message and have a zero exit code. If it is invalid, this command will output an error and have a non-zero exit code.", + RunE: configValidateCmdF, +} + +func init() { + ConfigCmd.AddCommand( + ValidateConfigCmd, + ) + cmd.RootCmd.AddCommand(ConfigCmd) +} + +func configValidateCmdF(command *cobra.Command, args []string) error { + utils.TranslationsPreInit() + model.AppErrorInit(utils.T) + filePath, err := command.Flags().GetString("config") + if err != nil { + return err + } + + filePath = utils.FindConfigFile(filePath) + + file, err := os.Open(filePath) + if err != nil { + return err + } + + decoder := json.NewDecoder(file) + config := model.Config{} + err = decoder.Decode(&config) + if err != nil { + return err + } + + if _, err := file.Stat(); err != nil { + return err + } + + if err := config.IsValid(); err != nil { + return errors.New(utils.T(err.Id)) + } + + cmd.CommandPrettyPrintln("The document is valid") + return nil +} -- cgit v1.2.3-1-g7c22