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-11-05 23:41:54 +08:00
|
|
|
const auth = require('../../services/auth');
|
2017-10-16 07:47:05 +08:00
|
|
|
const sql = require('../../services/sql');
|
2017-11-05 23:41:54 +08:00
|
|
|
const notes = require('../../services/notes');
|
2017-11-27 12:10:23 +08:00
|
|
|
const log = require('../../services/log');
|
2018-01-16 09:54:22 +08:00
|
|
|
const utils = require('../../services/utils');
|
2017-11-13 10:40:26 +08:00
|
|
|
const protected_session = require('../../services/protected_session');
|
2018-01-14 09:53:00 +08:00
|
|
|
const tree = require('../../services/tree');
|
2018-01-21 10:56:03 +08:00
|
|
|
const sync_table = require('../../services/sync_table');
|
2018-01-07 22:35:44 +08:00
|
|
|
const wrap = require('express-promise-wrap').wrap;
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-07 22:35:44 +08:00
|
|
|
router.get('/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-11-15 13:04:26 +08:00
|
|
|
const noteId = req.params.noteId;
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-29 08:30:14 +08:00
|
|
|
const detail = await sql.getFirst("SELECT * FROM notes WHERE noteId = ?", [noteId]);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2017-11-27 12:10:23 +08:00
|
|
|
if (!detail) {
|
|
|
|
log.info("Note " + noteId + " has not been found.");
|
|
|
|
|
|
|
|
return res.status(404).send({});
|
|
|
|
}
|
|
|
|
|
2018-01-25 11:13:41 +08:00
|
|
|
protected_session.decryptNote(req, detail);
|
2017-11-13 10:40:26 +08:00
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
res.send({
|
2017-12-11 01:56:59 +08:00
|
|
|
detail: detail
|
2017-10-15 11:31:44 +08:00
|
|
|
});
|
2018-01-07 22:35:44 +08:00
|
|
|
}));
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-07 22:35:44 +08:00
|
|
|
router.post('/:parentNoteId/children', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2018-01-29 10:57:46 +08:00
|
|
|
const sourceId = req.headers.source_id;
|
2017-11-23 12:16:54 +08:00
|
|
|
const parentNoteId = req.params.parentNoteId;
|
2018-01-28 23:37:43 +08:00
|
|
|
const newNote = req.body;
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-28 06:18:19 +08:00
|
|
|
await sql.doInTransaction(async () => {
|
2018-01-28 23:37:43 +08:00
|
|
|
const { noteId, noteTreeId, note } = await notes.createNewNote(parentNoteId, newNote, req, sourceId);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-28 06:18:19 +08:00
|
|
|
res.send({
|
2018-01-29 08:30:14 +08:00
|
|
|
'noteId': noteId,
|
|
|
|
'noteTreeId': noteTreeId,
|
2018-01-28 23:37:43 +08:00
|
|
|
'note': note
|
2018-01-28 06:18:19 +08:00
|
|
|
});
|
2017-10-30 06:50:28 +08:00
|
|
|
});
|
2018-01-07 22:35:44 +08:00
|
|
|
}));
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-07 22:35:44 +08:00
|
|
|
router.put('/:noteId', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-11-15 10:54:12 +08:00
|
|
|
const note = req.body;
|
2017-11-15 13:04:26 +08:00
|
|
|
const noteId = req.params.noteId;
|
2018-01-29 10:57:46 +08:00
|
|
|
const sourceId = req.headers.source_id;
|
2017-12-17 10:23:35 +08:00
|
|
|
const dataKey = protected_session.getDataKey(req);
|
2017-11-05 23:41:54 +08:00
|
|
|
|
2017-12-17 10:23:35 +08:00
|
|
|
await notes.updateNote(noteId, note, dataKey, sourceId);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
|
|
|
res.send({});
|
2018-01-07 22:35:44 +08:00
|
|
|
}));
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-07 22:35:44 +08:00
|
|
|
router.get('/', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2018-01-16 09:54:22 +08:00
|
|
|
const search = '%' + utils.sanitizeSql(req.query.search) + '%';
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-16 09:54:22 +08:00
|
|
|
// searching in protected notes is pointless because of encryption
|
2018-01-29 08:30:14 +08:00
|
|
|
const noteIds = await sql.getFirstColumn(`SELECT noteId FROM notes
|
|
|
|
WHERE isDeleted = 0 AND isProtected = 0 AND (title LIKE ? OR content LIKE ?)`, [search, search]);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-16 09:54:22 +08:00
|
|
|
res.send(noteIds);
|
2018-01-07 22:35:44 +08:00
|
|
|
}));
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-14 06:00:40 +08:00
|
|
|
router.put('/:noteId/sort', auth.checkApiAuth, wrap(async (req, res, next) => {
|
|
|
|
const noteId = req.params.noteId;
|
2018-01-29 10:57:46 +08:00
|
|
|
const sourceId = req.headers.source_id;
|
2018-01-14 06:00:40 +08:00
|
|
|
const dataKey = protected_session.getDataKey(req);
|
|
|
|
|
2018-01-14 09:53:00 +08:00
|
|
|
await tree.sortNotesAlphabetically(noteId, dataKey, sourceId);
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-01-14 09:53:00 +08:00
|
|
|
res.send({});
|
|
|
|
}));
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-01-14 09:53:00 +08:00
|
|
|
router.put('/:noteId/protect-sub-tree/:isProtected', auth.checkApiAuth, wrap(async (req, res, next) => {
|
|
|
|
const noteId = req.params.noteId;
|
|
|
|
const isProtected = !!parseInt(req.params.isProtected);
|
|
|
|
const dataKey = protected_session.getDataKey(req);
|
2018-01-29 10:57:46 +08:00
|
|
|
const sourceId = req.headers.source_id;
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-01-14 09:53:00 +08:00
|
|
|
await sql.doInTransaction(async () => {
|
|
|
|
await notes.protectNoteRecursively(noteId, dataKey, isProtected, sourceId);
|
2018-01-14 06:00:40 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
res.send({});
|
|
|
|
}));
|
|
|
|
|
2018-01-24 12:41:22 +08:00
|
|
|
router.put(/\/(.*)\/type\/(.*)\/mime\/(.*)/, auth.checkApiAuth, wrap(async (req, res, next) => {
|
|
|
|
const noteId = req.params[0];
|
|
|
|
const type = req.params[1];
|
|
|
|
const mime = req.params[2];
|
2018-01-29 10:57:46 +08:00
|
|
|
const sourceId = req.headers.source_id;
|
2018-01-21 10:56:03 +08:00
|
|
|
|
|
|
|
await sql.doInTransaction(async () => {
|
2018-01-29 08:30:14 +08:00
|
|
|
await sql.execute("UPDATE notes SET type = ?, mime = ?, dateModified = ? WHERE noteId = ?",
|
2018-01-22 12:36:09 +08:00
|
|
|
[type, mime, utils.nowDate(), noteId]);
|
2018-01-21 10:56:03 +08:00
|
|
|
|
|
|
|
await sync_table.addNoteSync(noteId, sourceId);
|
|
|
|
});
|
|
|
|
|
|
|
|
res.send({});
|
|
|
|
}));
|
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
module.exports = router;
|