2018-03-26 09:29:35 +08:00
|
|
|
import ScriptContext from "./script_context.js";
|
2018-03-27 10:29:14 +08:00
|
|
|
import server from "./server.js";
|
2018-08-17 17:31:42 +08:00
|
|
|
import infoService from "./info.js";
|
2018-03-26 09:16:57 +08:00
|
|
|
|
2018-08-10 19:30:20 +08:00
|
|
|
async function getAndExecuteBundle(noteId, originEntity = null) {
|
2018-07-29 22:06:13 +08:00
|
|
|
const bundle = await server.get('script/bundle/' + noteId);
|
|
|
|
|
2019-08-17 17:28:36 +08:00
|
|
|
return await executeBundle(bundle, originEntity);
|
2018-07-29 22:06:13 +08:00
|
|
|
}
|
|
|
|
|
2019-05-20 03:52:28 +08:00
|
|
|
async function executeBundle(bundle, originEntity, tabContext) {
|
|
|
|
const apiContext = await ScriptContext(bundle.noteId, bundle.allNoteIds, originEntity, tabContext);
|
2018-03-26 09:16:57 +08:00
|
|
|
|
2018-08-17 17:31:42 +08:00
|
|
|
try {
|
|
|
|
return await (function () {
|
|
|
|
return eval(`const apiContext = this; (async function() { ${bundle.script}\r\n})()`);
|
|
|
|
}.call(apiContext));
|
|
|
|
}
|
|
|
|
catch (e) {
|
2019-03-08 03:51:55 +08:00
|
|
|
infoService.showAndLogError(`Execution of ${bundle.noteId} failed with error: ${e.message}`);
|
2018-08-17 17:31:42 +08:00
|
|
|
}
|
2018-03-26 09:16:57 +08:00
|
|
|
}
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
async function executeStartupBundles() {
|
|
|
|
const scriptBundles = await server.get("script/startup");
|
|
|
|
|
|
|
|
for (const bundle of scriptBundles) {
|
|
|
|
await executeBundle(bundle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-30 03:48:48 +08:00
|
|
|
async function executeRelationBundles(note, relationName, tabContext) {
|
2019-01-17 05:52:32 +08:00
|
|
|
note.bundleCache = note.bundleCache || {};
|
2018-07-30 00:39:10 +08:00
|
|
|
|
2019-01-17 05:52:32 +08:00
|
|
|
if (!note.bundleCache[relationName]) {
|
|
|
|
note.bundleCache[relationName] = await server.get("script/relation/" + note.noteId + "/" + relationName);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const bundle of note.bundleCache[relationName]) {
|
2019-05-30 03:48:48 +08:00
|
|
|
await executeBundle(bundle, note, tabContext);
|
2018-07-30 00:39:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-26 09:16:57 +08:00
|
|
|
export default {
|
2018-03-27 10:29:14 +08:00
|
|
|
executeBundle,
|
2018-07-29 22:06:13 +08:00
|
|
|
getAndExecuteBundle,
|
2018-07-30 00:39:10 +08:00
|
|
|
executeStartupBundles,
|
|
|
|
executeRelationBundles
|
2018-03-26 09:16:57 +08:00
|
|
|
}
|