Files
mostlymatter/server/cmd/mmctl/commands/license.go
Agniva De Sarker efaa6264cc MM-53032: Fix module path after repo rename (#23689)
It was a good decision in hindsight to keep the public module as 0.x
because this would have been a breaking change again.

https://mattermost.atlassian.net/browse/MM-53032
```release-note
Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8.

For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public
```
2023-06-11 10:54:35 +05:30

97 строки
2.3 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package commands
import (
"context"
"errors"
"io/ioutil"
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/client"
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/printer"
"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: withClient(uploadLicenseCmdF),
}
var UploadLicenseStringCmd = &cobra.Command{
Use: "upload-string [license]",
Short: "Upload a license from a string.",
Long: "Upload a license from a string. Replaces current license.",
Example: " license upload-string \"mylicensestring\"",
RunE: withClient(uploadLicenseStringCmdF),
}
var RemoveLicenseCmd = &cobra.Command{
Use: "remove",
Short: "Remove the current license.",
Long: "Remove the current license and leave mattermost in Team Edition.",
Example: " license remove",
RunE: withClient(removeLicenseCmdF),
}
func init() {
LicenseCmd.AddCommand(UploadLicenseCmd)
LicenseCmd.AddCommand(RemoveLicenseCmd)
LicenseCmd.AddCommand(UploadLicenseStringCmd)
RootCmd.AddCommand(LicenseCmd)
}
func uploadLicenseStringCmdF(c client.Client, cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return errors.New("enter one license file to upload")
}
licenseBytes := []byte(args[0])
if _, err := c.UploadLicenseFile(context.TODO(), licenseBytes); err != nil {
return err
}
printer.Print("Uploaded license file")
return nil
}
func uploadLicenseCmdF(c client.Client, cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return errors.New("enter one license file to upload")
}
fileBytes, err := ioutil.ReadFile(args[0])
if err != nil {
return err
}
if _, err := c.UploadLicenseFile(context.TODO(), fileBytes); err != nil {
return err
}
printer.Print("Uploaded license file")
return nil
}
func removeLicenseCmdF(c client.Client, cmd *cobra.Command, args []string) error {
if _, err := c.RemoveLicenseFile(context.TODO()); err != nil {
return err
}
printer.Print("Removed license")
return nil
}