This commit is contained in:
parent
1336bf092d
commit
a89f00b463
|
@ -69,12 +69,22 @@ module.exports = Self => {
|
|||
if (!hasWriteRole)
|
||||
throw new UserError(`You don't have enough privileges`);
|
||||
|
||||
// Create final folder if not exists
|
||||
const dmsType = await models.DmsType.findById(args.dmsTypeId);
|
||||
await models.Container.getContainer(dmsType.path).catch(async err => {
|
||||
if (err.code === 'ENOENT') {
|
||||
await models.Container.createContainer({
|
||||
name: dmsType.path
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Upload file to temporary path
|
||||
const uploaded = await models.Container.upload('temp', ctx.req, ctx.result, fileOptions);
|
||||
const files = Object.values(uploaded.files).map(file => {
|
||||
return file[0];
|
||||
});
|
||||
|
||||
const dmsType = await models.DmsType.findById(args.dmsTypeId);
|
||||
const promises = [];
|
||||
|
||||
files.forEach(file => {
|
||||
|
|
Loading…
Reference in New Issue