Files
filebrowser/cmd/users_add.go
T

52 lines
1.3 KiB
Go
Raw Normal View History

2019-01-05 22:44:33 +00:00
package cmd
import (
"github.com/spf13/cobra"
2020-06-01 01:12:36 +02:00
"github.com/filebrowser/filebrowser/v2/users"
2019-01-05 22:44:33 +00:00
)
func init() {
2019-01-06 13:21:31 +00:00
usersCmd.AddCommand(usersAddCmd)
2019-01-08 10:50:37 +00:00
addUserFlags(usersAddCmd.Flags())
2019-01-05 22:44:33 +00:00
}
2019-01-06 13:21:31 +00:00
var usersAddCmd = &cobra.Command{
Use: "add <username> <password>",
2019-01-05 22:44:33 +00:00
Short: "Create a new user",
Long: `Create a new user and add it to the database.`,
Args: cobra.ExactArgs(2), //nolint:gomnd
2019-01-07 20:24:23 +00:00
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
s, err := d.store.Settings.Get()
2019-01-05 22:44:33 +00:00
checkErr(err)
2019-01-08 14:07:55 +00:00
getUserDefaults(cmd.Flags(), &s.Defaults, false)
2019-01-05 22:44:33 +00:00
2019-01-06 13:21:31 +00:00
password, err := users.HashPwd(args[1])
2019-01-05 22:44:33 +00:00
checkErr(err)
user := &users.User{
2019-01-06 13:21:31 +00:00
Username: args[0],
2019-01-05 22:44:33 +00:00
Password: password,
2019-01-08 14:07:55 +00:00
LockPassword: mustGetBool(cmd.Flags(), "lockPassword"),
2019-01-05 22:44:33 +00:00
}
s.Defaults.Apply(user)
servSettings, err := d.store.Settings.GetServer()
checkErr(err)
2020-06-01 01:12:36 +02:00
// since getUserDefaults() polluted s.Defaults.Scope
// which makes the Scope not the one saved in the db
// we need the right s.Defaults.Scope here
s2, err := d.store.Settings.Get()
checkErr(err)
2019-04-20 14:15:28 +01:00
userHome, err := s2.MakeUserDir(user.Username, user.Scope, servSettings.Root)
checkErr(err)
user.Scope = userHome
2019-01-07 20:24:23 +00:00
err = d.store.Users.Save(user)
2019-01-05 22:44:33 +00:00
checkErr(err)
printUsers([]*users.User{user})
2019-01-07 20:24:23 +00:00
}, pythonConfig{}),
2019-01-05 22:44:33 +00:00
}