2019-01-05 22:44:33 +00:00
|
|
|
package settings
|
|
|
|
|
2019-01-09 08:13:24 +00:00
|
|
|
import (
|
2019-01-11 20:25:39 +00:00
|
|
|
"crypto/rand"
|
2019-01-09 08:13:24 +00:00
|
|
|
"strings"
|
|
|
|
|
2023-06-15 01:08:09 +00:00
|
|
|
"github.com/gtsteffaniak/filebrowser/rules"
|
2019-01-09 08:13:24 +00:00
|
|
|
)
|
2019-01-05 22:44:33 +00:00
|
|
|
|
2022-06-03 13:59:36 +00:00
|
|
|
const DefaultUsersHomeBasePath = "/users"
|
|
|
|
|
2019-01-05 22:44:33 +00:00
|
|
|
// AuthMethod describes an authentication method.
|
|
|
|
type AuthMethod string
|
|
|
|
|
|
|
|
// Settings contain the main settings of the application.
|
2019-01-09 08:13:24 +00:00
|
|
|
// GetRules implements rules.Provider.
|
|
|
|
func (s *Settings) GetRules() []rules.Rule {
|
|
|
|
return s.Rules
|
|
|
|
}
|
|
|
|
|
2023-08-05 12:32:43 +00:00
|
|
|
// Server specific settings
|
2019-01-09 08:13:24 +00:00
|
|
|
// Clean cleans any variables that might need cleaning.
|
|
|
|
func (s *Server) Clean() {
|
|
|
|
s.BaseURL = strings.TrimSuffix(s.BaseURL, "/")
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|
2019-01-11 20:25:39 +00:00
|
|
|
|
2021-07-26 10:00:05 +00:00
|
|
|
// GenerateKey generates a key of 512 bits.
|
2019-01-11 20:25:39 +00:00
|
|
|
func GenerateKey() ([]byte, error) {
|
2021-07-26 10:00:05 +00:00
|
|
|
b := make([]byte, 64) //nolint:gomnd
|
2019-01-11 20:25:39 +00:00
|
|
|
_, err := rand.Read(b)
|
|
|
|
// Note that err == nil only if we read len(b) bytes.
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return b, nil
|
|
|
|
}
|
2023-09-01 14:00:02 +00:00
|
|
|
|
2023-09-03 22:03:00 +00:00
|
|
|
func GetSettingsConfig(nameType string, Value string) string {
|
2023-09-01 14:00:02 +00:00
|
|
|
return nameType + Value
|
2023-09-03 22:03:00 +00:00
|
|
|
}
|
2024-10-07 22:44:53 +00:00
|
|
|
|
|
|
|
func AdminPerms() Permissions {
|
|
|
|
return Permissions{
|
|
|
|
Create: true,
|
|
|
|
Rename: true,
|
|
|
|
Modify: true,
|
|
|
|
Delete: true,
|
|
|
|
Share: true,
|
|
|
|
Download: true,
|
|
|
|
Admin: true,
|
|
|
|
}
|
|
|
|
}
|