2017-11-04 23:46:50 -04: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');
|
2017-11-16 21:50:00 -05:00
|
|
|
const sync_table = require('../../services/sync_table');
|
2017-11-18 17:05:50 -05:00
|
|
|
const options = require('../../services/options');
|
2018-01-07 09:35:44 -05:00
|
|
|
const wrap = require('express-promise-wrap').wrap;
|
2017-11-04 23:46:50 -04:00
|
|
|
|
2018-01-07 09:35:44 -05:00
|
|
|
router.get('', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-11-04 23:46:50 -04:00
|
|
|
res.send(await getRecentNotes());
|
2018-01-07 09:35:44 -05:00
|
|
|
}));
|
2017-11-04 23:46:50 -04:00
|
|
|
|
2018-01-07 09:35:44 -05:00
|
|
|
router.put('/:noteTreeId/:notePath', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-12-03 10:06:53 -05:00
|
|
|
const noteTreeId = req.params.noteTreeId;
|
2017-11-19 12:06:48 -05:00
|
|
|
const notePath = req.params.notePath;
|
2018-01-28 19:30:14 -05:00
|
|
|
const sourceId = req.headers.sourceId;
|
2017-11-18 17:05:50 -05:00
|
|
|
|
2017-11-28 17:24:08 -05:00
|
|
|
await sql.doInTransaction(async () => {
|
|
|
|
await sql.replace('recent_notes', {
|
2018-01-28 19:30:14 -05:00
|
|
|
noteTreeId: noteTreeId,
|
|
|
|
notePath: notePath,
|
|
|
|
dateAccessed: utils.nowDate(),
|
|
|
|
isDeleted: 0
|
2017-11-24 00:09:53 -05:00
|
|
|
});
|
2017-11-04 23:46:50 -04:00
|
|
|
|
2017-12-16 20:48:34 -05:00
|
|
|
await sync_table.addRecentNoteSync(noteTreeId, sourceId);
|
2017-11-18 17:05:50 -05:00
|
|
|
|
2018-01-28 20:52:05 -05:00
|
|
|
await options.setOption('start_note_path', notePath, sourceId);
|
2017-11-24 00:09:53 -05:00
|
|
|
});
|
2017-11-05 00:16:02 -04:00
|
|
|
|
2017-11-04 23:46:50 -04:00
|
|
|
res.send(await getRecentNotes());
|
2018-01-07 09:35:44 -05:00
|
|
|
}));
|
2017-11-04 23:46:50 -04:00
|
|
|
|
|
|
|
async function getRecentNotes() {
|
2017-12-23 11:02:38 -05:00
|
|
|
return await sql.getAll(`
|
2017-12-18 22:37:31 -05:00
|
|
|
SELECT
|
|
|
|
recent_notes.*
|
|
|
|
FROM
|
|
|
|
recent_notes
|
2018-01-28 19:38:05 -05:00
|
|
|
JOIN note_tree USING(noteTreeId)
|
2017-12-18 22:37:31 -05:00
|
|
|
WHERE
|
2018-01-28 19:30:14 -05:00
|
|
|
recent_notes.isDeleted = 0
|
2018-01-28 19:38:05 -05:00
|
|
|
AND note_tree.isDeleted = 0
|
2017-12-18 22:37:31 -05:00
|
|
|
ORDER BY
|
2018-01-28 19:30:14 -05:00
|
|
|
dateAccessed DESC`);
|
2017-11-04 23:46:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = router;
|