mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
124 lines
2.7 KiB
JavaScript
Executable file
124 lines
2.7 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 = {
|
|
PROJECT_NOT_FOUND: {
|
|
projectNotFound: 'Project not found',
|
|
},
|
|
NO_IMPORT_FILE_WAS_UPLOADED: {
|
|
noImportFileWasUploaded: 'No import file was uploaded',
|
|
},
|
|
INVALID_IMPORT_FILE: {
|
|
invalidImportFile: 'Invalid import file',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
projectId: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
position: {
|
|
type: 'number',
|
|
min: 0,
|
|
required: true,
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
maxLength: 128,
|
|
required: true,
|
|
},
|
|
importType: {
|
|
type: 'string',
|
|
isIn: Object.values(Board.ImportTypes),
|
|
},
|
|
requestId: {
|
|
type: 'string',
|
|
isNotEmptyString: true,
|
|
maxLength: 128,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
projectNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
noImportFileWasUploaded: {
|
|
responseType: 'unprocessableEntity',
|
|
},
|
|
invalidImportFile: {
|
|
responseType: 'unprocessableEntity',
|
|
},
|
|
uploadError: {
|
|
responseType: 'unprocessableEntity',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { currentUser } = this.req;
|
|
|
|
const project = await Project.qm.getOneById(inputs.projectId);
|
|
|
|
if (!project) {
|
|
throw Errors.PROJECT_NOT_FOUND;
|
|
}
|
|
|
|
const isProjectManager = await sails.helpers.users.isProjectManager(currentUser.id, project.id);
|
|
|
|
if (!isProjectManager) {
|
|
throw Errors.PROJECT_NOT_FOUND; // Forbidden
|
|
}
|
|
|
|
let boardImport;
|
|
if (inputs.importType) {
|
|
let files;
|
|
try {
|
|
files = await sails.helpers.utils.receiveFile('importFile', this.req);
|
|
} catch (error) {
|
|
return exits.uploadError(error.message); // TODO: add error
|
|
}
|
|
|
|
if (files.length === 0) {
|
|
throw Errors.NO_IMPORT_FILE_WAS_UPLOADED;
|
|
}
|
|
|
|
const file = _.last(files);
|
|
|
|
if (inputs.importType === Board.ImportTypes.TRELLO) {
|
|
const trelloBoard = await sails.helpers.boards
|
|
.processUploadedTrelloImportFile(file)
|
|
.intercept('invalidFile', () => Errors.INVALID_IMPORT_FILE);
|
|
|
|
boardImport = {
|
|
type: inputs.importType,
|
|
board: trelloBoard,
|
|
};
|
|
}
|
|
}
|
|
|
|
const values = _.pick(inputs, ['position', 'name']);
|
|
|
|
const { board, boardMembership } = await sails.helpers.boards.createOne.with({
|
|
values: {
|
|
...values,
|
|
project,
|
|
},
|
|
import: boardImport,
|
|
actorUser: currentUser,
|
|
requestId: inputs.requestId,
|
|
request: this.req,
|
|
});
|
|
|
|
return {
|
|
item: board,
|
|
included: {
|
|
boardMemberships: [boardMembership],
|
|
},
|
|
};
|
|
},
|
|
};
|