package accesscontrol import ( "time" ) type Role struct { Version int64 `json:"version"` UID string `json:"uid"` Name string `json:"name"` Description string `json:"description"` Updated time.Time `json:"updated"` Created time.Time `json:"created"` } type RoleDTO struct { Version int64 `json:"version"` UID string `json:"uid"` Name string `json:"name"` Description string `json:"description"` Permissions []Permission `json:"permissions,omitempty"` } type Permission struct { Action string `json:"action"` Scope string `json:"scope"` } type EvaluationResult struct { HasAccess bool Meta interface{} } func (p RoleDTO) Role() Role { return Role{ Name: p.Name, Description: p.Description, } } const ( // Permission actions // Provisioning actions ActionProvisioningReload = "provisioning:reload" // Users actions ActionUsersRead = "users:read" ActionUsersWrite = "users:write" ActionUsersTeamRead = "users.teams:read" // We can ignore gosec G101 since this does not contain any credentials // nolint:gosec ActionUsersAuthTokenList = "users.authtoken:list" // We can ignore gosec G101 since this does not contain any credentials // nolint:gosec ActionUsersAuthTokenUpdate = "users.authtoken:update" // We can ignore gosec G101 since this does not contain any credentials // nolint:gosec ActionUsersPasswordUpdate = "users.password:update" ActionUsersDelete = "users:delete" ActionUsersCreate = "users:create" ActionUsersEnable = "users:enable" ActionUsersDisable = "users:disable" ActionUsersPermissionsUpdate = "users.permissions:update" ActionUsersLogout = "users:logout" ActionUsersQuotasList = "users.quotas:list" ActionUsersQuotasUpdate = "users.quotas:update" // Org actions ActionOrgUsersRead = "org.users:read" ActionOrgUsersAdd = "org.users:add" ActionOrgUsersRemove = "org.users:remove" ActionOrgUsersRoleUpdate = "org.users.role:update" // LDAP actions ActionLDAPUsersRead = "ldap.user:read" ActionLDAPUsersSync = "ldap.user:sync" ActionLDAPStatusRead = "ldap.status:read" ActionLDAPConfigReload = "ldap.config:reload" // Server actions ActionServerStatsRead = "server.stats:read" // Settings actions ActionSettingsRead = "settings:read" // Datasources actions ActionDatasourcesExplore = "datasources:explore" // Global Scopes ScopeGlobalUsersAll = "global:users:*" // Users scopes ScopeUsersSelf = "users:self" ScopeUsersAll = "users:*" // Settings scope ScopeSettingsAll = "settings:**" // Services Scopes ScopeServicesAll = "service:*" ) const RoleGrafanaAdmin = "Grafana Admin"