photoprism/internal/acl/role.go
Michael Mayer f5a8c5a45d Auth: Session and ACL enhancements #98 #1746
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-09-28 09:01:17 +02:00

43 lines
780 B
Go

package acl
import (
"strings"
)
// Role represents a user role.
type Role string
// String returns the type as string.
func (r Role) String() string {
if r == "" {
return "unauthorized"
}
return string(r)
}
// LogId returns an identifier string for use in log messages.
func (r Role) LogId() string {
return "role " + r.String()
}
// Equal checks if the type matches.
func (r Role) Equal(s string) bool {
return strings.EqualFold(s, r.String())
}
// NotEqual checks if the type is different.
func (r Role) NotEqual(s string) bool {
return !r.Equal(s)
}
// Valid checks if the role is valid.
func (r Role) Valid(s string) bool {
return ValidRoles[s] != ""
}
// Invalid checks if the role is invalid.
func (r Role) Invalid(s string) bool {
return !r.Valid(s)
}