mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 21:21:40 +08:00
72 lines
No EOL
1.9 KiB
JavaScript
72 lines
No EOL
1.9 KiB
JavaScript
"use strict";
|
|
|
|
const scriptService = require('../../services/script');
|
|
const attributeService = require('../../services/attributes');
|
|
const repository = require('../../services/repository');
|
|
|
|
async function exec(req) {
|
|
try {
|
|
const result = await scriptService.executeScript(req.body.script, req.body.params, req.body.startNoteId,
|
|
req.body.currentNoteId, req.body.originEntityName, req.body.originEntityId);
|
|
|
|
return { success: true, executionResult: result };
|
|
}
|
|
catch (e) {
|
|
return { success: false, error: e.message };
|
|
}
|
|
}
|
|
|
|
async function run(req) {
|
|
const note = await repository.getNote(req.params.noteId);
|
|
|
|
const result = await scriptService.executeNote(note, note);
|
|
|
|
return { executionResult: result };
|
|
}
|
|
|
|
async function getStartupBundles() {
|
|
const notes = await attributeService.getNotesWithLabel("run", "frontendStartup");
|
|
|
|
const bundles = [];
|
|
|
|
for (const note of notes) {
|
|
const bundle = await scriptService.getScriptBundle(note);
|
|
|
|
if (bundle) {
|
|
bundles.push(bundle);
|
|
}
|
|
}
|
|
|
|
return bundles;
|
|
}
|
|
|
|
async function getRelationBundles(req) {
|
|
const noteId = req.params.noteId;
|
|
const note = await repository.getNote(noteId);
|
|
const relationName = req.params.relationName;
|
|
|
|
const attributes = await 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) {
|
|
bundles.push(await scriptService.getScriptBundleForNoteId(noteId));
|
|
}
|
|
|
|
return bundles;
|
|
}
|
|
|
|
async function getBundle(req) {
|
|
return await scriptService.getScriptBundleForNoteId(req.params.noteId);
|
|
}
|
|
|
|
module.exports = {
|
|
exec,
|
|
run,
|
|
getStartupBundles,
|
|
getRelationBundles,
|
|
getBundle
|
|
}; |