trilium/routes/api/recent_notes.js

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-11-05 11:46:50 +08:00
"use strict";
const express = require('express');
const router = express.Router();
const sql = require('../../services/sql');
const auth = require('../../services/auth');
const utils = require('../../services/utils');
const sync_table = require('../../services/sync_table');
const options = require('../../services/options');
2017-11-05 11:46:50 +08:00
router.get('', auth.checkApiAuth, async (req, res, next) => {
res.send(await getRecentNotes());
});
router.put('/:noteTreeId/:notePath', auth.checkApiAuth, async (req, res, next) => {
const noteTreeId = req.params.noteTreeId;
2017-11-20 01:06:48 +08:00
const notePath = req.params.notePath;
const sourceId = req.headers.source_id;
await sql.doInTransaction(async () => {
await sql.replace('recent_notes', {
note_tree_id: noteTreeId,
note_path: notePath,
date_accessed: utils.nowDate(),
is_deleted: 0
});
2017-11-05 11:46:50 +08:00
await sync_table.addRecentNoteSync(noteTreeId, sourceId);
await options.setOption('start_note_path', notePath, sourceId);
});
2017-11-05 12:16:02 +08:00
2017-11-05 11:46:50 +08:00
res.send(await getRecentNotes());
});
async function getRecentNotes() {
2017-11-05 12:16:02 +08:00
return await sql.getResults("SELECT * FROM recent_notes WHERE is_deleted = 0 ORDER BY date_accessed DESC");
2017-11-05 11:46:50 +08:00
}
module.exports = router;