mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
122 lines
2.8 KiB
JavaScript
122 lines
2.8 KiB
JavaScript
"use strict";
|
|
|
|
const scriptService = require('../../services/script');
|
|
const attributeService = require('../../services/attributes');
|
|
const becca = require('../../becca/becca');
|
|
const syncService = require('../../services/sync');
|
|
|
|
async function exec(req) {
|
|
try {
|
|
const {body} = req;
|
|
|
|
const result = await scriptService.executeScript(
|
|
body.script,
|
|
body.params,
|
|
body.startNoteId,
|
|
body.currentNoteId,
|
|
body.originEntityName,
|
|
body.originEntityId
|
|
);
|
|
|
|
return {
|
|
success: true,
|
|
executionResult: result,
|
|
maxEntityChangeId: syncService.getMaxEntityChangeId()
|
|
};
|
|
}
|
|
catch (e) {
|
|
return { success: false, error: e.message };
|
|
}
|
|
}
|
|
|
|
function run(req) {
|
|
const note = becca.getNote(req.params.noteId);
|
|
|
|
const result = scriptService.executeNote(note, { originEntity: note });
|
|
|
|
return { executionResult: result };
|
|
}
|
|
|
|
function getBundlesWithLabel(label, value) {
|
|
const notes = attributeService.getNotesWithLabelFast(label, value);
|
|
|
|
const bundles = [];
|
|
|
|
for (const note of notes) {
|
|
const bundle = scriptService.getScriptBundleForFrontend(note);
|
|
|
|
if (bundle) {
|
|
bundles.push(bundle);
|
|
}
|
|
}
|
|
|
|
return bundles;
|
|
}
|
|
|
|
function getStartupBundles(req) {
|
|
if (!process.env.TRILIUM_SAFE_MODE) {
|
|
if (req.query.mobile === "true") {
|
|
return getBundlesWithLabel("run", "mobileStartup");
|
|
}
|
|
else {
|
|
return getBundlesWithLabel("run", "frontendStartup");
|
|
}
|
|
}
|
|
else {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
function getWidgetBundles() {
|
|
if (!process.env.TRILIUM_SAFE_MODE) {
|
|
return getBundlesWithLabel("widget");
|
|
}
|
|
else {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
function getRelationBundles(req) {
|
|
const noteId = req.params.noteId;
|
|
const note = becca.getNote(noteId);
|
|
const relationName = req.params.relationName;
|
|
|
|
const attributes = note.getAttributes();
|
|
const filtered = attributes.filter(attr => attr.type === 'relation' && attr.name === relationName);
|
|
const targetNoteIds = filtered.map(relation => relation.value);
|
|
const uniqueNoteIds = Array.from(new Set(targetNoteIds));
|
|
|
|
const bundles = [];
|
|
|
|
for (const noteId of uniqueNoteIds) {
|
|
const note = becca.getNote(noteId);
|
|
|
|
if (!note.isJavaScript() || note.getScriptEnv() !== 'frontend') {
|
|
continue;
|
|
}
|
|
|
|
const bundle = scriptService.getScriptBundleForFrontend(note);
|
|
|
|
if (bundle) {
|
|
bundles.push(bundle);
|
|
}
|
|
}
|
|
|
|
return bundles;
|
|
}
|
|
|
|
function getBundle(req) {
|
|
const note = becca.getNote(req.params.noteId);
|
|
|
|
return scriptService.getScriptBundleForFrontend(note);
|
|
}
|
|
|
|
module.exports = {
|
|
exec,
|
|
run,
|
|
getStartupBundles,
|
|
getWidgetBundles,
|
|
getRelationBundles,
|
|
getBundle
|
|
};
|