summaryrefslogtreecommitdiffstats
path: root/cmd/mattermost/commands/permissions.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mattermost/commands/permissions.go')
-rw-r--r--cmd/mattermost/commands/permissions.go130
1 files changed, 130 insertions, 0 deletions
diff --git a/cmd/mattermost/commands/permissions.go b/cmd/mattermost/commands/permissions.go
new file mode 100644
index 000000000..e1bb34963
--- /dev/null
+++ b/cmd/mattermost/commands/permissions.go
@@ -0,0 +1,130 @@
+// Copyright (c) 2018-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package commands
+
+import (
+ "errors"
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+
+ "github.com/mattermost/mattermost-server/utils"
+)
+
+var PermissionsCmd = &cobra.Command{
+ Use: "permissions",
+ Short: "Management of the Permissions system",
+}
+
+var ResetPermissionsCmd = &cobra.Command{
+ Use: "reset",
+ Short: "Reset the permissions system to its default state",
+ Long: "Reset the permissions system to its default state",
+ Example: " permissions reset",
+ RunE: resetPermissionsCmdF,
+}
+
+var ExportPermissionsCmd = &cobra.Command{
+ Use: "export",
+ Short: "Export permissions data",
+ Long: "Export Roles and Schemes to JSONL for use by Mattermost permissions import.",
+ Example: " permissions export > export.jsonl",
+ RunE: exportPermissionsCmdF,
+ PreRun: func(cmd *cobra.Command, args []string) {
+ os.Setenv("MM_LOGSETTINGS_CONSOLELEVEL", "error")
+ },
+}
+
+var ImportPermissionsCmd = &cobra.Command{
+ Use: "import [file]",
+ Short: "Import permissions data",
+ Long: "Import Roles and Schemes JSONL data as created by the Mattermost permissions export.",
+ Example: " permissions import export.jsonl",
+ RunE: importPermissionsCmdF,
+}
+
+func init() {
+ ResetPermissionsCmd.Flags().Bool("confirm", false, "Confirm you really want to reset the permissions system and a database backup has been performed.")
+
+ PermissionsCmd.AddCommand(
+ ResetPermissionsCmd,
+ ExportPermissionsCmd,
+ ImportPermissionsCmd,
+ )
+ RootCmd.AddCommand(PermissionsCmd)
+}
+
+func resetPermissionsCmdF(command *cobra.Command, args []string) error {
+ a, err := InitDBCommandContextCobra(command)
+ if err != nil {
+ return err
+ }
+
+ confirmFlag, _ := command.Flags().GetBool("confirm")
+ if !confirmFlag {
+ var confirm string
+ CommandPrettyPrintln("Have you performed a database backup? (YES/NO): ")
+ fmt.Scanln(&confirm)
+
+ if confirm != "YES" {
+ return errors.New("ABORTED: You did not answer YES exactly, in all capitals.")
+ }
+ CommandPrettyPrintln("Are you sure you want to reset the permissions system? All data related to the permissions system will be permanently deleted and all users will revert to having the default permissions. (YES/NO): ")
+ fmt.Scanln(&confirm)
+ if confirm != "YES" {
+ return errors.New("ABORTED: You did not answer YES exactly, in all capitals.")
+ }
+ }
+
+ if err := a.ResetPermissionsSystem(); err != nil {
+ return errors.New(err.Error())
+ }
+
+ CommandPrettyPrintln("Permissions system successfully reset")
+
+ return nil
+}
+
+func exportPermissionsCmdF(command *cobra.Command, args []string) error {
+ a, err := InitDBCommandContextCobra(command)
+ if err != nil {
+ return err
+ }
+ defer a.Shutdown()
+
+ if license := a.License(); license == nil {
+ return errors.New(utils.T("cli.license.critical"))
+ }
+
+ if err = a.ExportPermissions(os.Stdout); err != nil {
+ return errors.New(err.Error())
+ }
+
+ return nil
+}
+
+func importPermissionsCmdF(command *cobra.Command, args []string) error {
+ a, err := InitDBCommandContextCobra(command)
+ if err != nil {
+ return err
+ }
+ defer a.Shutdown()
+
+ if license := a.License(); license == nil {
+ return errors.New(utils.T("cli.license.critical"))
+ }
+
+ file, err := os.Open(args[0])
+ if err != nil {
+ return err
+ }
+ defer file.Close()
+
+ if err := a.ImportPermissions(file); err != nil {
+ return err
+ }
+
+ return nil
+}