const Errors = { NOT_ENOUGH_RIGHTS: { notEnoughRights: 'Not enough rights', }, BOARD_NOT_FOUND: { boardNotFound: 'Board not found', }, }; module.exports = { inputs: { boardId: { type: 'string', regex: /^[0-9]+$/, required: true, }, position: { type: 'number', required: true, }, name: { type: 'string', isNotEmptyString: true, 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 .getProjectPath(inputs.boardId) .intercept('pathNotFound', () => Errors.BOARD_NOT_FOUND); const boardMembership = await BoardMembership.findOne({ boardId: board.id, userId: 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, }; }, };