Files
planka/server/api/controllers/card-labels/create.js
2025-09-08 16:20:27 +02:00

150 lines
3.5 KiB
JavaScript
Executable File

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
/**
* @swagger
* /api/cards/{cardId}/labels:
* post:
* summary: Add label to card
* description: Adds a label to a card. Requires board editor permissions.
* tags:
* - Card Labels
* parameters:
* - name: cardId
* in: path
* required: true
* description: ID of the card to add the label to
* schema:
* type: string
* example: 1357158568008091264
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* required:
* - labelId
* properties:
* labelId:
* type: string
* description: ID of the label to add to the card
* example: 1357158568008091265
* responses:
* 200:
* description: Label added to card successfully
* content:
* application/json:
* schema:
* type: object
* required:
* - item
* properties:
* item:
* $ref: '#/components/schemas/CardLabel'
* 400:
* $ref: '#/components/responses/ValidationError'
* 401:
* $ref: '#/components/responses/Unauthorized'
* 403:
* $ref: '#/components/responses/Forbidden'
* 404:
* $ref: '#/components/responses/NotFound'
* 409:
* $ref: '#/components/responses/Conflict'
*/
const { idInput } = require('../../../utils/inputs');
const Errors = {
NOT_ENOUGH_RIGHTS: {
notEnoughRights: 'Not enough rights',
},
CARD_NOT_FOUND: {
cardNotFound: 'Card not found',
},
LABEL_NOT_FOUND: {
labelNotFound: 'Label not found',
},
LABEL_ALREADY_IN_CARD: {
labelAlreadyInCard: 'Label already in card',
},
};
module.exports = {
inputs: {
cardId: {
...idInput,
required: true,
},
labelId: {
...idInput,
required: true,
},
},
exits: {
notEnoughRights: {
responseType: 'forbidden',
},
cardNotFound: {
responseType: 'notFound',
},
labelNotFound: {
responseType: 'notFound',
},
labelAlreadyInCard: {
responseType: 'conflict',
},
},
async fn(inputs) {
const { currentUser } = this.req;
const { card, list, board, project } = await sails.helpers.cards
.getPathToProjectById(inputs.cardId)
.intercept('pathNotFound', () => Errors.CARD_NOT_FOUND);
const boardMembership = await BoardMembership.qm.getOneByBoardIdAndUserId(
board.id,
currentUser.id,
);
if (!boardMembership) {
throw Errors.CARD_NOT_FOUND; // Forbidden
}
if (boardMembership.role !== BoardMembership.Roles.EDITOR) {
throw Errors.NOT_ENOUGH_RIGHTS;
}
const label = await Label.qm.getOneById(inputs.labelId, {
boardId: board.id,
});
if (!label) {
throw Errors.LABEL_NOT_FOUND;
}
const cardLabel = await sails.helpers.cardLabels.createOne
.with({
project,
board,
list,
values: {
card,
label,
},
actorUser: currentUser,
request: this.req,
})
.intercept('labelAlreadyInCard', () => Errors.LABEL_ALREADY_IN_CARD);
return {
item: cardLabel,
};
},
};