mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"io/ioutil"
|
|
|
|
"github.com/mattermost/platform/app"
|
|
"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)
|
|
}
|
|
|
|
func uploadLicenseCmdF(cmd *cobra.Command, args []string) error {
|
|
initDBCommandContextCobra(cmd)
|
|
|
|
if len(args) != 1 {
|
|
return errors.New("Enter one license file to upload")
|
|
}
|
|
|
|
var fileBytes []byte
|
|
var err error
|
|
if fileBytes, err = ioutil.ReadFile(args[0]); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := app.SaveLicense(fileBytes); err != nil {
|
|
return err
|
|
}
|
|
|
|
CommandPrettyPrintln("Uploaded license file")
|
|
|
|
return nil
|
|
}
|