salix/modules/mdb/back/methods/mdbVersion/upload.js

85 lines
2.5 KiB
JavaScript
Raw Normal View History

2022-05-27 06:23:52 +00:00
const fs = require('fs-extra');
const path = require('path');
2022-05-25 12:59:28 +00:00
module.exports = Self => {
Self.remoteMethodCtx('upload', {
description: 'Returns a list of tag values',
accepts: [
{
arg: 'appName',
type: 'string',
required: true,
description: 'The app name'
},
{
arg: 'newVersion',
type: 'number',
required: true,
description: `The new version number`
},
{
arg: 'branch',
type: 'string',
required: true,
description: `The branch name`
}
],
returns: {
type: ['object'],
root: true
},
http: {
path: `/upload`,
verb: 'POST'
}
});
Self.upload = async(ctx, appName, newVersion, branch, options) => {
const models = Self.app.models;
const myOptions = {};
2022-05-27 06:23:52 +00:00
console.log(ctx);
const TempContainer = models.TempContainer;
const AccessContainer = models.AccessContainer;
const fileOptions = {};
2022-05-25 12:59:28 +00:00
2022-05-27 06:23:52 +00:00
let tx;
2022-05-25 12:59:28 +00:00
if (typeof options == 'object')
Object.assign(myOptions, options);
2022-05-27 06:23:52 +00:00
if (!myOptions.transaction) {
tx = await Self.beginTransaction({});
myOptions.transaction = tx;
}
try {
const tempContainer = await TempContainer.container('access');
const uploaded = await TempContainer.upload(tempContainer.name, ctx.req, ctx.result, fileOptions);
const files = Object.values(uploaded.files).map(file => {
return file[0];
});
const uploadedFile = files[0];
const file = await TempContainer.getFile(tempContainer.name, uploadedFile.name);
const srcFile = path.join(file.client.root, file.container, file.name);
const accessContainer = await AccessContainer.container(branch);
const destinationFile = path.join(accessContainer.client.root, branch, `${appName}${newVersion}.7z`);
await fs.move(srcFile, destinationFile, {
overwrite: true
});
await models.MdbVersion.create({
app: appName,
version: newVersion,
branchFk: branch
}, myOptions);
if (tx) await tx.commit();
} catch (e) {
if (tx) await tx.rollback();
throw e;
}
2022-05-25 12:59:28 +00:00
};
};