mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
93 lines
2.3 KiB
JavaScript
93 lines
2.3 KiB
JavaScript
/*!
|
|
* 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 = {
|
|
FILE_ATTACHMENT_NOT_FOUND: {
|
|
fileAttachmentNotFound: 'File attachment not found',
|
|
},
|
|
};
|
|
|
|
const FILE_NAMES = ['outside-360', 'outside-720'];
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
id: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
fileName: {
|
|
type: 'string',
|
|
isIn: FILE_NAMES,
|
|
required: true,
|
|
},
|
|
fileExtension: {
|
|
type: 'string',
|
|
maxLength: 128, // TODO: unnecessary?
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
fileAttachmentNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
async fn(inputs, exits) {
|
|
const { currentUser } = this.req;
|
|
|
|
const { attachment, board, project } = await sails.helpers.attachments
|
|
.getPathToProjectById(inputs.id)
|
|
.intercept('pathNotFound', () => Errors.FILE_ATTACHMENT_NOT_FOUND);
|
|
|
|
if (attachment.type !== Attachment.Types.FILE) {
|
|
throw Errors.FILE_ATTACHMENT_NOT_FOUND;
|
|
}
|
|
|
|
if (!attachment.data.image) {
|
|
throw Errors.FILE_ATTACHMENT_NOT_FOUND;
|
|
}
|
|
|
|
if (inputs.fileExtension !== attachment.data.image.thumbnailsExtension) {
|
|
throw Errors.FILE_ATTACHMENT_NOT_FOUND;
|
|
}
|
|
|
|
if (currentUser.role !== User.Roles.ADMIN || project.ownerProjectManagerId) {
|
|
const isProjectManager = await sails.helpers.users.isProjectManager(
|
|
currentUser.id,
|
|
project.id,
|
|
);
|
|
|
|
if (!isProjectManager) {
|
|
const boardMembership = await BoardMembership.qm.getOneByBoardIdAndUserId(
|
|
board.id,
|
|
currentUser.id,
|
|
);
|
|
|
|
if (!boardMembership) {
|
|
throw Errors.FILE_ATTACHMENT_NOT_FOUND; // Forbidden
|
|
}
|
|
}
|
|
}
|
|
|
|
const fileManager = sails.hooks['file-manager'].getInstance();
|
|
|
|
let readStream;
|
|
try {
|
|
readStream = await fileManager.read(
|
|
`${sails.config.custom.attachmentsPathSegment}/${attachment.data.fileReferenceId}/thumbnails/${inputs.fileName}.${inputs.fileExtension}`,
|
|
);
|
|
} catch (error) {
|
|
throw Errors.FILE_ATTACHMENT_NOT_FOUND;
|
|
}
|
|
|
|
this.res.type(attachment.data.mimeType);
|
|
this.res.set('Cache-Control', 'private, max-age=900'); // TODO: move to config
|
|
|
|
return exits.success(readStream);
|
|
},
|
|
};
|