trilium/src/routes/api/script.js

61 lines
1.8 KiB
JavaScript
Raw Normal View History

"use strict";
const express = require('express');
const router = express.Router();
const auth = require('../../services/auth');
const wrap = require('express-promise-wrap').wrap;
const attributes = require('../../services/attributes');
const script = require('../../services/script');
const Repository = require('../../services/repository');
router.post('/exec', auth.checkApiAuth, wrap(async (req, res, next) => {
const ret = await script.executeScript(req, req.body.script, req.body.params, req.body.startNoteId);
res.send({
executionResult: ret
});
}));
router.post('/run/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
const repository = new Repository(req);
const note = await repository.getNote(req.params.noteId);
const ret = await script.executeNote(note);
res.send({
executionResult: ret
});
}));
router.get('/startup', auth.checkApiAuth, wrap(async (req, res, next) => {
2018-02-03 23:37:57 +08:00
const repository = new Repository(req);
2018-03-05 03:21:11 +08:00
const notes = await attributes.getNotesWithAttribute(repository, "run", "frontend_startup");
const scripts = [];
2018-03-05 03:21:11 +08:00
for (const note of notes) {
const bundle = await script.getScriptBundle(note);
2018-03-03 22:11:41 +08:00
scripts.push(bundle);
}
res.send(scripts);
}));
router.get('/subtree/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
const repository = new Repository(req);
2018-03-03 22:11:41 +08:00
const note = await repository.getNote(req.params.noteId);
2018-03-05 03:21:11 +08:00
const bundle = await script.getScriptBundle(note);
res.send(bundle);
}));
2018-03-04 23:32:53 +08:00
router.get('/render/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
const repository = new Repository(req);
const note = await repository.getNote(req.params.noteId);
const bundle = await script.getRenderScript(note);
2018-03-04 23:32:53 +08:00
res.send(bundle);
2018-03-04 23:32:53 +08:00
}));
module.exports = router;