Files
filebrowser/cmd/rule_rm.go
T

67 lines
1.6 KiB
Go
Raw Normal View History

2019-01-05 22:44:33 +00:00
package cmd
import (
2019-01-06 13:21:31 +00:00
"strconv"
2020-06-01 01:12:36 +02:00
"github.com/spf13/cobra"
2019-01-05 22:44:33 +00:00
"github.com/filebrowser/filebrowser/v2/settings"
"github.com/filebrowser/filebrowser/v2/users"
)
func init() {
rulesCmd.AddCommand(rulesRmCommand)
rulesRmCommand.Flags().Uint("index", 0, "index of rule to remove")
2020-06-01 01:12:36 +02:00
_ = rulesRmCommand.MarkFlagRequired("index")
2019-01-05 22:44:33 +00:00
}
var rulesRmCommand = &cobra.Command{
2019-01-06 13:21:31 +00:00
Use: "rm <index> [index_end]",
2019-01-05 22:44:33 +00:00
Short: "Remove a global rule or user rule",
2019-01-08 16:37:02 +00:00
Long: `Remove a global rule or user rule. The provided index
is the same that's printed when you run 'rules ls'. Note
that after each removal/addition, the index of the
commands change. So be careful when removing them after each
other.
You can also specify an optional parameter (index_end) so
you can remove all commands from 'index' to 'index_end',
including 'index_end'.`,
2019-01-06 13:21:31 +00:00
Args: func(cmd *cobra.Command, args []string) error {
2021-07-26 12:00:05 +02:00
if err := cobra.RangeArgs(1, 2)(cmd, args); err != nil { //nolint:gomnd
2019-01-06 13:21:31 +00:00
return err
}
for _, arg := range args {
if _, err := strconv.Atoi(arg); err != nil {
return err
}
}
return nil
},
2019-01-07 20:24:23 +00:00
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
2019-01-06 13:21:31 +00:00
i, err := strconv.Atoi(args[0])
checkErr(err)
f := i
if len(args) == 2 { //nolint:gomnd
2019-01-06 13:21:31 +00:00
f, err = strconv.Atoi(args[1])
checkErr(err)
}
2019-01-05 22:44:33 +00:00
2019-01-07 20:24:23 +00:00
user := func(u *users.User) {
2019-01-06 13:21:31 +00:00
u.Rules = append(u.Rules[:i], u.Rules[f+1:]...)
2019-01-07 20:24:23 +00:00
err := d.store.Users.Save(u)
2019-01-05 22:44:33 +00:00
checkErr(err)
}
2019-01-07 20:24:23 +00:00
global := func(s *settings.Settings) {
2019-01-06 13:21:31 +00:00
s.Rules = append(s.Rules[:i], s.Rules[f+1:]...)
2019-01-07 20:24:23 +00:00
err := d.store.Settings.Save(s)
2019-01-05 22:44:33 +00:00
checkErr(err)
}
2019-01-07 20:24:23 +00:00
runRules(d.store, cmd, user, global)
}, pythonConfig{}),
2019-01-05 22:44:33 +00:00
}