Skip to content

Commit

Permalink
Add CLI tool for validating the config.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
simon0191 committed Apr 9, 2017
1 parent 060b9f9 commit 2a470f8
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
66 changes: 66 additions & 0 deletions cmd/platform/config.go
@@ -0,0 +1,66 @@
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package main

import (
"encoding/json"
"errors"
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
"github.com/spf13/cobra"
"os"
)

var configCmd = &cobra.Command{
Use: "config",
Short: "Configuration",
}

var validateConfigCmd = &cobra.Command{
Use: "validate",
Short: "Validate config file",
Run: configValidateCmdF,
}

func init() {
configCmd.AddCommand(
validateConfigCmd,
)
}

func configValidateCmdF(cmd *cobra.Command, args []string) {
utils.TranslationsPreInit()
filePath, err := cmd.Flags().GetString("config")
if err != nil {
CommandPrintErrorln(err)
return
}

filePath = utils.FindConfigFile(filePath)

file, err := os.Open(filePath)
if err != nil {
CommandPrintErrorln(err)
return
}

decoder := json.NewDecoder(file)
config := model.Config{}
err = decoder.Decode(&config)
if err != nil {
CommandPrintErrorln(err)
return
}

if _, err := file.Stat(); err != nil {
CommandPrintErrorln(err)
return
}

if err := config.IsValid(); err != nil {
CommandPrintErrorln(errors.New(utils.T(err.Id)))
return
}

CommandPrettyPrintln("The document is valid")
}
2 changes: 1 addition & 1 deletion cmd/platform/mattermost.go
Expand Up @@ -33,7 +33,7 @@ func main() {

resetCmd.Flags().Bool("confirm", false, "Confirm you really want to delete everything and a DB backup has been performed.")

rootCmd.AddCommand(serverCmd, versionCmd, userCmd, teamCmd, licenseCmd, importCmd, resetCmd, channelCmd, rolesCmd, testCmd, ldapCmd)
rootCmd.AddCommand(serverCmd, versionCmd, userCmd, teamCmd, licenseCmd, importCmd, resetCmd, channelCmd, rolesCmd, testCmd, ldapCmd, configCmd)

if err := rootCmd.Execute(); err != nil {
os.Exit(1)
Expand Down

0 comments on commit 2a470f8

Please sign in to comment.