Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/strapi-admin/ee/controllers/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict';
const { yup, formatYupErrors } = require('strapi-utils');
const {
validateRoleCreateInput,
validateRoleDeleteInput,
validateRolesDeleteInput,
} = require('../validation/role');
const { getService } = require('../../utils');
const { validatedUpdatePermissionsInput } = require('../validation/permission');
const { SUPER_ADMIN_CODE } = require('../../services/constants');
module.exports = {
/**
* Create a new role
* @param {KoaContext} ctx - koa context
*/
async create(ctx) {
try {
await validateRoleCreateInput(ctx.request.body);
} catch (err) {
return ctx.badRequest('ValidationError', err);
}
const roleService = getService('role');
const role = await roleService.create(ctx.request.body);
const sanitizedRole = roleService.sanitizeRole(role);
ctx.created({ data: sanitizedRole });
},
/**
* Delete a role
* @param {KoaContext} ctx - koa context
*/
async deleteOne(ctx) {
const { id } = ctx.params;
try {
await validateRoleDeleteInput(id);
} catch (err) {
return ctx.badRequest('ValidationError', err);
}
const roleService = getService('role');
const roles = await roleService.deleteByIds([id]);
const sanitizedRole = roles.map(roleService.sanitizeRole)[0] || null;
return ctx.deleted({
data: sanitizedRole,
});
},
/**
* delete several roles
* @param {KoaContext} ctx - koa context
*/
async deleteMany(ctx) {
const { body } = ctx.request;
try {
await validateRolesDeleteInput(body);
} catch (err) {
return ctx.badRequest('ValidationError', err);
}
const roleService = getService('role');
const roles = await roleService.deleteByIds(body.ids);
const sanitizedRoles = roles.map(roleService.sanitizeRole);
return ctx.deleted({
data: sanitizedRoles,
});
},
/**
* Updates the permissions assigned to a role
* @param {KoaContext} ctx - koa context
*/
async updatePermissions(ctx) {
const { id } = ctx.params;
const { body: input } = ctx.request;
const roleService = getService('role');
const permissionService = getService('permission');
const role = await roleService.findOne({ id });
if (!role) {
return ctx.notFound('role.notFound');
}
try {
if (role.code === SUPER_ADMIN_CODE) {
throw formatYupErrors(new yup.ValidationError("Super admin permissions can't be edited."));
}
await validatedUpdatePermissionsInput(input);
} catch (err) {
return ctx.badRequest('ValidationError', err);
}
if (!role) {
return ctx.notFound('role.notFound');
}
const permissions = await roleService.assignPermissions(role.id, input.permissions);
const sanitizedPermissions = permissions.map(permissionService.sanitizePermission);
ctx.body = {
data: sanitizedPermissions,
};
},
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0049 ]-- |