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`
67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/rules"
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
)
|
|
|
|
func init() {
|
|
rulesCmd.AddCommand(rulesAddCmd)
|
|
rulesAddCmd.Flags().BoolP("allow", "a", false, "indicates this is an allow rule")
|
|
rulesAddCmd.Flags().BoolP("regex", "r", false, "indicates this is a regex rule")
|
|
}
|
|
|
|
var rulesAddCmd = &cobra.Command{
|
|
Use: "add <path|expression>",
|
|
Short: "Add a global rule or user rule",
|
|
Long: `Add a global rule or user rule.`,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: python(func(cmd *cobra.Command, args []string, d *pythonData) error {
|
|
flags := cmd.Flags()
|
|
|
|
allow, err := flags.GetBool("allow")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
regex, err := flags.GetBool("regex")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
exp := args[0]
|
|
|
|
if regex {
|
|
regexp.MustCompile(exp)
|
|
}
|
|
|
|
rule := rules.Rule{
|
|
Allow: allow,
|
|
Regex: regex,
|
|
}
|
|
|
|
if regex {
|
|
rule.Regexp = &rules.Regexp{Raw: exp}
|
|
} else {
|
|
rule.Path = exp
|
|
}
|
|
|
|
user := func(u *users.User) error {
|
|
u.Rules = append(u.Rules, rule)
|
|
return d.store.Users.Save(u)
|
|
}
|
|
|
|
global := func(s *settings.Settings) error {
|
|
s.Rules = append(s.Rules, rule)
|
|
return d.store.Settings.Save(s)
|
|
}
|
|
|
|
return runRules(d.store, cmd, user, global)
|
|
}, pythonConfig{}),
|
|
}
|