Documentation ¶
Index ¶
- Constants
- func AddPermsToList(perms []*Perm)
- func BuildGuard(category Category, name Name) string
- func BuildGuardWithKey(category Category, name Name, key Key) string
- func ValidateJobGradeList(in map[string]int32) bool
- func ValidateJobList(in []string, jobs []string) bool
- func ValidateStringList(in []string, validVals []string) bool
- type AddPerm
- type Attr
- type AttributeTypes
- type Category
- type JobGradeList
- type JobList
- type Key
- type Name
- type Perm
- type Permissions
- type Perms
- func (p *Perms) AddOrUpdateAttributesToRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error
- func (p *Perms) Attr(userInfo *userinfo.UserInfo, category Category, name Name, key Key) (any, error)
- func (p *Perms) Can(userInfo *userinfo.UserInfo, category Category, name Name) bool
- func (p *Perms) CountRolesForJob(ctx context.Context, job string) (int64, error)
- func (p *Perms) CreateAttribute(ctx context.Context, permId uint64, key Key, aType AttributeTypes, ...) (uint64, error)
- func (p *Perms) CreatePermission(ctx context.Context, category Category, name Name) (uint64, error)
- func (p *Perms) CreateRole(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error)
- func (p *Perms) DeleteRole(ctx context.Context, id uint64) error
- func (p *Perms) FlattenRoleAttributes(job string, grade int32) ([]string, error)
- func (p *Perms) GetAllAttributes(ctx context.Context, job string) ([]*permissions.RoleAttribute, error)
- func (p *Perms) GetAllPermissions(ctx context.Context) ([]*permissions.Permission, error)
- func (p *Perms) GetAttribute(category Category, name Name, key Key) (*permissions.RoleAttribute, error)
- func (p *Perms) GetAttributeByIDs(ctx context.Context, attrIds ...uint64) ([]*permissions.RoleAttribute, error)
- func (p *Perms) GetClosestJobRole(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error)
- func (p *Perms) GetJobRoles(ctx context.Context, job string) (collections.Roles, error)
- func (p *Perms) GetJobRolesUpTo(ctx context.Context, job string, grade int32) (collections.Roles, error)
- func (p *Perms) GetPermissionsByIDs(ctx context.Context, ids ...uint64) ([]*permissions.Permission, error)
- func (p *Perms) GetPermissionsOfUser(userInfo *userinfo.UserInfo) (collections.Permissions, error)
- func (p *Perms) GetRole(ctx context.Context, id uint64) (*model.FivenetRoles, error)
- func (p *Perms) GetRoleAttributes(job string, grade int32) ([]*permissions.RoleAttribute, error)
- func (p *Perms) GetRoleByJobAndGrade(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error)
- func (p *Perms) GetRolePermissions(ctx context.Context, id uint64) ([]*permissions.Permission, error)
- func (p *Perms) Register(defaultRolePerms []string) error
- func (p *Perms) RemoveAttributesFromRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error
- func (p *Perms) RemovePermissionsByIDs(ctx context.Context, ids ...uint64) error
- func (p *Perms) RemovePermissionsFromRole(ctx context.Context, roleId uint64, perms ...uint64) error
- func (p *Perms) Stop()
- func (p *Perms) UpdateAttribute(ctx context.Context, attrId uint64, permId uint64, key Key, ...) error
- func (p *Perms) UpdatePermission(ctx context.Context, id uint64, category Category, name Name) error
- func (p *Perms) UpdateRolePermissions(ctx context.Context, roleId uint64, perms ...AddPerm) error
- type RoleAttrUpdateEvent
- type RolePermUpdateEvent
- type StringList
Constants ¶
View Source
const ( BaseSubject = "perms" RolePermUpdateSubject = "roleperm.update" RoleAttrUpdateSubject = "roleattr.update" )
View Source
const ( DefaultRoleJob = "__default__" DefaultRoleJobGrade = int32(1) )
Variables ¶
This section is empty.
Functions ¶
func AddPermsToList ¶
func AddPermsToList(perms []*Perm)
func BuildGuard ¶
func ValidateJobGradeList ¶
func ValidateJobList ¶
func ValidateStringList ¶
Types ¶
type AttributeTypes ¶
type AttributeTypes string
const ( StringListAttributeType AttributeTypes = "StringList" JobListAttributeType AttributeTypes = "JobList" JobGradeListAttributeType AttributeTypes = "JobGradeList" )
type JobGradeList ¶
type Permissions ¶
type Permissions interface { GetAllPermissions(ctx context.Context) ([]*permissions.Permission, error) GetPermissionsByIDs(ctx context.Context, ids ...uint64) ([]*permissions.Permission, error) CreatePermission(ctx context.Context, category Category, name Name) (uint64, error) GetPermissionsOfUser(userInfo *userinfo.UserInfo) (collections.Permissions, error) GetJobRoles(ctx context.Context, job string) (collections.Roles, error) GetJobRolesUpTo(ctx context.Context, job string, grade int32) (collections.Roles, error) GetClosestJobRole(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error) CountRolesForJob(ctx context.Context, prefix string) (int64, error) GetRole(ctx context.Context, id uint64) (*model.FivenetRoles, error) GetRoleByJobAndGrade(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error) GetRolePermissions(ctx context.Context, id uint64) ([]*permissions.Permission, error) CreateRole(ctx context.Context, job string, grade int32) (*model.FivenetRoles, error) DeleteRole(ctx context.Context, id uint64) error UpdateRolePermissions(ctx context.Context, id uint64, perms ...AddPerm) error RemovePermissionsFromRole(ctx context.Context, id uint64, perms ...uint64) error Can(userInfo *userinfo.UserInfo, category Category, name Name) bool GetAttribute(category Category, name Name, key Key) (*permissions.RoleAttribute, error) GetAttributeByIDs(ctx context.Context, ids ...uint64) ([]*permissions.RoleAttribute, error) CreateAttribute(ctx context.Context, permId uint64, key Key, aType AttributeTypes, validValues any) (uint64, error) UpdateAttribute(ctx context.Context, attributeId uint64, permId uint64, key Key, aType AttributeTypes, validValues any) error GetRoleAttributes(job string, grade int32) ([]*permissions.RoleAttribute, error) FlattenRoleAttributes(job string, grade int32) ([]string, error) GetAllAttributes(ctx context.Context, job string) ([]*permissions.RoleAttribute, error) AddOrUpdateAttributesToRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error RemoveAttributesFromRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error Attr(userInfo *userinfo.UserInfo, category Category, name Name, key Key) (any, error) Stop() }
type Perms ¶
type Perms struct {
// contains filtered or unexported fields
}
func (*Perms) AddOrUpdateAttributesToRole ¶
func (p *Perms) AddOrUpdateAttributesToRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error
func (*Perms) CountRolesForJob ¶
func (*Perms) CreateAttribute ¶
func (*Perms) CreatePermission ¶
func (*Perms) CreateRole ¶
func (*Perms) FlattenRoleAttributes ¶
func (*Perms) GetAllAttributes ¶
func (p *Perms) GetAllAttributes(ctx context.Context, job string) ([]*permissions.RoleAttribute, error)
func (*Perms) GetAllPermissions ¶
func (p *Perms) GetAllPermissions(ctx context.Context) ([]*permissions.Permission, error)
func (*Perms) GetAttribute ¶
func (p *Perms) GetAttribute(category Category, name Name, key Key) (*permissions.RoleAttribute, error)
func (*Perms) GetAttributeByIDs ¶
func (p *Perms) GetAttributeByIDs(ctx context.Context, attrIds ...uint64) ([]*permissions.RoleAttribute, error)
func (*Perms) GetClosestJobRole ¶
func (*Perms) GetJobRoles ¶
func (*Perms) GetJobRolesUpTo ¶
func (*Perms) GetPermissionsByIDs ¶
func (p *Perms) GetPermissionsByIDs(ctx context.Context, ids ...uint64) ([]*permissions.Permission, error)
func (*Perms) GetPermissionsOfUser ¶
func (p *Perms) GetPermissionsOfUser(userInfo *userinfo.UserInfo) (collections.Permissions, error)
func (*Perms) GetRoleAttributes ¶
func (p *Perms) GetRoleAttributes(job string, grade int32) ([]*permissions.RoleAttribute, error)
func (*Perms) GetRoleByJobAndGrade ¶
func (*Perms) GetRolePermissions ¶
func (p *Perms) GetRolePermissions(ctx context.Context, id uint64) ([]*permissions.Permission, error)
func (*Perms) RemoveAttributesFromRole ¶
func (p *Perms) RemoveAttributesFromRole(ctx context.Context, roleId uint64, attrs ...*permissions.RoleAttribute) error
func (*Perms) RemovePermissionsByIDs ¶
func (*Perms) RemovePermissionsFromRole ¶
func (*Perms) UpdateAttribute ¶
func (*Perms) UpdatePermission ¶
type RoleAttrUpdateEvent ¶ added in v0.6.0
type RoleAttrUpdateEvent struct {
RoleID uint64
}
type RolePermUpdateEvent ¶ added in v0.6.0
type RolePermUpdateEvent struct {
RoleID uint64
}
type StringList ¶
type StringList []string
Source Files ¶
Click to show internal directories.
Click to hide internal directories.