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'
|
2022-12-19 06:26:07 +00:00
|
|
|
}, {
|
2022-12-22 06:12:09 +00:00
|
|
|
arg: 'toVersion',
|
2022-05-25 12:59:28 +00:00
|
|
|
type: 'number',
|
|
|
|
required: true,
|
|
|
|
description: `The new version number`
|
2022-12-19 06:26:07 +00:00
|
|
|
}, {
|
2022-05-25 12:59:28 +00:00
|
|
|
arg: 'branch',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
description: `The branch name`
|
2022-12-22 06:12:09 +00:00
|
|
|
}, {
|
|
|
|
arg: 'fromVersion',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
description: `The old version number`
|
2022-05-25 12:59:28 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
returns: {
|
|
|
|
type: ['object'],
|
|
|
|
root: true
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
path: `/upload`,
|
|
|
|
verb: 'POST'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-12-22 06:12:09 +00:00
|
|
|
Self.upload = async(ctx, appName, toVersion, branch, fromVersion, options) => {
|
2022-05-25 12:59:28 +00:00
|
|
|
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 = {};
|
|
|
|
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 {
|
2022-12-22 06:12:09 +00:00
|
|
|
const existBranch = await models.MdbBranch.findOne({
|
|
|
|
where: {name: branch}
|
|
|
|
}, myOptions);
|
|
|
|
|
|
|
|
if (!existBranch)
|
|
|
|
throw new UserError('Not exist this branch');
|
|
|
|
|
|
|
|
let lastVersion = await models.MdbBranch.findOne({
|
|
|
|
where: {appName}
|
|
|
|
}, myOptions);
|
|
|
|
|
|
|
|
if (lastVersion++ != toVersion)
|
|
|
|
throw new UserError('Try again');
|
|
|
|
|
|
|
|
const userId = ctx.req.accessToken.userId;
|
|
|
|
models.MdbVersionTree.create({
|
|
|
|
app: appName,
|
|
|
|
version: toVersion,
|
|
|
|
branchFk: branch,
|
|
|
|
fromVersion,
|
|
|
|
userFk: userId
|
|
|
|
});
|
|
|
|
|
2022-05-27 06:23:52 +00:00
|
|
|
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(
|
2022-12-22 06:12:09 +00:00
|
|
|
accessContainer.client.root, accessContainer.name, appName, `${toVersion}.7z`);
|
2022-05-31 07:06:15 +00:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
const branchPath = path.join(accessContainer.client.root, 'branches', branch);
|
|
|
|
await fs.mkdir(branchPath, {recursive: true});
|
|
|
|
|
|
|
|
const destinationBranch = path.join(branchPath, `${appName}.7z`);
|
2022-12-22 06:12:09 +00:00
|
|
|
const destinationRelative = `../../.archive/${appName}/${toVersion}.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') {
|
2022-08-09 09:49:28 +00:00
|
|
|
const destinationRoot = path.join(accessContainer.client.root, `${appName}.7z`);
|
2022-12-22 06:12:09 +00:00
|
|
|
const rootRelative = `./.archive/${appName}/${toVersion}.7z`;
|
2022-05-31 07:06:15 +00:00
|
|
|
try {
|
|
|
|
await fs.unlink(destinationRoot);
|
|
|
|
} catch (e) {}
|
2022-08-09 09:49:28 +00:00
|
|
|
await fs.symlink(rootRelative, destinationRoot);
|
2022-05-31 07:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-27 06:23:52 +00:00
|
|
|
|
2022-06-01 05:57:32 +00:00
|
|
|
await models.MdbVersion.upsert({
|
|
|
|
app: appName,
|
|
|
|
branchFk: branch,
|
2022-12-22 06:12:09 +00:00
|
|
|
version: toVersion
|
|
|
|
}, myOptions);
|
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-12-22 06:12:09 +00:00
|
|
|
fs.unlink(srcFile);
|
2022-05-31 07:06:15 +00:00
|
|
|
|
2022-05-27 06:23:52 +00:00
|
|
|
throw e;
|
|
|
|
}
|
2022-05-25 12:59:28 +00:00
|
|
|
};
|
|
|
|
};
|