mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
68 lines
1.5 KiB
JavaScript
Executable file
68 lines
1.5 KiB
JavaScript
Executable file
const services = require('../../services/custom');
|
|
|
|
const Errors = {
|
|
NOT_ENOUGH_RIGHTS: {
|
|
notEnoughRights: 'Not enough rights',
|
|
},
|
|
CARD_NOT_FOUND: {
|
|
cardNotFound: 'Card not found',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
id: {
|
|
type: 'string',
|
|
regex: /^[0-9]+$/,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
notEnoughRights: {
|
|
responseType: 'forbidden',
|
|
},
|
|
cardNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { currentUser } = this.req;
|
|
|
|
let { card } = await sails.helpers.cards
|
|
.getProjectPath(inputs.id)
|
|
.intercept('pathNotFound', () => Errors.CARD_NOT_FOUND);
|
|
|
|
const boardMembership = await BoardMembership.findOne({
|
|
boardId: card.boardId,
|
|
userId: currentUser.id,
|
|
});
|
|
|
|
if (!boardMembership) {
|
|
throw Errors.CARD_NOT_FOUND; // Forbidden
|
|
}
|
|
|
|
if (boardMembership.role !== BoardMembership.Roles.EDITOR) {
|
|
throw Errors.NOT_ENOUGH_RIGHTS;
|
|
}
|
|
|
|
card = await sails.helpers.cards.deleteOne.with({
|
|
record: card,
|
|
request: this.req,
|
|
});
|
|
|
|
if (!card) {
|
|
throw Errors.CARD_NOT_FOUND;
|
|
}
|
|
|
|
const messageText = '*' + card.name + '* was deleted by ' + currentUser.username;
|
|
services.sendSlackMessage(messageText)
|
|
.then(() => { console.log('Slack message sent successfully.'); })
|
|
.catch((error) => { console.error('Failed to send Slack message:', error.message); });
|
|
|
|
return {
|
|
item: card,
|
|
};
|
|
},
|
|
};
|