1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/server/api/controllers/attachments/create.js

136 lines
3 KiB
JavaScript
Raw Normal View History

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
const { isUrl } = require('../../../utils/validators');
const { idInput } = require('../../../utils/inputs');
2020-04-21 05:04:34 +05:00
const Errors = {
NOT_ENOUGH_RIGHTS: {
notEnoughRights: 'Not enough rights',
},
2020-04-21 05:04:34 +05:00
CARD_NOT_FOUND: {
cardNotFound: 'Card not found',
},
NO_FILE_WAS_UPLOADED: {
noFileWasUploaded: 'No file was uploaded',
},
URL_MUST_BE_PRESENT: {
urlMustBePresent: 'Url must be present',
},
2020-04-21 05:04:34 +05:00
};
module.exports = {
inputs: {
cardId: {
...idInput,
required: true,
},
type: {
type: 'string',
isIn: Object.values(Attachment.Types),
required: true,
},
url: {
2020-04-21 05:04:34 +05:00
type: 'string',
maxLength: 2048,
custom: isUrl,
},
name: {
type: 'string',
maxLength: 128,
2020-04-21 05:04:34 +05:00
required: true,
},
2020-04-23 05:56:02 +05:00
requestId: {
type: 'string',
isNotEmptyString: true,
maxLength: 128,
2020-04-23 05:56:02 +05:00
},
2020-04-21 05:04:34 +05:00
},
exits: {
notEnoughRights: {
responseType: 'forbidden',
},
2020-04-21 05:04:34 +05:00
cardNotFound: {
responseType: 'notFound',
},
noFileWasUploaded: {
responseType: 'unprocessableEntity',
},
2020-04-21 05:04:34 +05:00
uploadError: {
responseType: 'unprocessableEntity',
},
urlMustBePresent: {
responseType: 'unprocessableEntity',
},
2020-04-21 05:04:34 +05:00
},
async fn(inputs, exits) {
const { currentUser } = this.req;
const { card, list, board, project } = await sails.helpers.cards
.getPathToProjectById(inputs.cardId)
2020-04-21 05:04:34 +05:00
.intercept('pathNotFound', () => Errors.CARD_NOT_FOUND);
const boardMembership = await BoardMembership.qm.getOneByBoardIdAndUserId(
board.id,
currentUser.id,
);
2020-04-21 05:04:34 +05:00
if (!boardMembership) {
2020-04-21 05:04:34 +05:00
throw Errors.CARD_NOT_FOUND; // Forbidden
}
if (boardMembership.role !== BoardMembership.Roles.EDITOR) {
throw Errors.NOT_ENOUGH_RIGHTS;
}
let data;
if (inputs.type === Attachment.Types.FILE) {
let files;
try {
files = await sails.helpers.utils.receiveFile('file', this.req);
} catch (error) {
return exits.uploadError(error.message); // TODO: add error
}
if (files.length === 0) {
throw Errors.NO_FILE_WAS_UPLOADED;
}
const file = _.last(files);
data = await sails.helpers.attachments.processUploadedFile(file);
} else if (inputs.type === Attachment.Types.LINK) {
if (!inputs.url) {
throw Errors.URL_MUST_BE_PRESENT;
}
2020-04-21 05:04:34 +05:00
data = await sails.helpers.attachments.processLink(inputs.url);
}
2020-04-21 05:04:34 +05:00
const values = {
..._.pick(inputs, ['type', 'name']),
data,
};
2020-04-21 05:04:34 +05:00
2022-12-26 21:10:50 +01:00
const attachment = await sails.helpers.attachments.createOne.with({
project,
board,
list,
2022-12-26 21:10:50 +01:00
values: {
...values,
2022-12-26 21:10:50 +01:00
card,
creatorUser: currentUser,
},
requestId: inputs.requestId,
request: this.req,
});
2020-04-21 05:04:34 +05:00
return exits.success({
item: sails.helpers.attachments.presentOne(attachment),
});
2020-04-21 05:04:34 +05:00
},
};