2017-10-22 09:10:33 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
2017-10-16 07:47:05 +08:00
|
|
|
const sql = require('../../services/sql');
|
|
|
|
const auth = require('../../services/auth');
|
2017-11-15 11:21:56 +08:00
|
|
|
const data_encryption = require('../../services/data_encryption');
|
|
|
|
const protected_session = require('../../services/protected_session');
|
2017-11-17 10:50:00 +08:00
|
|
|
const sync_table = require('../../services/sync_table');
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2017-10-16 04:32:49 +08:00
|
|
|
router.get('/:noteId', auth.checkApiAuth, async (req, res, next) => {
|
2017-10-15 11:31:44 +08:00
|
|
|
const noteId = req.params.noteId;
|
2017-11-21 12:51:28 +08:00
|
|
|
const history = await sql.getResults("SELECT * FROM notes_history WHERE note_id = ? order by date_modified_to desc", [noteId]);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2017-11-15 11:21:56 +08:00
|
|
|
const dataKey = protected_session.getDataKey(req);
|
2017-11-03 11:36:58 +08:00
|
|
|
|
2017-11-15 11:21:56 +08:00
|
|
|
for (const hist of history) {
|
|
|
|
if (hist.is_protected) {
|
2017-11-19 01:53:17 +08:00
|
|
|
hist.note_title = data_encryption.decryptString(dataKey, data_encryption.noteTitleIv(hist.note_history_id), hist.note_title);
|
|
|
|
hist.note_text = data_encryption.decryptString(dataKey, data_encryption.noteTextIv(hist.note_history_id), hist.note_text);
|
2017-11-15 11:21:56 +08:00
|
|
|
}
|
2017-11-03 11:36:58 +08:00
|
|
|
}
|
2017-10-15 11:31:44 +08:00
|
|
|
|
|
|
|
res.send(history);
|
|
|
|
});
|
|
|
|
|
2017-11-03 11:55:22 +08:00
|
|
|
router.put('', auth.checkApiAuth, async (req, res, next) => {
|
2017-11-29 06:24:08 +08:00
|
|
|
await sql.doInTransaction(async () => {
|
|
|
|
await sql.replace("notes_history", req.body);
|
2017-11-03 11:36:58 +08:00
|
|
|
|
2017-11-29 06:24:08 +08:00
|
|
|
await sync_table.addNoteHistorySync(req.body.note_history_id);
|
2017-11-03 11:36:58 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
res.send();
|
|
|
|
});
|
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
module.exports = router;
|