2017-10-21 21:10:33 -04:00
|
|
|
"use strict";
|
|
|
|
|
2018-04-01 21:27:46 -04:00
|
|
|
const noteService = require('../../services/notes');
|
|
|
|
const treeService = require('../../services/tree');
|
2018-03-31 10:51:37 -04:00
|
|
|
const repository = require('../../services/repository');
|
2019-10-18 22:27:38 +02:00
|
|
|
const utils = require('../../services/utils');
|
|
|
|
const TaskContext = require('../../services/task_context');
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
async function getNote(req) {
|
2017-11-15 00:04:26 -05:00
|
|
|
const noteId = req.params.noteId;
|
2018-04-01 11:42:12 -04:00
|
|
|
const note = await repository.getNote(noteId);
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
if (!note) {
|
|
|
|
return [404, "Note " + noteId + " has not been found."];
|
2017-11-26 23:10:23 -05:00
|
|
|
}
|
|
|
|
|
2019-02-10 22:45:44 +01:00
|
|
|
if (note.isStringNote()) {
|
2019-03-26 22:24:04 +01:00
|
|
|
await note.getContent();
|
2019-02-06 20:19:25 +01:00
|
|
|
|
2019-02-07 22:16:40 +01:00
|
|
|
if (note.type === 'file') {
|
2019-03-26 22:24:04 +01:00
|
|
|
note.content = note.content.substr(0, 10000);
|
2019-02-07 22:16:40 +01:00
|
|
|
}
|
2018-02-18 21:28:24 -05:00
|
|
|
}
|
|
|
|
|
2019-11-16 11:23:28 +01:00
|
|
|
await treeService.setCssClassesToNotes([note]);
|
2019-05-13 22:08:06 +02:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
return note;
|
|
|
|
}
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
async function createNote(req) {
|
2019-11-16 11:09:52 +01:00
|
|
|
const params = Object.assign({}, req.body); // clone
|
|
|
|
params.parentNoteId = req.params.parentNoteId;
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2019-11-16 12:28:47 +01:00
|
|
|
const { target, targetBranchId } = req.query;
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2019-11-16 12:28:47 +01:00
|
|
|
const { note, branch } = await noteService.createNewNoteWithTarget(target, targetBranchId, params);
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2019-11-16 11:23:28 +01:00
|
|
|
await treeService.setCssClassesToNotes([note]);
|
2018-09-01 13:18:55 +02:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
return {
|
2018-04-01 11:42:12 -04:00
|
|
|
note,
|
|
|
|
branch
|
2018-03-30 12:57:22 -04:00
|
|
|
};
|
|
|
|
}
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
async function updateNote(req) {
|
2017-11-14 21:54:12 -05:00
|
|
|
const note = req.body;
|
2017-11-15 00:04:26 -05:00
|
|
|
const noteId = req.params.noteId;
|
2017-11-05 10:41:54 -05:00
|
|
|
|
2019-08-06 22:39:27 +02:00
|
|
|
return await noteService.updateNote(noteId, note);
|
2018-03-30 12:57:22 -04:00
|
|
|
}
|
2017-10-14 23:31:44 -04:00
|
|
|
|
2018-11-14 23:30:28 +01:00
|
|
|
async function deleteNote(req) {
|
|
|
|
const noteId = req.params.noteId;
|
2019-10-19 00:11:07 +02:00
|
|
|
const taskId = req.query.taskId;
|
|
|
|
const last = req.query.last === 'true';
|
2018-11-14 23:30:28 +01:00
|
|
|
|
|
|
|
const note = await repository.getNote(noteId);
|
|
|
|
|
2019-10-19 00:11:07 +02:00
|
|
|
const taskContext = TaskContext.getInstance(taskId, 'delete-notes');
|
2019-10-18 22:27:38 +02:00
|
|
|
|
2018-11-14 23:30:28 +01:00
|
|
|
for (const branch of await note.getBranches()) {
|
2019-10-18 22:27:38 +02:00
|
|
|
await noteService.deleteBranch(branch, taskContext);
|
2018-11-14 23:30:28 +01:00
|
|
|
}
|
2019-10-19 00:11:07 +02:00
|
|
|
|
|
|
|
if (last) {
|
|
|
|
await taskContext.taskSucceeded();
|
|
|
|
}
|
2018-11-14 23:30:28 +01:00
|
|
|
}
|
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
async function sortNotes(req) {
|
2018-01-13 17:00:40 -05:00
|
|
|
const noteId = req.params.noteId;
|
|
|
|
|
2018-04-01 21:27:46 -04:00
|
|
|
await treeService.sortNotesAlphabetically(noteId);
|
2018-03-30 12:57:22 -04:00
|
|
|
}
|
2018-01-13 17:00:40 -05:00
|
|
|
|
2018-08-31 18:22:53 +02:00
|
|
|
async function protectSubtree(req) {
|
2018-01-13 20:53:00 -05:00
|
|
|
const noteId = req.params.noteId;
|
2018-04-19 22:18:19 -04:00
|
|
|
const note = await repository.getNote(noteId);
|
2018-03-31 10:51:37 -04:00
|
|
|
const protect = !!parseInt(req.params.isProtected);
|
2018-01-13 17:00:40 -05:00
|
|
|
|
2019-10-19 09:58:18 +02:00
|
|
|
const taskContext = new TaskContext(utils.randomString(10), 'protect-notes', {protect});
|
|
|
|
|
|
|
|
await noteService.protectNoteRecursively(note, protect, taskContext);
|
|
|
|
|
|
|
|
taskContext.taskSucceeded();
|
2018-03-30 12:57:22 -04:00
|
|
|
}
|
2018-01-13 17:00:40 -05:00
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
async function setNoteTypeMime(req) {
|
2018-04-04 23:04:31 -04:00
|
|
|
// can't use [] destructuring because req.params is not iterable
|
|
|
|
const noteId = req.params[0];
|
|
|
|
const type = req.params[1];
|
|
|
|
const mime = req.params[2];
|
2018-01-20 21:56:03 -05:00
|
|
|
|
2018-04-01 17:38:24 -04:00
|
|
|
const note = await repository.getNote(noteId);
|
|
|
|
note.type = type;
|
|
|
|
note.mime = mime;
|
|
|
|
await note.save();
|
2018-03-30 12:57:22 -04:00
|
|
|
}
|
2018-01-20 21:56:03 -05:00
|
|
|
|
2018-10-25 12:06:36 +02:00
|
|
|
async function getRelationMap(req) {
|
|
|
|
const noteIds = req.body.noteIds;
|
|
|
|
const resp = {
|
2018-11-13 12:50:08 +01:00
|
|
|
// noteId => title
|
2018-10-25 12:06:36 +02:00
|
|
|
noteTitles: {},
|
2018-11-13 12:50:08 +01:00
|
|
|
relations: [],
|
2018-11-19 12:07:33 +01:00
|
|
|
// relation name => inverse relation name
|
2019-11-23 20:54:49 +01:00
|
|
|
inverseRelations: {
|
|
|
|
'internalLink': 'internalLink'
|
|
|
|
}
|
2018-10-25 12:06:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (noteIds.length === 0) {
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
|
|
|
const questionMarks = noteIds.map(noteId => '?').join(',');
|
|
|
|
|
2018-11-13 12:50:08 +01:00
|
|
|
const notes = await repository.getEntities(`SELECT * FROM notes WHERE isDeleted = 0 AND noteId IN (${questionMarks})`, noteIds);
|
|
|
|
|
|
|
|
for (const note of notes) {
|
|
|
|
resp.noteTitles[note.noteId] = note.title;
|
|
|
|
|
|
|
|
resp.relations = resp.relations.concat((await note.getRelations())
|
|
|
|
.filter(relation => noteIds.includes(relation.value))
|
|
|
|
.map(relation => { return {
|
|
|
|
attributeId: relation.attributeId,
|
|
|
|
sourceNoteId: relation.noteId,
|
|
|
|
targetNoteId: relation.value,
|
|
|
|
name: relation.name
|
|
|
|
}; }));
|
|
|
|
|
|
|
|
for (const relationDefinition of await note.getRelationDefinitions()) {
|
2018-11-19 12:07:33 +01:00
|
|
|
if (relationDefinition.value.inverseRelation) {
|
|
|
|
resp.inverseRelations[relationDefinition.name] = relationDefinition.value.inverseRelation;
|
2018-11-13 12:50:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-25 12:06:36 +02:00
|
|
|
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
2018-10-30 22:18:20 +01:00
|
|
|
async function changeTitle(req) {
|
|
|
|
const noteId = req.params.noteId;
|
|
|
|
const title = req.body.title;
|
|
|
|
|
|
|
|
const note = await repository.getNote(noteId);
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
return [404, `Note ${noteId} has not been found`];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!note.isContentAvailable) {
|
|
|
|
return [400, `Note ${noteId} is not available for change`];
|
|
|
|
}
|
|
|
|
|
|
|
|
note.title = title;
|
|
|
|
|
|
|
|
await note.save();
|
|
|
|
}
|
|
|
|
|
2019-10-19 12:36:16 +02:00
|
|
|
async function duplicateNote(req) {
|
|
|
|
const {noteId, parentNoteId} = req.params;
|
|
|
|
|
|
|
|
return await noteService.duplicateNote(noteId, parentNoteId);
|
|
|
|
}
|
|
|
|
|
2018-03-30 12:57:22 -04:00
|
|
|
module.exports = {
|
|
|
|
getNote,
|
|
|
|
updateNote,
|
2018-11-14 23:30:28 +01:00
|
|
|
deleteNote,
|
2018-03-30 12:57:22 -04:00
|
|
|
createNote,
|
|
|
|
sortNotes,
|
2018-08-31 18:22:53 +02:00
|
|
|
protectSubtree,
|
2018-10-21 10:26:14 +02:00
|
|
|
setNoteTypeMime,
|
2018-10-30 22:18:20 +01:00
|
|
|
getRelationMap,
|
2019-10-19 12:36:16 +02:00
|
|
|
changeTitle,
|
|
|
|
duplicateNote
|
2018-03-30 12:57:22 -04:00
|
|
|
};
|