7e7ba69982
This also adds the ability to change the client role if needed and improves the usage information and output of the CLI commands. Signed-off-by: Michael Mayer <michael@photoprism.app>
41 lines
987 B
Go
41 lines
987 B
Go
package acl
|
|
|
|
// Roles that can be assigned to users.
|
|
const (
|
|
RoleDefault Role = "default"
|
|
RoleAdmin Role = "admin"
|
|
RoleVisitor Role = "visitor"
|
|
RoleClient Role = "client"
|
|
RoleNone Role = ""
|
|
)
|
|
|
|
// RoleStrings represents user role names mapped to roles.
|
|
type RoleStrings = map[string]Role
|
|
|
|
// UserRoles maps valid user account roles.
|
|
var UserRoles = RoleStrings{
|
|
string(RoleAdmin): RoleAdmin,
|
|
string(RoleVisitor): RoleVisitor,
|
|
string(RoleNone): RoleNone,
|
|
}
|
|
|
|
// ClientRoles maps valid API client roles.
|
|
var ClientRoles = RoleStrings{
|
|
string(RoleAdmin): RoleAdmin,
|
|
string(RoleClient): RoleClient,
|
|
string(RoleNone): RoleNone,
|
|
}
|
|
|
|
// Roles grants permissions to roles.
|
|
type Roles map[Role]Grant
|
|
|
|
// Allow checks whether the permission is granted based on the role.
|
|
func (roles Roles) Allow(role Role, grant Permission) bool {
|
|
if a, ok := roles[role]; ok {
|
|
return a.Allow(grant)
|
|
} else if a, ok = roles[RoleDefault]; ok {
|
|
return a.Allow(grant)
|
|
}
|
|
|
|
return false
|
|
}
|