Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/client"
|
|
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/printer"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var SamlCmd = &cobra.Command{
|
|
Use: "saml",
|
|
Short: "SAML related utilities",
|
|
}
|
|
|
|
var SamlAuthDataResetCmd = &cobra.Command{
|
|
Use: "auth-data-reset",
|
|
Short: "Reset AuthData field to Email",
|
|
Long: "Resets the AuthData field for SAML users to their email. Run this utility after setting the 'id' SAML attribute to an empty value.",
|
|
Example: ` # Reset all SAML users' AuthData field to their email, including deleted users
|
|
$ mmctl saml auth-data-reset --include-deleted
|
|
|
|
# Show how many users would be affected by the reset
|
|
$ mmctl saml auth-data-reset --dry-run
|
|
|
|
# Skip confirmation for resetting the AuthData
|
|
$ mmctl saml auth-data-reset -y
|
|
|
|
# Only reset the AuthData for the following SAML users
|
|
$ mmctl saml auth-data-reset --users userid1,userid2`,
|
|
RunE: withClient(samlAuthDataResetCmdF),
|
|
}
|
|
|
|
func init() {
|
|
SamlAuthDataResetCmd.Flags().Bool("include-deleted", false, "Include deleted users")
|
|
SamlAuthDataResetCmd.Flags().Bool("dry-run", false, "Dry run only")
|
|
SamlAuthDataResetCmd.Flags().BoolP("yes", "y", false, "Skip confirmation")
|
|
SamlAuthDataResetCmd.Flags().StringSlice("users", nil, "Comma-separated list of user IDs to which the operation will be applied")
|
|
|
|
SamlCmd.AddCommand(
|
|
SamlAuthDataResetCmd,
|
|
)
|
|
RootCmd.AddCommand(SamlCmd)
|
|
}
|
|
|
|
func samlAuthDataResetCmdF(c client.Client, cmd *cobra.Command, args []string) error {
|
|
includeDeleted, _ := cmd.Flags().GetBool("include-deleted")
|
|
dryRun, _ := cmd.Flags().GetBool("dry-run")
|
|
confirmed, _ := cmd.Flags().GetBool("yes")
|
|
userIDs, _ := cmd.Flags().GetStringSlice("users")
|
|
|
|
if !dryRun && !confirmed {
|
|
if err := getConfirmation("This action is irreversible. Are you sure you want to continue?", false); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
numAffected, _, err := c.ResetSamlAuthDataToEmail(context.TODO(), includeDeleted, dryRun, userIDs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if dryRun {
|
|
printer.Print(fmt.Sprintf("%d user records would be affected.\n", numAffected))
|
|
} else {
|
|
printer.Print(fmt.Sprintf("%d user records were changed.\n", numAffected))
|
|
}
|
|
|
|
return nil
|
|
}
|