mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
36c997a625
* Add new accesscontrol action for ldap config reload * Update ldapAdminEditRole with new ldap config reload permission * wrap /ldap/reload with accesscontrol authorize middleware * document new action and update fixed:ldap:admin:edit with said action * add fake accesscontrol implementation for tests * Add accesscontrol tests for ldap handlers Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
203 lines
4.0 KiB
Go
203 lines
4.0 KiB
Go
package accesscontrol
|
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
|
|
|
var ldapAdminReadRole = RoleDTO{
|
|
Name: ldapAdminRead,
|
|
Version: 1,
|
|
Permissions: []Permission{
|
|
{
|
|
Action: ActionLDAPUsersRead,
|
|
},
|
|
{
|
|
Action: ActionLDAPStatusRead,
|
|
},
|
|
},
|
|
}
|
|
|
|
var ldapAdminEditRole = RoleDTO{
|
|
Name: ldapAdminEdit,
|
|
Version: 2,
|
|
Permissions: ConcatPermissions(ldapAdminReadRole.Permissions, []Permission{
|
|
{
|
|
Action: ActionLDAPUsersSync,
|
|
},
|
|
{
|
|
Action: ActionLDAPConfigReload,
|
|
},
|
|
}),
|
|
}
|
|
|
|
var usersOrgReadRole = RoleDTO{
|
|
Name: usersOrgRead,
|
|
Version: 1,
|
|
Permissions: []Permission{
|
|
{
|
|
Action: ActionOrgUsersRead,
|
|
Scope: ScopeUsersAll,
|
|
},
|
|
},
|
|
}
|
|
|
|
var usersOrgEditRole = RoleDTO{
|
|
Name: usersOrgEdit,
|
|
Version: 1,
|
|
Permissions: ConcatPermissions(usersOrgReadRole.Permissions, []Permission{
|
|
{
|
|
Action: ActionOrgUsersAdd,
|
|
Scope: ScopeUsersAll,
|
|
},
|
|
{
|
|
Action: ActionOrgUsersRoleUpdate,
|
|
Scope: ScopeUsersAll,
|
|
},
|
|
{
|
|
Action: ActionOrgUsersRemove,
|
|
Scope: ScopeUsersAll,
|
|
},
|
|
}),
|
|
}
|
|
|
|
var usersAdminReadRole = RoleDTO{
|
|
Name: usersAdminRead,
|
|
Version: 1,
|
|
Permissions: []Permission{
|
|
{
|
|
Action: ActionUsersRead,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersTeamRead,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersAuthTokenList,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersQuotasList,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
},
|
|
}
|
|
|
|
var usersAdminEditRole = RoleDTO{
|
|
Name: usersAdminEdit,
|
|
Version: 1,
|
|
Permissions: ConcatPermissions(usersAdminReadRole.Permissions, []Permission{
|
|
{
|
|
Action: ActionUsersPasswordUpdate,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersCreate,
|
|
},
|
|
{
|
|
Action: ActionUsersWrite,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersDelete,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersEnable,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersDisable,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersPermissionsUpdate,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersLogout,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersAuthTokenUpdate,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
{
|
|
Action: ActionUsersQuotasUpdate,
|
|
Scope: ScopeGlobalUsersAll,
|
|
},
|
|
}),
|
|
}
|
|
|
|
var provisioningAdminRole = RoleDTO{
|
|
Name: provisioningAdmin,
|
|
Version: 1,
|
|
Permissions: []Permission{
|
|
{
|
|
Action: ActionProvisioningReload,
|
|
Scope: ScopeServicesAll,
|
|
},
|
|
},
|
|
}
|
|
|
|
// FixedRoles provides a map of permission sets/roles which can be
|
|
// assigned to a set of users. When adding a new resource protected by
|
|
// Grafana access control the default permissions should be added to a
|
|
// new fixed role in this set so that users can access the new
|
|
// resource. FixedRoleGrants lists which built-in roles are
|
|
// assigned which fixed roles in this list.
|
|
var FixedRoles = map[string]RoleDTO{
|
|
usersAdminRead: usersAdminReadRole,
|
|
usersAdminEdit: usersAdminEditRole,
|
|
|
|
usersOrgRead: usersOrgReadRole,
|
|
usersOrgEdit: usersOrgEditRole,
|
|
|
|
ldapAdminRead: ldapAdminReadRole,
|
|
ldapAdminEdit: ldapAdminEditRole,
|
|
|
|
provisioningAdmin: provisioningAdminRole,
|
|
}
|
|
|
|
const (
|
|
usersAdminEdit = "fixed:users:admin:edit"
|
|
usersAdminRead = "fixed:users:admin:read"
|
|
|
|
usersOrgEdit = "fixed:users:org:edit"
|
|
usersOrgRead = "fixed:users:org:read"
|
|
|
|
ldapAdminEdit = "fixed:ldap:admin:edit"
|
|
ldapAdminRead = "fixed:ldap:admin:read"
|
|
|
|
provisioningAdmin = "fixed:provisioning:admin"
|
|
)
|
|
|
|
// FixedRoleGrants specifies which built-in roles are assigned
|
|
// to which set of FixedRoles by default. Alphabetically sorted.
|
|
var FixedRoleGrants = map[string][]string{
|
|
RoleGrafanaAdmin: {
|
|
ldapAdminEdit,
|
|
ldapAdminRead,
|
|
provisioningAdmin,
|
|
usersAdminEdit,
|
|
usersAdminRead,
|
|
usersOrgEdit,
|
|
usersOrgRead,
|
|
},
|
|
string(models.ROLE_ADMIN): {
|
|
usersOrgEdit,
|
|
usersOrgRead,
|
|
},
|
|
}
|
|
|
|
func ConcatPermissions(permissions ...[]Permission) []Permission {
|
|
if permissions == nil {
|
|
return nil
|
|
}
|
|
perms := make([]Permission, 0)
|
|
for _, p := range permissions {
|
|
pCopy := make([]Permission, 0, len(p))
|
|
copy(pCopy, p)
|
|
perms = append(perms, p...)
|
|
}
|
|
return perms
|
|
}
|