trilium/routes/api/tree.js

53 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
const express = require('express');
const router = express.Router();
2017-10-16 07:47:05 +08:00
const sql = require('../../services/sql');
2017-11-03 08:48:02 +08:00
const options = require('../../services/options');
2017-10-16 07:47:05 +08:00
const utils = require('../../services/utils');
const auth = require('../../services/auth');
2017-11-11 11:55:19 +08:00
const protected_session = require('../../services/protected_session');
2017-11-20 05:35:35 +08:00
const sync_table = require('../../services/sync_table');
const wrap = require('express-promise-wrap').wrap;
router.get('/', auth.checkApiAuth, wrap(async (req, res, next) => {
const notes = await sql.getAll(`
SELECT
note_tree.*,
2018-01-29 08:30:14 +08:00
notes.title,
notes.isProtected,
notes.type
FROM
note_tree
JOIN
notes ON notes.noteId = note_tree.noteId
WHERE
2018-01-29 08:30:14 +08:00
notes.isDeleted = 0
AND note_tree.isDeleted = 0
ORDER BY
2018-01-29 08:30:14 +08:00
notePosition`);
protected_session.decryptNotes(req, notes);
res.send({
notes: notes,
2018-01-29 09:52:05 +08:00
start_note_path: await options.getOption('start_note_path')
});
}));
router.put('/:noteTreeId/set-prefix', auth.checkApiAuth, wrap(async (req, res, next) => {
2017-11-27 11:34:25 +08:00
const noteTreeId = req.params.noteTreeId;
2018-01-29 08:30:14 +08:00
const sourceId = req.headers.sourceId;
const prefix = utils.isEmptyOrWhitespace(req.body.prefix) ? null : req.body.prefix;
2017-11-27 11:34:25 +08:00
await sql.doInTransaction(async () => {
await sql.execute("UPDATE note_tree SET prefix = ?, dateModified = ? WHERE noteTreeId = ?", [prefix, utils.nowDate(), noteTreeId]);
2017-11-27 11:34:25 +08:00
await sync_table.addNoteTreeSync(noteTreeId, sourceId);
2017-11-27 11:34:25 +08:00
});
res.send({});
}));
2017-11-27 11:34:25 +08:00
module.exports = router;