mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
29 lines
954 B
JavaScript
29 lines
954 B
JavaScript
const scriptService = require('./script');
|
|
const repository = require('./repository');
|
|
const cls = require('./cls');
|
|
const sqlInit = require('./sql_init');
|
|
|
|
async function runNotesWithLabel(runAttrValue) {
|
|
const notes = await repository.getEntities(`
|
|
SELECT notes.*
|
|
FROM notes
|
|
JOIN labels ON labels.noteId = notes.noteId
|
|
AND labels.isDeleted = 0
|
|
AND labels.name = 'run'
|
|
AND labels.value = ?
|
|
WHERE
|
|
notes.type = 'code'
|
|
AND notes.isDeleted = 0`, [runAttrValue]);
|
|
|
|
for (const note of notes) {
|
|
scriptService.executeNote(note);
|
|
}
|
|
}
|
|
|
|
sqlInit.dbReady.then(() => {
|
|
setTimeout(cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000);
|
|
|
|
setInterval(cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000);
|
|
|
|
setInterval(cls.wrap(() => runNotesWithLabel('daily')), 24 * 3600 * 1000);
|
|
}); |