mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
91 lines
1.9 KiB
JavaScript
Executable file
91 lines
1.9 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',
|
|
},
|
|
CARD_NOT_FOUND: {
|
|
cardNotFound: 'Card not found',
|
|
},
|
|
USER_NOT_CARD_MEMBER: {
|
|
userNotCardMember: 'User not card member',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
cardId: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
userId: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
notEnoughRights: {
|
|
responseType: 'forbidden',
|
|
},
|
|
cardNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
userNotCardMember: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
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;
|
|
}
|
|
|
|
let cardMembership = await CardMembership.qm.getOneByCardIdAndUserId(
|
|
inputs.cardId,
|
|
inputs.userId,
|
|
);
|
|
|
|
if (!cardMembership) {
|
|
throw Errors.USER_NOT_CARD_MEMBER;
|
|
}
|
|
|
|
cardMembership = await sails.helpers.cardMemberships.deleteOne.with({
|
|
project,
|
|
board,
|
|
list,
|
|
card,
|
|
record: cardMembership,
|
|
actorUser: currentUser,
|
|
request: this.req,
|
|
});
|
|
|
|
if (!cardMembership) {
|
|
throw Errors.USER_NOT_CARD_MEMBER;
|
|
}
|
|
|
|
return {
|
|
item: cardMembership,
|
|
};
|
|
},
|
|
};
|