/*! * Copyright (c) 2024 PLANKA Software GmbH * Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md */ /** * @swagger * /labels/{id}: * delete: * summary: Delete label * description: Deletes a label. Requires board editor permissions. * tags: * - Labels * operationId: deleteLabel * parameters: * - name: id * in: path * required: true * description: ID of the label to delete * schema: * type: string * example: "1357158568008091264" * responses: * 200: * description: Label deleted successfully * content: * application/json: * schema: * type: object * required: * - item * properties: * item: * $ref: '#/components/schemas/Label' * 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 = { NOT_ENOUGH_RIGHTS: { notEnoughRights: 'Not enough rights', }, LABEL_NOT_FOUND: { labelNotFound: 'Label not found', }, }; module.exports = { inputs: { id: { ...idInput, required: true, }, }, exits: { notEnoughRights: { responseType: 'forbidden', }, labelNotFound: { responseType: 'notFound', }, }, async fn(inputs) { const { currentUser } = this.req; const pathToProject = await sails.helpers.labels .getPathToProjectById(inputs.id) .intercept('pathNotFound', () => Errors.LABEL_NOT_FOUND); let { label } = pathToProject; const { board, project } = pathToProject; const boardMembership = await BoardMembership.qm.getOneByBoardIdAndUserId( board.id, currentUser.id, ); if (!boardMembership) { throw Errors.LABEL_NOT_FOUND; // Forbidden } if (boardMembership.role !== BoardMembership.Roles.EDITOR) { throw Errors.NOT_ENOUGH_RIGHTS; } label = await sails.helpers.labels.deleteOne.with({ project, board, record: label, actorUser: currentUser, request: this.req, }); if (!label) { throw Errors.LABEL_NOT_FOUND; } return { item: label, }; }, };