2017-10-22 09:10:33 +08:00
|
|
|
"use strict";
|
|
|
|
|
2018-04-02 09:27:46 +08:00
|
|
|
const noteService = require('../../services/notes');
|
|
|
|
const treeService = require('../../services/tree');
|
2018-03-31 22:51:37 +08:00
|
|
|
const repository = require('../../services/repository');
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function getNote(req) {
|
2017-11-15 13:04:26 +08:00
|
|
|
const noteId = req.params.noteId;
|
2018-04-01 23:42:12 +08:00
|
|
|
const note = await repository.getNote(noteId);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
if (!note) {
|
|
|
|
return [404, "Note " + noteId + " has not been found."];
|
2017-11-27 12:10:23 +08:00
|
|
|
}
|
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
if (note.type === 'file') {
|
2018-03-28 10:11:06 +08:00
|
|
|
// no need to transfer (potentially large) file payload for this request
|
2018-03-31 00:57:22 +08:00
|
|
|
note.content = null;
|
2018-02-19 10:28:24 +08:00
|
|
|
}
|
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
return note;
|
|
|
|
}
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function createNote(req) {
|
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-04-02 09:27:46 +08:00
|
|
|
const { note, branch } = await noteService.createNewNote(parentNoteId, newNote, req);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
return {
|
2018-04-01 23:42:12 +08:00
|
|
|
note,
|
|
|
|
branch
|
2018-03-31 00:57:22 +08:00
|
|
|
};
|
|
|
|
}
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function updateNote(req) {
|
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;
|
2017-11-05 23:41:54 +08:00
|
|
|
|
2018-04-02 09:27:46 +08:00
|
|
|
await noteService.updateNote(noteId, note);
|
2018-03-31 00:57:22 +08:00
|
|
|
}
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function sortNotes(req) {
|
2018-01-14 06:00:40 +08:00
|
|
|
const noteId = req.params.noteId;
|
|
|
|
|
2018-04-02 09:27:46 +08:00
|
|
|
await treeService.sortNotesAlphabetically(noteId);
|
2018-03-31 00:57:22 +08:00
|
|
|
}
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function protectBranch(req) {
|
2018-01-14 09:53:00 +08:00
|
|
|
const noteId = req.params.noteId;
|
2018-03-31 22:51:37 +08:00
|
|
|
const note = repository.getNote(noteId);
|
|
|
|
const protect = !!parseInt(req.params.isProtected);
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-04-02 09:27:46 +08:00
|
|
|
await noteService.protectNoteRecursively(note, protect);
|
2018-03-31 00:57:22 +08:00
|
|
|
}
|
2018-01-14 06:00:40 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
async function setNoteTypeMime(req) {
|
2018-04-02 05:38:24 +08:00
|
|
|
const [noteId, type, mime] = req.params;
|
2018-01-21 10:56:03 +08:00
|
|
|
|
2018-04-02 05:38:24 +08:00
|
|
|
const note = await repository.getNote(noteId);
|
|
|
|
note.type = type;
|
|
|
|
note.mime = mime;
|
|
|
|
await note.save();
|
2018-03-31 00:57:22 +08:00
|
|
|
}
|
2018-01-21 10:56:03 +08:00
|
|
|
|
2018-03-31 00:57:22 +08:00
|
|
|
module.exports = {
|
|
|
|
getNote,
|
|
|
|
updateNote,
|
|
|
|
createNote,
|
|
|
|
sortNotes,
|
|
|
|
protectBranch,
|
|
|
|
setNoteTypeMime
|
|
|
|
};
|