mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
367e251a0e
@princemaple could you try out this branch to see if it works on your end?
Former-commit-id: 12c782316c411fa3438f167c12634adffb5e1adf [formerly c613ff6624c55292f532d7772e866cf6c81241f5] [formerly 11f03e54dae28fa773227d85259cfd73c5750137 [formerly 9c42269b62
]]
Former-commit-id: 04bcf5803397877d00ba48ea6d0b00246dc07b3d [formerly 4c1bb1e95375777aede2c0911bdfa9ce46273b37]
Former-commit-id: 601db641f7d7b01c14903d0cc27085e3d7080c3d
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
usersCmd.AddCommand(usersImportCmd)
|
|
usersImportCmd.Flags().Bool("overwrite", false, "overwrite users with the same id/username combo")
|
|
usersImportCmd.Flags().Bool("replace", false, "replace the entire user base")
|
|
}
|
|
|
|
var usersImportCmd = &cobra.Command{
|
|
Use: "import <path>",
|
|
Short: "Import users from a file",
|
|
Long: `Import users from a file. The path must be for a json or yaml
|
|
file. You can use this command to import new users to your
|
|
installation. For that, just don't place their ID on the files
|
|
list or set it to 0.`,
|
|
Args: jsonYamlArg,
|
|
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
|
|
fd, err := os.Open(args[0])
|
|
checkErr(err)
|
|
defer fd.Close()
|
|
|
|
list := []*users.User{}
|
|
err = unmarshal(args[0], &list)
|
|
checkErr(err)
|
|
|
|
for _, user := range list {
|
|
err = user.Clean("")
|
|
checkErr(err)
|
|
}
|
|
|
|
if mustGetBool(cmd.Flags(), "replace") {
|
|
oldUsers, err := d.store.Users.Gets("")
|
|
checkErr(err)
|
|
|
|
err = marshal("users.backup.json", list)
|
|
checkErr(err)
|
|
|
|
for _, user := range oldUsers {
|
|
err = d.store.Users.Delete(user.ID)
|
|
checkErr(err)
|
|
}
|
|
}
|
|
|
|
overwrite := mustGetBool(cmd.Flags(), "overwrite")
|
|
|
|
for _, user := range list {
|
|
onDB, err := d.store.Users.Get("", user.ID)
|
|
|
|
// User exists in DB.
|
|
if err == nil {
|
|
if !overwrite {
|
|
checkErr(errors.New("user " + strconv.Itoa(int(user.ID)) + " is already registred"))
|
|
}
|
|
|
|
// If the usernames mismatch, check if there is another one in the DB
|
|
// with the new username. If there is, print an error and cancel the
|
|
// operation
|
|
if user.Username != onDB.Username {
|
|
conflictuous, err := d.store.Users.Get("", user.Username)
|
|
if err == nil {
|
|
checkErr(usernameConflictError(user.Username, conflictuous.ID, user.ID))
|
|
}
|
|
}
|
|
} else {
|
|
// If it doesn't exist, set the ID to 0 to automatically get a new
|
|
// one that make sense in this DB.
|
|
user.ID = 0
|
|
}
|
|
|
|
err = d.store.Users.Save(user)
|
|
checkErr(err)
|
|
}
|
|
}, pythonConfig{}),
|
|
}
|
|
|
|
func usernameConflictError(username string, original, new uint) error {
|
|
return errors.New("can't import user with ID " + strconv.Itoa(int(new)) + " and username \"" + username + "\" because the username is already registred with the user " + strconv.Itoa(int(original)))
|
|
}
|