mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			120 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const sql = require('./sql');
 | |
| const ScriptContext = require('./script_context');
 | |
| const Repository = require('./repository');
 | |
| 
 | |
| async function executeNote(note) {
 | |
|     if (note.isProtected || !note.isJavaScript()) {
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     const manualTransactionHandling = (await note.getAttributeMap()).manual_transaction_handling !== undefined;
 | |
| 
 | |
|     const bundle = await getScriptBundle(note);
 | |
| 
 | |
|     // last \r\n is necessary if script contains line comment on its last line
 | |
|     const script = "async function() {\r\n" + bundle.script + "\r\n}";
 | |
| 
 | |
|     const ctx = new ScriptContext(null, note, bundle.allNotes);
 | |
| 
 | |
|     if (manualTransactionHandling) {
 | |
|         return await execute(ctx, script, '');
 | |
|     }
 | |
|     else {
 | |
|         return await sql.doInTransaction(async () => execute(ctx, script, ''));
 | |
|     }
 | |
| }
 | |
| 
 | |
| async function executeScript(dataKey, script, params, startNoteId) {
 | |
|     const repository = new Repository(dataKey);
 | |
|     const startNote = await repository.getNote(startNoteId);
 | |
| 
 | |
|     const ctx = new ScriptContext(dataKey, startNote, []);
 | |
|     const paramsStr = getParams(params);
 | |
| 
 | |
|     return await sql.doInTransaction(async () => execute(ctx, script, paramsStr));
 | |
| }
 | |
| 
 | |
| async function execute(ctx, script, paramsStr) {
 | |
|     return await (function() { return eval(`const api = this;const startNote = api.__startNote;\r\n(${script}\r\n)(${paramsStr})`); }.call(ctx));
 | |
| }
 | |
| 
 | |
| function getParams(params) {
 | |
|     if (!params) {
 | |
|         return params;
 | |
|     }
 | |
| 
 | |
|     return params.map(p => {
 | |
|         if (typeof p === "string" && p.startsWith("!@#Function: ")) {
 | |
|             return p.substr(13);
 | |
|         }
 | |
|         else {
 | |
|             return JSON.stringify(p);
 | |
|         }
 | |
|     }).join(",");
 | |
| }
 | |
| 
 | |
| async function getRenderScript(note) {
 | |
|     const bundle = await getScriptBundle(note);
 | |
| 
 | |
|     return `<script type="text/javascript">(async function() {\r\nconst api = Api();\r\n${bundle.script}\r\n})();</script>`
 | |
|         + bundle.html;
 | |
| }
 | |
| 
 | |
| async function getScriptBundle(note, includedNoteIds = []) {
 | |
|     if (!note.isJavaScript() && !note.isHtml() && note.type !== 'render') {
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     if (await note.hasAttribute('disable_inclusion')) {
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     const bundle = {
 | |
|         note: note,
 | |
|         script: '',
 | |
|         html: '',
 | |
|         allNotes: [note]
 | |
|     };
 | |
| 
 | |
|     if (includedNoteIds.includes(note.noteId)) {
 | |
|         return bundle;
 | |
|     }
 | |
| 
 | |
|     includedNoteIds.push(note.noteId);
 | |
| 
 | |
|     const modules = [];
 | |
| 
 | |
|     for (const child of await note.getChildren()) {
 | |
|         const childBundle = await getScriptBundle(child, includedNoteIds);
 | |
| 
 | |
|         if (childBundle) {
 | |
|             modules.push(childBundle.note);
 | |
|             bundle.script += childBundle.script;
 | |
|             bundle.html += childBundle.html;
 | |
|             bundle.allNotes = bundle.allNotes.concat(childBundle.allNotes);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     if (note.isJavaScript()) {
 | |
|         bundle.script += `
 | |
| api.__modules['${note.noteId}'] = {};
 | |
| await (async function(exports, module, api, startNote, currentNote` + (modules.length > 0 ? ', ' : '') +
 | |
|             modules.map(child => child.title).join(', ') + `) {
 | |
| ${note.content}
 | |
| })({}, api.__modules['${note.noteId}'], api, api.__startNote, api.__notes['${note.noteId}']` + (modules.length > 0 ? ', ' : '') +
 | |
|             modules.map(mod => `api.__modules['${mod.noteId}'].exports`).join(', ') + `);
 | |
| `;
 | |
|     }
 | |
|     else if (note.isHtml()) {
 | |
|         bundle.html += note.content;
 | |
|     }
 | |
| 
 | |
|     return bundle;
 | |
| }
 | |
| 
 | |
| module.exports = {
 | |
|     executeNote,
 | |
|     executeScript,
 | |
|     getScriptBundle,
 | |
|     getRenderScript
 | |
| }; |