salix/back/methods/dms/uploadFile.js

140 lines
4.4 KiB
JavaScript
Raw Normal View History

const UserError = require('vn-loopback/util/user-error');
const fs = require('fs-extra');
module.exports = Self => {
Self.remoteMethodCtx('uploadFile', {
description: 'Uploads a file and inserts into dms model',
accessType: 'WRITE',
2019-06-13 07:21:36 +00:00
accepts: [
{
arg: 'warehouseId',
type: 'Number',
2019-07-15 09:40:11 +00:00
description: 'The warehouse id'
2019-06-13 07:21:36 +00:00
}, {
arg: 'companyId',
type: 'Number',
2019-07-15 09:40:11 +00:00
description: 'The company id'
2019-06-13 07:21:36 +00:00
}, {
arg: 'dmsTypeId',
type: 'Number',
2019-07-15 09:40:11 +00:00
description: 'The dms type id'
2019-06-13 07:21:36 +00:00
}, {
arg: 'reference',
2019-07-15 09:40:11 +00:00
type: 'String'
2019-06-13 07:21:36 +00:00
}, {
arg: 'description',
2019-07-15 09:40:11 +00:00
type: 'String'
2019-06-13 07:21:36 +00:00
}, {
arg: 'hasFile',
type: 'Boolean',
2019-07-15 09:40:11 +00:00
description: 'True if has an attached file'
}],
returns: {
type: 'Object',
root: true
},
http: {
path: `/uploadFile`,
verb: 'POST'
}
});
2019-06-20 07:23:55 +00:00
Self.uploadFile = async(ctx, options) => {
const storageConnector = Self.app.dataSources.storage.connector;
const models = Self.app.models;
const fileOptions = {};
const args = ctx.args;
2019-06-13 07:21:36 +00:00
let tx;
2019-06-20 07:23:55 +00:00
let myOptions = {};
2019-06-13 07:21:36 +00:00
if (typeof options == 'object')
2019-06-20 07:23:55 +00:00
Object.assign(myOptions, options);
2019-06-13 07:21:36 +00:00
2019-06-20 07:23:55 +00:00
if (!myOptions.transaction) {
2019-06-13 07:21:36 +00:00
tx = await Self.beginTransaction({});
2019-06-20 07:23:55 +00:00
myOptions.transaction = tx;
2019-06-13 07:21:36 +00:00
}
try {
const hasWriteRole = await models.DmsType.hasWriteRole(ctx, args.dmsTypeId);
if (!hasWriteRole)
throw new UserError(`You don't have enough privileges`);
2019-06-19 05:36:36 +00:00
// Upload file to temporary path
const tempContainer = await getContainer('temp');
const uploaded = await models.Container.upload(tempContainer.name, ctx.req, ctx.result, fileOptions);
const files = Object.values(uploaded.files).map(file => {
return file[0];
});
const addedDms = [];
for (const file of files) {
2019-06-20 07:23:55 +00:00
const newDms = await createDms(ctx, file.name, myOptions);
const pathHash = storageConnector.getPathHash(newDms.id);
const container = await getContainer(pathHash);
const originPath = `${tempContainer.client.root}/${tempContainer.name}/${file.name}`;
const destinationPath = `${container.client.root}/${pathHash}/${newDms.file}`;
fs.rename(originPath, destinationPath);
addedDms.push(newDms);
}
2019-06-13 07:21:36 +00:00
if (tx) await tx.commit();
return addedDms;
} catch (e) {
2019-06-13 07:21:36 +00:00
if (tx) await tx.rollback();
throw e;
}
};
2019-06-20 07:23:55 +00:00
async function createDms(ctx, fileName, myOptions) {
const models = Self.app.models;
const storageConnector = Self.app.dataSources.storage.connector;
const myUserId = ctx.req.accessToken.userId;
const myWorker = await models.Worker.findOne({where: {userFk: myUserId}});
const args = ctx.args;
const newDms = await Self.create({
workerFk: myWorker.id,
dmsTypeFk: args.dmsTypeId,
companyFk: args.companyId,
warehouseFk: args.warehouseId,
reference: args.reference,
description: args.description,
hasFile: args.hasFile
2019-06-20 07:23:55 +00:00
}, myOptions);
const extension = storageConnector.getFileExtension(fileName);
fileName = `${newDms.id}.${extension}`;
2019-06-20 07:23:55 +00:00
return newDms.updateAttribute('file', fileName, myOptions);
}
/**
* Returns a container instance
* If doesn't exists creates a new one
*
* @param {String} name Container name
* @return {Object} Container instance
*/
async function getContainer(name) {
const models = Self.app.models;
let container;
try {
container = await models.Container.getContainer(name);
} catch (err) {
if (err.code === 'ENOENT') {
container = await models.Container.createContainer({
name: name
});
} else throw err;
}
return container;
}
};