mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-6471 Properly panic when translations can't be loaded * Print usage messages when errors occur during CLI initialization * Reverted behaviour of FindDir and added second return value to it * Fixed merge conflict
138 lines
3.5 KiB
Go
138 lines
3.5 KiB
Go
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
|
|
"fmt"
|
|
"github.com/mattermost/platform/app"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var importCmd = &cobra.Command{
|
|
Use: "import",
|
|
Short: "Import data.",
|
|
}
|
|
|
|
var slackImportCmd = &cobra.Command{
|
|
Use: "slack [team] [file]",
|
|
Short: "Import a team from Slack.",
|
|
Long: "Import a team from a Slack export zip file.",
|
|
Example: " import slack myteam slack_export.zip",
|
|
RunE: slackImportCmdF,
|
|
}
|
|
|
|
var bulkImportCmd = &cobra.Command{
|
|
Use: "bulk [file]",
|
|
Short: "Import bulk data.",
|
|
Long: "Import data from a Mattermost Bulk Import File.",
|
|
Example: " import bulk bulk_data.json",
|
|
RunE: bulkImportCmdF,
|
|
}
|
|
|
|
func init() {
|
|
bulkImportCmd.Flags().Bool("apply", false, "Save the import data to the database. Use with caution - this cannot be reverted.")
|
|
bulkImportCmd.Flags().Bool("validate", false, "Validate the import data without making any changes to the system.")
|
|
bulkImportCmd.Flags().Int("workers", 2, "How many workers to run whilst doing the import.")
|
|
|
|
importCmd.AddCommand(
|
|
bulkImportCmd,
|
|
slackImportCmd,
|
|
)
|
|
}
|
|
|
|
func slackImportCmdF(cmd *cobra.Command, args []string) error {
|
|
if err := initDBCommandContextCobra(cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(args) != 2 {
|
|
return errors.New("Incorrect number of arguments.")
|
|
}
|
|
|
|
team := getTeamFromTeamArg(args[0])
|
|
if team == nil {
|
|
return errors.New("Unable to find team '" + args[0] + "'")
|
|
}
|
|
|
|
fileReader, err := os.Open(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer fileReader.Close()
|
|
|
|
fileInfo, err := fileReader.Stat()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
CommandPrettyPrintln("Running Slack Import. This may take a long time for large teams or teams with many messages.")
|
|
|
|
app.SlackImport(fileReader, fileInfo.Size(), team.Id)
|
|
|
|
CommandPrettyPrintln("Finished Slack Import.")
|
|
|
|
return nil
|
|
}
|
|
|
|
func bulkImportCmdF(cmd *cobra.Command, args []string) error {
|
|
if err := initDBCommandContextCobra(cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
apply, err := cmd.Flags().GetBool("apply")
|
|
if err != nil {
|
|
return errors.New("Apply flag error")
|
|
}
|
|
|
|
validate, err := cmd.Flags().GetBool("validate")
|
|
if err != nil {
|
|
return errors.New("Validate flag error")
|
|
}
|
|
|
|
workers, err := cmd.Flags().GetInt("workers")
|
|
if err != nil {
|
|
return errors.New("Workers flag error")
|
|
}
|
|
|
|
if len(args) != 1 {
|
|
return errors.New("Incorrect number of arguments.")
|
|
}
|
|
|
|
fileReader, err := os.Open(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer fileReader.Close()
|
|
|
|
if apply && validate {
|
|
CommandPrettyPrintln("Use only one of --apply or --validate.")
|
|
return nil
|
|
} else if apply && !validate {
|
|
CommandPrettyPrintln("Running Bulk Import. This may take a long time.")
|
|
} else {
|
|
CommandPrettyPrintln("Running Bulk Import Data Validation.")
|
|
CommandPrettyPrintln("** This checks the validity of the entities in the data file, but does not persist any changes **")
|
|
CommandPrettyPrintln("Use the --apply flag to perform the actual data import.")
|
|
}
|
|
|
|
CommandPrettyPrintln("")
|
|
|
|
if err, lineNumber := app.BulkImport(fileReader, !apply, workers); err != nil {
|
|
CommandPrettyPrintln(err.Error())
|
|
if lineNumber != 0 {
|
|
CommandPrettyPrintln(fmt.Sprintf("Error occurred on data file line %v", lineNumber))
|
|
}
|
|
} else {
|
|
if apply {
|
|
CommandPrettyPrintln("Finished Bulk Import.")
|
|
} else {
|
|
CommandPrettyPrintln("Validation complete. You can now perform the import by rerunning this command with the --apply flag.")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|