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

123 lines
4.0 KiB
JavaScript
Raw Normal View History

2022-05-27 06:23:52 +00:00
const fs = require('fs-extra');
const path = require('path');
2022-06-01 05:57:32 +00:00
const UserError = require('vn-loopback/util/user-error');
2022-05-27 06:23:52 +00:00
2022-05-25 12:59:28 +00:00
module.exports = Self => {
Self.remoteMethodCtx('upload', {
2022-05-27 11:39:33 +00:00
description: 'Upload and attach a access file',
2022-05-25 12:59:28 +00:00
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
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;
}
2022-05-31 07:06:15 +00:00
let srcFile;
2022-05-27 06:23:52 +00:00
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];
2022-05-27 11:27:05 +00:00
2022-05-27 06:23:52 +00:00
const file = await TempContainer.getFile(tempContainer.name, uploadedFile.name);
2022-05-31 07:06:15 +00:00
srcFile = path.join(file.client.root, file.container, file.name);
2022-05-27 06:23:52 +00:00
2022-05-31 07:06:15 +00:00
const accessContainer = await AccessContainer.container('.archive');
const destinationFile = path.join(
accessContainer.client.root, accessContainer.name, appName, `${newVersion}.7z`);
2022-06-01 05:57:32 +00:00
if (process.env.NODE_ENV == 'test')
await fs.unlink(srcFile);
else {
2022-05-31 07:06:15 +00:00
await fs.move(srcFile, destinationFile, {
overwrite: true
});
await fs.chmod(destinationFile, 0o644);
2022-06-01 05:57:32 +00:00
const existBranch = await models.MdbBranch.findOne({
where: {name: branch}
});
if (!existBranch)
throw new UserError('Not exist this branch');
2022-05-31 07:06:15 +00:00
const branchPath = path.join(accessContainer.client.root, 'branches', branch);
await fs.mkdir(branchPath, {recursive: true});
const destinationBranch = path.join(branchPath, `${appName}.7z`);
const destinationRoot = path.join(accessContainer.client.root, `${appName}.7z`);
2022-08-05 11:24:48 +00:00
const destinationRelative = `../../.archive/${appName}/${newVersion}.7z`;
2022-05-31 07:06:15 +00:00
try {
await fs.unlink(destinationBranch);
} catch (e) {}
2022-08-05 11:24:48 +00:00
await fs.symlink(destinationRelative, destinationBranch);
2022-05-31 07:06:15 +00:00
if (branch == 'master') {
try {
await fs.unlink(destinationRoot);
} catch (e) {}
await fs.symlink(destinationFile, destinationRoot);
}
}
2022-05-27 06:23:52 +00:00
2022-06-01 05:57:32 +00:00
await models.MdbVersion.upsert({
app: appName,
branchFk: branch,
version: newVersion
});
2022-05-31 07:06:15 +00:00
2022-05-27 06:23:52 +00:00
if (tx) await tx.commit();
} catch (e) {
if (tx) await tx.rollback();
2022-05-31 07:06:15 +00:00
2022-06-01 05:57:32 +00:00
if (fs.existsSync(srcFile))
2022-05-31 07:06:15 +00:00
await fs.unlink(srcFile);
2022-05-27 06:23:52 +00:00
throw e;
}
2022-05-25 12:59:28 +00:00
};
};