filebrowser/backend/settings/settings.go

54 lines
1.0 KiB
Go
Raw Normal View History

package settings
import (
"crypto/rand"
"strings"
2023-06-15 01:08:09 +00:00
"github.com/gtsteffaniak/filebrowser/rules"
)
const DefaultUsersHomeBasePath = "/users"
// AuthMethod describes an authentication method.
type AuthMethod string
// Settings contain the main settings of the application.
// GetRules implements rules.Provider.
func (s *Settings) GetRules() []rules.Rule {
return s.Rules
}
2023-08-05 12:32:43 +00:00
// Server specific settings
// Clean cleans any variables that might need cleaning.
func (s *Server) Clean() {
s.BaseURL = strings.TrimSuffix(s.BaseURL, "/")
}
2021-07-26 10:00:05 +00:00
// GenerateKey generates a key of 512 bits.
func GenerateKey() ([]byte, error) {
2021-07-26 10:00:05 +00:00
b := make([]byte, 64) //nolint:gomnd
_, 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,
}
}