2017-10-21 21:10:33 -04:00
|
|
|
"use strict";
|
|
|
|
|
2017-10-14 23:31:44 -04:00
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
2017-10-15 19:47:05 -04:00
|
|
|
const sql = require('../../services/sql');
|
|
|
|
const auth = require('../../services/auth');
|
2017-11-14 22:21:56 -05:00
|
|
|
const protected_session = require('../../services/protected_session');
|
2017-11-16 21:50:00 -05:00
|
|
|
const sync_table = require('../../services/sync_table');
|
2018-01-07 09:35:44 -05:00
|
|
|
const wrap = require('express-promise-wrap').wrap;
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-01-07 09:35:44 -05:00
|
|
|
router.get('/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-10-14 23:31:44 -04:00
|
|
|
const noteId = req.params.noteId;
|
2017-12-23 11:02:38 -05:00
|
|
|
const history = await sql.getAll("SELECT * FROM notes_history WHERE note_id = ? order by date_modified_to desc", [noteId]);
|
2018-01-24 22:13:41 -05:00
|
|
|
protected_session.decryptNoteHistoryRows(req, history);
|
2017-10-14 23:31:44 -04:00
|
|
|
|
|
|
|
res.send(history);
|
2018-01-07 09:35:44 -05:00
|
|
|
}));
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-01-07 09:35:44 -05:00
|
|
|
router.put('', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-12-16 20:48:34 -05:00
|
|
|
const sourceId = req.headers.source_id;
|
|
|
|
|
2017-11-28 17:24:08 -05:00
|
|
|
await sql.doInTransaction(async () => {
|
|
|
|
await sql.replace("notes_history", req.body);
|
2017-11-02 23:36:58 -04:00
|
|
|
|
2017-12-16 20:48:34 -05:00
|
|
|
await sync_table.addNoteHistorySync(req.body.note_history_id, sourceId);
|
2017-11-02 23:36:58 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
res.send();
|
2018-01-07 09:35:44 -05:00
|
|
|
}));
|
2017-11-02 23:36:58 -04:00
|
|
|
|
2017-10-14 23:31:44 -04:00
|
|
|
module.exports = router;
|