feat: config/users import/export (#613)

Supports json and yaml.
This commit is contained in:
Henrique Dias
2019-01-08 08:57:24 +00:00
committed by GitHub
parent 46b221533a
commit 73b8d2ee7e
9 changed files with 279 additions and 7 deletions

30
cmd/config_export.go Normal file
View File

@@ -0,0 +1,30 @@
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
configCmd.AddCommand(configExportCmd)
}
var configExportCmd = &cobra.Command{
Use: "export <filename>",
Short: "Export the configuration to a file.",
Args: jsonYamlArg,
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
settings, err := d.store.Settings.Get()
checkErr(err)
auther, err := d.store.Auth.Get(settings.AuthMethod)
checkErr(err)
data := &settingsFile{
Settings: settings,
Auther: auther,
}
err = marshal(args[0], data)
checkErr(err)
}, pythonConfig{}),
}