Rename zotero-note-editor submodule to note-editor

This commit is contained in:
Dan Stillman 2021-02-11 14:48:27 -05:00
parent 4c11d45679
commit e1c0f6c1a0
8 changed files with 16 additions and 16 deletions

62
scripts/note-editor.js Normal file
View file

@ -0,0 +1,62 @@
'use strict';
const fs = require('fs-extra');
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const { getSignatures, writeSignatures, onSuccess, onError } = require('./utils');
const { buildsURL } = require('./config');
async function getZoteroNoteEditor(signatures) {
const t1 = Date.now();
const { stdout } = await exec('git rev-parse HEAD', { cwd: './note-editor' });
const hash = stdout.trim();
if (!('note-editor' in signatures) || signatures['note-editor'].hash !== hash) {
const targetDir = 'build/resource/note-editor/';
try {
const filename = hash + '.zip';
const tmpDir = 'tmp/builds/note-editor/';
const url = buildsURL + 'client-note-editor/' + filename;
await exec(
`mkdir -p ${tmpDir}`
+ `&& cd ${tmpDir}`
+ `&& (test -f ${filename} || curl -f ${url} -o ${filename})`
+ `&& rm -rf ../../../${targetDir}`
+ `&& mkdir -p ../../../${targetDir}`
+ `&& unzip -o ${filename} -d ../../../${targetDir}`
);
}
catch (e) {
await exec('npm ci;npm run build', { cwd: 'note-editor' });
await fs.copy('note-editor/build/zotero', targetDir);
}
signatures['note-editor'] = { hash };
}
const t2 = Date.now();
return {
action: 'note-editor',
count: 1,
totalCount: 1,
processingTime: t2 - t1
};
}
module.exports = getZoteroNoteEditor;
if (require.main === module) {
(async () => {
try {
const signatures = await getSignatures();
onSuccess(await getZoteroNoteEditor(signatures));
await writeSignatures(signatures);
}
catch (err) {
process.exitCode = 1;
global.isError = true;
onError(err);
}
})();
}