mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* remove fallback from backend * add: displayname logic to frontend * Update public/app/core/components/RolePicker/utils.ts Co-authored-by: Alexander Zobnin <alexanderzobnin@gmail.com> * add: fetchTeamRoles and return earlier * refactor: change to const --------- Co-authored-by: Alexander Zobnin <alexanderzobnin@gmail.com>
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import { getBackendSrv, isFetchError } from '@grafana/runtime';
|
|
import { Role } from 'app/types';
|
|
|
|
import { addDisplayNameForFixedRole } from './utils';
|
|
|
|
export const fetchRoleOptions = async (orgId?: number, query?: string): Promise<Role[]> => {
|
|
let rolesUrl = '/api/access-control/roles?delegatable=true';
|
|
if (orgId) {
|
|
rolesUrl += `&targetOrgId=${orgId}`;
|
|
}
|
|
const roles = await getBackendSrv().get(rolesUrl);
|
|
if (!roles || !roles.length) {
|
|
return [];
|
|
}
|
|
return roles.map(addDisplayNameForFixedRole);
|
|
};
|
|
|
|
export const fetchUserRoles = async (userId: number, orgId?: number): Promise<Role[]> => {
|
|
let userRolesUrl = `/api/access-control/users/${userId}/roles`;
|
|
if (orgId) {
|
|
userRolesUrl += `?targetOrgId=${orgId}`;
|
|
}
|
|
try {
|
|
const roles = await getBackendSrv().get(userRolesUrl);
|
|
if (!roles || !roles.length) {
|
|
return [];
|
|
}
|
|
return roles.map(addDisplayNameForFixedRole);
|
|
} catch (error) {
|
|
if (isFetchError(error)) {
|
|
error.isHandled = true;
|
|
}
|
|
return [];
|
|
}
|
|
};
|
|
|
|
export const updateUserRoles = (roles: Role[], userId: number, orgId?: number) => {
|
|
let userRolesUrl = `/api/access-control/users/${userId}/roles`;
|
|
if (orgId) {
|
|
userRolesUrl += `?targetOrgId=${orgId}`;
|
|
}
|
|
const roleUids = roles.flatMap((x) => x.uid);
|
|
return getBackendSrv().put(userRolesUrl, {
|
|
orgId,
|
|
roleUids,
|
|
});
|
|
};
|
|
|
|
export const fetchTeamRoles = async (teamId: number, orgId?: number): Promise<Role[]> => {
|
|
let teamRolesUrl = `/api/access-control/teams/${teamId}/roles`;
|
|
if (orgId) {
|
|
teamRolesUrl += `?targetOrgId=${orgId}`;
|
|
}
|
|
try {
|
|
const roles = await getBackendSrv().get(teamRolesUrl);
|
|
if (!roles || !roles.length) {
|
|
return [];
|
|
}
|
|
return roles.map(addDisplayNameForFixedRole);
|
|
} catch (error) {
|
|
if (isFetchError(error)) {
|
|
error.isHandled = true;
|
|
}
|
|
return [];
|
|
}
|
|
};
|
|
|
|
export const updateTeamRoles = (roles: Role[], teamId: number, orgId?: number) => {
|
|
let teamRolesUrl = `/api/access-control/teams/${teamId}/roles`;
|
|
if (orgId) {
|
|
teamRolesUrl += `?targetOrgId=${orgId}`;
|
|
}
|
|
const roleUids = roles.flatMap((x) => x.uid);
|
|
|
|
return getBackendSrv().put(teamRolesUrl, {
|
|
orgId,
|
|
roleUids,
|
|
});
|
|
};
|