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
96 lines
2.1 KiB
Go
96 lines
2.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/rules"
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
"github.com/filebrowser/filebrowser/v2/storage"
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(rulesCmd)
|
|
rulesCmd.PersistentFlags().StringP("username", "u", "", "username of user to which the rules apply")
|
|
rulesCmd.PersistentFlags().UintP("id", "i", 0, "id of user to which the rules apply")
|
|
}
|
|
|
|
var rulesCmd = &cobra.Command{
|
|
Use: "rules",
|
|
Short: "Rules management utility",
|
|
Long: `On each subcommand you'll have available at least two flags:
|
|
"username" and "id". You must either set only one of them
|
|
or none. If you set one of them, the command will apply to
|
|
an user, otherwise it will be applied to the global set or
|
|
rules.`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Help()
|
|
os.Exit(0)
|
|
},
|
|
}
|
|
|
|
func runRules(st *storage.Storage, cmd *cobra.Command, users func(*users.User), global func(*settings.Settings)) {
|
|
id := getUserIdentifier(cmd)
|
|
if id != nil {
|
|
user, err := st.Users.Get("", id)
|
|
checkErr(err)
|
|
|
|
if users != nil {
|
|
users(user)
|
|
}
|
|
|
|
printRules(user.Rules, id)
|
|
return
|
|
}
|
|
|
|
settings, err := st.Settings.Get()
|
|
checkErr(err)
|
|
|
|
if global != nil {
|
|
global(settings)
|
|
}
|
|
|
|
printRules(settings.Rules, id)
|
|
}
|
|
|
|
func getUserIdentifier(cmd *cobra.Command) interface{} {
|
|
id := mustGetUint(cmd, "id")
|
|
username := mustGetString(cmd, "username")
|
|
|
|
if id != 0 {
|
|
return id
|
|
} else if username != "" {
|
|
return username
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func printRules(rules []rules.Rule, id interface{}) {
|
|
if id == nil {
|
|
fmt.Printf("Global Rules:\n\n")
|
|
} else {
|
|
fmt.Printf("Rules for user %v:\n\n", id)
|
|
}
|
|
|
|
for id, rule := range rules {
|
|
fmt.Printf("(%d) ", id)
|
|
if rule.Regex {
|
|
if rule.Allow {
|
|
fmt.Printf("Allow Regex: \t%s\n", rule.Regexp.Raw)
|
|
} else {
|
|
fmt.Printf("Disallow Regex: \t%s\n", rule.Regexp.Raw)
|
|
}
|
|
} else {
|
|
if rule.Allow {
|
|
fmt.Printf("Allow Path: \t%s\n", rule.Path)
|
|
} else {
|
|
fmt.Printf("Disallow Path: \t%s\n", rule.Path)
|
|
}
|
|
}
|
|
}
|
|
}
|