mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
32 lines
803 B
Go
32 lines
803 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/filebrowser/filebrowser/v2/storage/bolt/importer"
|
|
"github.com/spf13/cobra"
|
|
v "github.com/spf13/viper"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(importCmd)
|
|
|
|
importCmd.Flags().String("old.database", "", "")
|
|
importCmd.Flags().String("old.config", "", "")
|
|
importCmd.MarkFlagRequired("old.database")
|
|
}
|
|
|
|
var importCmd = &cobra.Command{
|
|
Use: "import",
|
|
Short: "Imports an old configuration",
|
|
Long: `Imports an old configuration. This command DOES NOT
|
|
import share links because they are incompatible with
|
|
this version.`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
oldDB := mustGetString(cmd, "old.database")
|
|
oldConf := mustGetString(cmd, "old.config")
|
|
|
|
err := importer.Import(oldDB, oldConf, v.GetString("database"))
|
|
checkErr(err)
|
|
},
|
|
}
|