2018-03-25 21:29:35 -04:00
|
|
|
import ScriptContext from "./script_context.js";
|
2018-03-26 22:29:14 -04:00
|
|
|
import server from "./server.js";
|
2018-03-25 21:16:57 -04:00
|
|
|
|
2018-08-10 13:30:20 +02:00
|
|
|
async function getAndExecuteBundle(noteId, originEntity = null) {
|
2018-07-29 16:06:13 +02:00
|
|
|
const bundle = await server.get('script/bundle/' + noteId);
|
|
|
|
|
2018-08-10 13:30:20 +02:00
|
|
|
await executeBundle(bundle, originEntity);
|
2018-07-29 16:06:13 +02:00
|
|
|
}
|
|
|
|
|
2018-08-10 13:30:20 +02:00
|
|
|
async function executeBundle(bundle, originEntity) {
|
|
|
|
const apiContext = ScriptContext(bundle.note, bundle.allNotes, originEntity);
|
2018-03-25 21:16:57 -04:00
|
|
|
|
|
|
|
return await (function () {
|
|
|
|
return eval(`const apiContext = this; (async function() { ${bundle.script}\r\n})()`);
|
|
|
|
}.call(apiContext));
|
|
|
|
}
|
|
|
|
|
2018-03-26 22:29:14 -04:00
|
|
|
async function executeStartupBundles() {
|
|
|
|
const scriptBundles = await server.get("script/startup");
|
|
|
|
|
|
|
|
for (const bundle of scriptBundles) {
|
|
|
|
await executeBundle(bundle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-29 18:39:10 +02:00
|
|
|
async function executeRelationBundles(note, relationName) {
|
|
|
|
const bundlesToRun = await server.get("script/relation/" + note.noteId + "/" + relationName);
|
|
|
|
|
|
|
|
for (const bundle of bundlesToRun) {
|
|
|
|
await executeBundle(bundle, note);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-25 21:16:57 -04:00
|
|
|
export default {
|
2018-03-26 22:29:14 -04:00
|
|
|
executeBundle,
|
2018-07-29 16:06:13 +02:00
|
|
|
getAndExecuteBundle,
|
2018-07-29 18:39:10 +02:00
|
|
|
executeStartupBundles,
|
|
|
|
executeRelationBundles
|
2018-03-25 21:16:57 -04:00
|
|
|
}
|