mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
f1a89f5ec4
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
Former-commit-id: a44ebfc7a5687b5f51f0ff791335f66ab9f2e8e0 [formerly 9a044fadd8f2ebbb7dbb773273799c26a797f513] [formerly 7f374d016eaf756cfce215dd16a2274bbabe1915 [formerly f55f205ced
]]
Former-commit-id: 31015ddc5f4fc28c895743f6fe9dcf5488bb4b01 [formerly e439027304a1e49667fafde011e07d043ef0d2ee]
Former-commit-id: 0394c60358673b56991364260b1cbe41fa457593
92 lines
2.0 KiB
Go
92 lines
2.0 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(cmd *cobra.Command, users func(*users.User, *storage.Storage), global func(*settings.Settings, *storage.Storage)) {
|
|
db := getDB()
|
|
defer db.Close()
|
|
st := getStorage(db)
|
|
|
|
id := getUserIdentifier(cmd)
|
|
if id != nil {
|
|
user, err := st.Users.Get("", id)
|
|
checkErr(err)
|
|
|
|
if users != nil {
|
|
users(user, st)
|
|
}
|
|
|
|
printRules(user.Rules, id)
|
|
return
|
|
}
|
|
|
|
settings, err := st.Settings.Get()
|
|
checkErr(err)
|
|
|
|
if global != nil {
|
|
global(settings, st)
|
|
}
|
|
|
|
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 {
|
|
fmt.Printf("Allow: %t\tRegex: %s\n", rule.Allow, rule.Regexp.Raw)
|
|
} else {
|
|
fmt.Printf("Allow: %t\tPath: %s\n", rule.Allow, rule.Path)
|
|
}
|
|
}
|
|
}
|