mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 13:41:59 +08:00
45 lines
No EOL
1.3 KiB
JavaScript
45 lines
No EOL
1.3 KiB
JavaScript
import ScriptContext from "./script_context.js";
|
|
import server from "./server.js";
|
|
import infoService from "./info.js";
|
|
|
|
async function getAndExecuteBundle(noteId, originEntity = null) {
|
|
const bundle = await server.get('script/bundle/' + noteId);
|
|
|
|
await executeBundle(bundle, originEntity);
|
|
}
|
|
|
|
async function executeBundle(bundle, originEntity) {
|
|
const apiContext = ScriptContext(bundle.note, bundle.allNotes, originEntity);
|
|
|
|
try {
|
|
return await (function () {
|
|
return eval(`const apiContext = this; (async function() { ${bundle.script}\r\n})()`);
|
|
}.call(apiContext));
|
|
}
|
|
catch (e) {
|
|
infoService.showAndLogError(`Execution of script "${bundle.note.title}" (${bundle.note.noteId}) failed with error: ${e.message}`);
|
|
}
|
|
}
|
|
|
|
async function executeStartupBundles() {
|
|
const scriptBundles = await server.get("script/startup");
|
|
|
|
for (const bundle of scriptBundles) {
|
|
await executeBundle(bundle);
|
|
}
|
|
}
|
|
|
|
async function executeRelationBundles(note, relationName) {
|
|
const bundlesToRun = await server.get("script/relation/" + note.noteId + "/" + relationName);
|
|
|
|
for (const bundle of bundlesToRun) {
|
|
await executeBundle(bundle, note);
|
|
}
|
|
}
|
|
|
|
export default {
|
|
executeBundle,
|
|
getAndExecuteBundle,
|
|
executeStartupBundles,
|
|
executeRelationBundles
|
|
} |