You've already forked filebrowser
mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-11-26 14:25:26 +08:00
- In the root command, all flags are now correctly available as environmental variables, except for `--config` flag. This was already supposed to be the case, but due to bugs in the implementation it didn't work properly. - All configuration options (unless I missed something) that are available as flags should now properly update the configuration when using the `config init` and `config set` commands. - Flag names are now consistently in the lowerCamelCase format. All flags that were in a different format have been updated in a backwards compatible way. For a transitionary period of at least 6 months, both will work: - `--dir-mode` --> `--dirMode` - `--hide-login-button` --> `--hideLoginButton` - `--create-user-dir` --> `--createUserDir` - `--minimum-password-length` --> `--minimumPasswordLength` - `--socket-perm` --> `--socketPerm` - `--disable-thumbnails` --> `--disableThumbnails` - `--disable-preview-resize` --> `--disablePreviewResize` - `--disable-exec` --> `--disableExec` - `--disable-type-detection-by-header` --> `--disableTypeDetectionByHeader` - `--img-processors` --> `--imageProcessors` - `--cache-dir` --> `--cacheDir` - `--token-expiration-time` --> `--tokenExpirationTime` - `--baseurl` --> `--baseURL`
83 lines
1.7 KiB
Go
83 lines
1.7 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
)
|
|
|
|
func init() {
|
|
usersCmd.AddCommand(usersAddCmd)
|
|
addUserFlags(usersAddCmd.Flags())
|
|
}
|
|
|
|
var usersAddCmd = &cobra.Command{
|
|
Use: "add <username> <password>",
|
|
Short: "Create a new user",
|
|
Long: `Create a new user and add it to the database.`,
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: python(func(cmd *cobra.Command, args []string, d *pythonData) error {
|
|
flags := cmd.Flags()
|
|
s, err := d.store.Settings.Get()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = getUserDefaults(flags, &s.Defaults, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
password, err := users.ValidateAndHashPwd(args[1], s.MinimumPasswordLength)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
user := &users.User{
|
|
Username: args[0],
|
|
Password: password,
|
|
}
|
|
|
|
user.LockPassword, err = flags.GetBool("lockPassword")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
user.DateFormat, err = flags.GetBool("dateFormat")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
user.HideDotfiles, err = flags.GetBool("hideDotfiles")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.Defaults.Apply(user)
|
|
|
|
servSettings, err := d.store.Settings.GetServer()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// 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()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
userHome, err := s2.MakeUserDir(user.Username, user.Scope, servSettings.Root)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
user.Scope = userHome
|
|
|
|
err = d.store.Users.Save(user)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
printUsers([]*users.User{user})
|
|
return nil
|
|
}, pythonConfig{}),
|
|
}
|