mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
a3b9807717
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
Former-commit-id: a9d9c2cd9a5fffa71409ebb0867faa3a0aca6e9f [formerly c3359cf3ff2633945a9c8dd5ea8eff5a77484364] [formerly 8921b27f322e426cf2f2f07dc682e1fffca162e0 [formerly f1c86054b3
]]
Former-commit-id: 078633f5c5b1aaeafd6b078b5e006c5e05f19c84 [formerly 9013496a12cda3bef58215a3f5df4eeeaa677eb1]
Former-commit-id: 420076748685f1b8a23053c5fe159bc5e86942d3
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package settings
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/rules"
|
|
)
|
|
|
|
// AuthMethod describes an authentication method.
|
|
type AuthMethod string
|
|
|
|
// Settings contain the main settings of the application.
|
|
type Settings struct {
|
|
Key []byte `json:"key"`
|
|
Signup bool `json:"signup"`
|
|
Defaults UserDefaults `json:"defaults"`
|
|
AuthMethod AuthMethod `json:"authMethod"`
|
|
Branding Branding `json:"branding"`
|
|
Commands map[string][]string `json:"commands"`
|
|
Shell []string `json:"shell"`
|
|
Rules []rules.Rule `json:"rules"`
|
|
}
|
|
|
|
// GetRules implements rules.Provider.
|
|
func (s *Settings) GetRules() []rules.Rule {
|
|
return s.Rules
|
|
}
|
|
|
|
// Server specific settings.
|
|
type Server struct {
|
|
Root string `json:"root"`
|
|
BaseURL string `json:"baseURL"`
|
|
TLSKey string `json:"tlsKey"`
|
|
TLSCert string `json:"tlsCert"`
|
|
Port string `json:"port"`
|
|
Address string `json:"address"`
|
|
Log string `json:"log"`
|
|
}
|
|
|
|
// Clean cleans any variables that might need cleaning.
|
|
func (s *Server) Clean() {
|
|
s.BaseURL = strings.TrimSuffix(s.BaseURL, "/")
|
|
}
|