mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
77e1fe83db
Wrap commands in a better way to pass storage
Former-commit-id: 9a3790c193936b53fe3826d1e051795efd30670b [formerly 04a9f34933a162cf4a98bc1e019f0d6c6404aae7] [formerly ab9be7f27b55a94e6a0f053df6908e357d4b396c [formerly 01ff03e426
]]
Former-commit-id: ae7b61281dec2b5527f6032dc6f8c1bd8bb51296 [formerly 780ccc3b166e72bf53114bbfc0a95c0b7ffd8656]
Former-commit-id: 68ee8f7f3931f8e571b0188c96951077d6529cd7
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package cmd
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/rules"
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
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),
|
|
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
|
|
allow := mustGetBool(cmd, "allow")
|
|
regex := mustGetBool(cmd, "regex")
|
|
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) {
|
|
u.Rules = append(u.Rules, rule)
|
|
err := d.store.Users.Save(u)
|
|
checkErr(err)
|
|
}
|
|
|
|
global := func(s *settings.Settings) {
|
|
s.Rules = append(s.Rules, rule)
|
|
err := d.store.Settings.Save(s)
|
|
checkErr(err)
|
|
}
|
|
|
|
runRules(d.store, cmd, user, global)
|
|
}, pythonConfig{}),
|
|
}
|