Files
planka/server/api/controllers/base-custom-field-groups/delete.js

98 lines
2.5 KiB
JavaScript
Raw Normal View History

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
2025-09-08 16:20:27 +02:00
/**
* @swagger
* /base-custom-field-groups/{id}:
2025-09-08 16:20:27 +02:00
* delete:
* summary: Delete base custom field group
* description: Deletes a base custom field group. Requires project manager permissions.
* tags:
* - Base Custom Field Groups
* parameters:
* - name: id
* in: path
* required: true
* description: ID of the base custom field group to delete
* schema:
* type: string
* example: 1357158568008091264
* responses:
* 200:
* description: Base custom field group deleted successfully
* content:
* application/json:
* schema:
* type: object
* required:
* - item
* properties:
* item:
* $ref: '#/components/schemas/BaseCustomFieldGroup'
* 400:
* $ref: '#/components/responses/ValidationError'
* 401:
* $ref: '#/components/responses/Unauthorized'
* 403:
* $ref: '#/components/responses/Forbidden'
* 404:
* $ref: '#/components/responses/NotFound'
*/
const { idInput } = require('../../../utils/inputs');
const Errors = {
BASE_CUSTOM_FIELD_GROUP_NOT_FOUND: {
baseCustomFieldGroupNotFound: 'Base custom field group not found',
},
};
module.exports = {
inputs: {
id: {
...idInput,
required: true,
},
},
exits: {
baseCustomFieldGroupNotFound: {
responseType: 'notFound',
},
},
async fn(inputs) {
const { currentUser } = this.req;
const pathToProject = await sails.helpers.baseCustomFieldGroups
.getPathToProjectById(inputs.id)
.intercept('pathNotFound', () => Errors.BASE_CUSTOM_FIELD_GROUP_NOT_FOUND);
let { baseCustomFieldGroup } = pathToProject;
const { project } = pathToProject;
const isProjectManager = await sails.helpers.users.isProjectManager(currentUser.id, project.id);
if (!isProjectManager) {
throw Errors.BASE_CUSTOM_FIELD_GROUP_NOT_FOUND; // Forbidden
}
baseCustomFieldGroup = await sails.helpers.baseCustomFieldGroups.deleteOne.with({
project,
record: baseCustomFieldGroup,
actorUser: currentUser,
request: this.req,
});
if (!baseCustomFieldGroup) {
throw Errors.BASE_CUSTOM_FIELD_GROUP_NOT_FOUND;
}
return {
item: baseCustomFieldGroup,
};
},
};