mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
86 lines
1.7 KiB
JavaScript
Executable file
86 lines
1.7 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
|
|
*/
|
|
|
|
const { idInput } = require('../../../utils/inputs');
|
|
|
|
const Errors = {
|
|
NOT_ENOUGH_RIGHTS: {
|
|
notEnoughRights: 'Not enough rights',
|
|
},
|
|
BOARD_NOT_FOUND: {
|
|
boardNotFound: 'Board not found',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
boardId: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
position: {
|
|
type: 'number',
|
|
min: 0,
|
|
required: true,
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
isNotEmptyString: true,
|
|
maxLength: 128,
|
|
allowNull: true,
|
|
},
|
|
color: {
|
|
type: 'string',
|
|
isIn: Label.COLORS,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
notEnoughRights: {
|
|
responseType: 'forbidden',
|
|
},
|
|
boardNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { currentUser } = this.req;
|
|
|
|
const { board, project } = await sails.helpers.boards
|
|
.getPathToProjectById(inputs.boardId)
|
|
.intercept('pathNotFound', () => Errors.BOARD_NOT_FOUND);
|
|
|
|
const boardMembership = await BoardMembership.qm.getOneByBoardIdAndUserId(
|
|
board.id,
|
|
currentUser.id,
|
|
);
|
|
|
|
if (!boardMembership) {
|
|
throw Errors.BOARD_NOT_FOUND; // Forbidden
|
|
}
|
|
|
|
if (boardMembership.role !== BoardMembership.Roles.EDITOR) {
|
|
throw Errors.NOT_ENOUGH_RIGHTS;
|
|
}
|
|
|
|
const values = _.pick(inputs, ['position', 'name', 'color']);
|
|
|
|
const label = await sails.helpers.labels.createOne.with({
|
|
project,
|
|
values: {
|
|
...values,
|
|
board,
|
|
},
|
|
actorUser: currentUser,
|
|
request: this.req,
|
|
});
|
|
|
|
return {
|
|
item: label,
|
|
};
|
|
},
|
|
};
|