From 11cbb597471127c1b29e78e6cad0a1a4d93ea24c Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 17 May 2018 12:40:40 -0700 Subject: Renaming platform binary to mattermost. (#8801) --- cmd/mattermost/commands/license.go | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 cmd/mattermost/commands/license.go (limited to 'cmd/mattermost/commands/license.go') diff --git a/cmd/mattermost/commands/license.go b/cmd/mattermost/commands/license.go new file mode 100644 index 000000000..1e08814d3 --- /dev/null +++ b/cmd/mattermost/commands/license.go @@ -0,0 +1,54 @@ +// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package commands + +import ( + "errors" + "io/ioutil" + + "github.com/spf13/cobra" +) + +var LicenseCmd = &cobra.Command{ + Use: "license", + Short: "Licensing commands", +} + +var UploadLicenseCmd = &cobra.Command{ + Use: "upload [license]", + Short: "Upload a license.", + Long: "Upload a license. Replaces current license.", + Example: " license upload /path/to/license/mylicensefile.mattermost-license", + RunE: uploadLicenseCmdF, +} + +func init() { + LicenseCmd.AddCommand(UploadLicenseCmd) + RootCmd.AddCommand(LicenseCmd) +} + +func uploadLicenseCmdF(command *cobra.Command, args []string) error { + a, err := InitDBCommandContextCobra(command) + if err != nil { + return err + } + defer a.Shutdown() + + if len(args) != 1 { + return errors.New("Enter one license file to upload") + } + + var fileBytes []byte + if fileBytes, err = ioutil.ReadFile(args[0]); err != nil { + return err + } + + if _, err := a.SaveLicense(fileBytes); err != nil { + return err + } + + CommandPrettyPrintln("Uploaded license file") + + return nil +} -- cgit v1.2.3-1-g7c22