salix/back/methods/image/upload.js

71 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-11-27 12:10:39 +00:00
const UserError = require('vn-loopback/util/user-error');
const fs = require('fs-extra');
2020-12-18 16:23:04 +00:00
const path = require('path');
2020-11-27 12:10:39 +00:00
module.exports = Self => {
Self.remoteMethodCtx('upload', {
description: 'Uploads a file and inserts into dms model',
accessType: 'WRITE',
accepts: [
{
arg: 'id',
type: 'Number',
description: 'The entity id',
required: true
},
{
arg: 'collection',
type: 'string',
description: 'The collection name',
required: true
2020-12-18 16:23:04 +00:00
},
{
arg: 'fileName',
type: 'string',
description: 'The file name',
required: true
2020-11-27 12:10:39 +00:00
}],
returns: {
type: 'Object',
root: true
},
http: {
path: `/upload`,
verb: 'POST'
}
});
Self.upload = async ctx => {
const models = Self.app.models;
2020-12-18 16:23:04 +00:00
const TempContainer = models.TempContainer;
2020-11-27 12:10:39 +00:00
const fileOptions = {};
const args = ctx.args;
2020-12-18 16:23:04 +00:00
let srcFile;
try {
const hasWriteRole = await models.ImageCollection.hasWriteRole(ctx, args.collection);
if (!hasWriteRole)
throw new UserError(`You don't have enough privileges`);
2020-11-27 12:10:39 +00:00
2020-12-18 16:23:04 +00:00
if (process.env.NODE_ENV == 'test')
2021-03-15 12:43:22 +00:00
throw new UserError(`Action not allowed on the test environment`);
2020-11-27 12:10:39 +00:00
2020-12-18 16:23:04 +00:00
// Upload file to temporary path
const tempContainer = await TempContainer.container(args.collection);
const uploaded = await TempContainer.upload(tempContainer.name, ctx.req, ctx.result, fileOptions);
const [uploadedFile] = Object.values(uploaded.files).map(file => {
return file[0];
});
const file = await TempContainer.getFile(tempContainer.name, uploadedFile.name);
srcFile = path.join(file.client.root, file.container, file.name);
2020-11-27 12:10:39 +00:00
2020-12-18 16:23:04 +00:00
await models.Image.registerImage(args.collection, srcFile, args.fileName, args.id);
} catch (e) {
if (fs.existsSync(srcFile))
await fs.unlink(srcFile);
2020-11-27 12:10:39 +00:00
2020-12-18 16:23:04 +00:00
throw e;
}
};
2020-11-27 12:10:39 +00:00
};