mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
const scriptService = require('./script');
|
|
const cls = require('./cls');
|
|
const sqlInit = require('./sql_init');
|
|
const config = require('./config');
|
|
const log = require('./log');
|
|
const attributeService = require("../services/attributes");
|
|
const protectedSessionService = require("../services/protected_session");
|
|
const hiddenSubtreeService = require("./hidden_subtree");
|
|
|
|
function getRunAtHours(note) {
|
|
try {
|
|
return note.getLabelValues('runAtHour').map(hour => parseInt(hour));
|
|
}
|
|
catch (e) {
|
|
log.error(`Could not parse runAtHour for note ${note.noteId}: ${e.message}`);
|
|
|
|
return [];
|
|
}
|
|
}
|
|
|
|
function runNotesWithLabel(runAttrValue) {
|
|
const instanceName = config.General ? config.General.instanceName : null;
|
|
const currentHours = new Date().getHours();
|
|
const notes = attributeService.getNotesWithLabel('run', runAttrValue);
|
|
|
|
for (const note of notes) {
|
|
const runOnInstances = note.getLabelValues('runOnInstance');
|
|
const runAtHours = getRunAtHours(note);
|
|
|
|
if ((runOnInstances.length === 0 || runOnInstances.includes(instanceName))
|
|
&& (runAtHours.length === 0 || runAtHours.includes(currentHours))
|
|
) {
|
|
scriptService.executeNoteNoException(note, {originEntity: note});
|
|
}
|
|
}
|
|
}
|
|
|
|
sqlInit.dbReady.then(() => {
|
|
cls.init(() => {
|
|
hiddenSubtreeService.checkHiddenSubtree();
|
|
});
|
|
|
|
if (!process.env.TRILIUM_SAFE_MODE) {
|
|
setTimeout(cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000);
|
|
|
|
setInterval(cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000);
|
|
|
|
setInterval(cls.wrap(() => runNotesWithLabel('daily')), 24 * 3600 * 1000);
|
|
}
|
|
|
|
setInterval(() => protectedSessionService.checkProtectedSessionExpiration(), 30000);
|
|
});
|