2019-01-05 22:44:33 +00:00
|
|
|
package users
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
|
2020-05-31 23:12:36 +00:00
|
|
|
"github.com/spf13/afero"
|
2019-01-06 13:01:42 +00:00
|
|
|
|
2023-06-15 01:08:09 +00:00
|
|
|
"github.com/gtsteffaniak/filebrowser/rules"
|
2019-01-05 22:44:33 +00:00
|
|
|
)
|
|
|
|
|
2023-09-03 22:09:38 +00:00
|
|
|
type Permissions struct {
|
2023-09-03 22:03:00 +00:00
|
|
|
Admin bool `json:"admin"`
|
|
|
|
Execute bool `json:"execute"`
|
|
|
|
Create bool `json:"create"`
|
|
|
|
Rename bool `json:"rename"`
|
|
|
|
Modify bool `json:"modify"`
|
|
|
|
Delete bool `json:"delete"`
|
|
|
|
Share bool `json:"share"`
|
|
|
|
Download bool `json:"download"`
|
|
|
|
}
|
|
|
|
|
2023-12-01 23:47:00 +00:00
|
|
|
// SortingSettings represents the sorting settings.
|
|
|
|
type Sorting struct {
|
|
|
|
By string `json:"by"`
|
|
|
|
Asc bool `json:"asc"`
|
|
|
|
}
|
|
|
|
|
2019-01-05 22:44:33 +00:00
|
|
|
// User describes a user.
|
|
|
|
type User struct {
|
2023-12-01 23:47:00 +00:00
|
|
|
DarkMode bool `json:"darkMode"`
|
|
|
|
DisableSettings bool `json:"disableSettings"`
|
|
|
|
ID uint `storm:"id,increment" json:"id"`
|
|
|
|
Username string `storm:"unique" json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Scope string `json:"scope"`
|
|
|
|
Locale string `json:"locale"`
|
|
|
|
LockPassword bool `json:"lockPassword"`
|
|
|
|
ViewMode string `json:"viewMode"`
|
|
|
|
SingleClick bool `json:"singleClick"`
|
|
|
|
Perm Permissions `json:"perm"`
|
|
|
|
Commands []string `json:"commands"`
|
|
|
|
Sorting Sorting `json:"sorting"`
|
|
|
|
Fs afero.Fs `json:"-" yaml:"-"`
|
|
|
|
Rules []rules.Rule `json:"rules"`
|
|
|
|
HideDotfiles bool `json:"hideDotfiles"`
|
|
|
|
DateFormat bool `json:"dateFormat"`
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetRules implements rules.Provider.
|
|
|
|
func (u *User) GetRules() []rules.Rule {
|
|
|
|
return u.Rules
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean cleans up a user and verifies if all its fields
|
|
|
|
// are alright to be saved.
|
2023-02-16 08:11:12 +00:00
|
|
|
//
|
2020-05-31 23:12:36 +00:00
|
|
|
//nolint:gocyclo
|
2023-10-09 22:24:48 +00:00
|
|
|
func (u *User) Clean(baseScope string) error {
|
2019-01-05 22:44:33 +00:00
|
|
|
|
|
|
|
if u.Fs == nil {
|
2019-01-06 13:01:42 +00:00
|
|
|
scope := u.Scope
|
2022-06-03 13:59:36 +00:00
|
|
|
scope = filepath.Join(baseScope, filepath.Join("/", scope)) //nolint:gocritic
|
2019-01-06 13:01:42 +00:00
|
|
|
u.Fs = afero.NewBasePathFs(afero.NewOsFs(), scope)
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FullPath gets the full path for a user's relative path.
|
|
|
|
func (u *User) FullPath(path string) string {
|
|
|
|
return afero.FullBaseFsPath(u.Fs.(*afero.BasePathFs), path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CanExecute checks if an user can execute a specific command.
|
|
|
|
func (u *User) CanExecute(command string) bool {
|
|
|
|
if !u.Perm.Execute {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range u.Commands {
|
|
|
|
if regexp.MustCompile(cmd).MatchString(command) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|