| 
									
										
										
										
											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 utils = require('../../services/utils'); | 
					
						
							|  |  |  | const auth = require('../../services/auth'); | 
					
						
							| 
									
										
										
										
											2017-11-16 21:50:00 -05:00
										 |  |  | const sync_table = require('../../services/sync_table'); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | router.put('/:noteTreeId/moveTo/:parentNoteId', auth.checkApiAuth, async (req, res, next) => { | 
					
						
							|  |  |  |     const noteTreeId = req.params.noteTreeId; | 
					
						
							|  |  |  |     const parentNoteId = req.params.parentNoteId; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 23:51:28 -05:00
										 |  |  |     const maxNotePos = await sql.getSingleValue('SELECT MAX(note_pos) FROM notes_tree WHERE note_pid = ? AND is_deleted = 0', [parentNoteId]); | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  |     const newNotePos = maxNotePos === null ? 0 : maxNotePos + 1; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 22:56:42 -04:00
										 |  |  |     const now = utils.nowTimestamp(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |         await sql.execute("UPDATE notes_tree SET note_pid = ?, note_pos = ?, date_modified = ? WHERE note_tree_id = ?", | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  |             [parentNoteId, newNotePos, now, noteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sync_table.addNoteTreeSync(noteTreeId); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     res.send({}); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | router.put('/:noteTreeId/moveBefore/:beforeNoteTreeId', async (req, res, next) => { | 
					
						
							|  |  |  |     const noteTreeId = req.params.noteTreeId; | 
					
						
							|  |  |  |     const beforeNoteTreeId = req.params.beforeNoteTreeId; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 23:51:28 -05:00
										 |  |  |     const beforeNote = await sql.getSingleResult("SELECT * FROM notes_tree WHERE note_tree_id = ?", [beforeNoteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 22:56:42 -04:00
										 |  |  |     if (beforeNote) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-02 22:55:22 -04:00
										 |  |  |             // we don't change date_modified so other changes are prioritized in case of conflict
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.execute("UPDATE notes_tree SET note_pos = note_pos + 1 WHERE note_pid = ? AND note_pos >= ? AND is_deleted = 0", | 
					
						
							| 
									
										
										
										
											2017-11-16 22:18:25 -05:00
										 |  |  |                 [beforeNote.note_pid, beforeNote.note_pos]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 21:04:30 -05:00
										 |  |  |             await sync_table.addNoteReorderingSync(beforeNote.note_pid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-09 21:11:33 -05:00
										 |  |  |             const now = utils.nowTimestamp(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.execute("UPDATE notes_tree SET note_pid = ?, note_pos = ?, date_modified = ? WHERE note_tree_id = ?", | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  |                 [beforeNote.note_pid, beforeNote.note_pos, now, noteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addNoteTreeSync(noteTreeId); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  |         res.send({}); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         res.status(500).send("Before note " + beforeNoteTreeId + " doesn't exist."); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | router.put('/:noteTreeId/moveAfter/:afterNoteTreeId', async (req, res, next) => { | 
					
						
							|  |  |  |     const noteTreeId = req.params.noteTreeId; | 
					
						
							|  |  |  |     const afterNoteTreeId = req.params.afterNoteTreeId; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 23:51:28 -05:00
										 |  |  |     const afterNote = await sql.getSingleResult("SELECT * FROM notes_tree WHERE note_tree_id = ?", [afterNoteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 22:56:42 -04:00
										 |  |  |     if (afterNote) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-02 22:55:22 -04:00
										 |  |  |             // we don't change date_modified so other changes are prioritized in case of conflict
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.execute("UPDATE notes_tree SET note_pos = note_pos + 1 WHERE note_pid = ? AND note_pos > ? AND is_deleted = 0", | 
					
						
							| 
									
										
										
										
											2017-11-16 22:18:25 -05:00
										 |  |  |                 [afterNote.note_pid, afterNote.note_pos]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 21:04:30 -05:00
										 |  |  |             await sync_table.addNoteReorderingSync(afterNote.note_pid); | 
					
						
							| 
									
										
										
										
											2017-11-09 21:11:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.execute("UPDATE notes_tree SET note_pid = ?, note_pos = ?, date_modified = ? WHERE note_tree_id = ?", | 
					
						
							| 
									
										
										
										
											2017-11-29 21:04:30 -05:00
										 |  |  |                 [afterNote.note_pid, afterNote.note_pos + 1, utils.nowTimestamp(), noteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addNoteTreeSync(noteTreeId); | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  |         res.send({}); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         res.status(500).send("After note " + afterNoteTreeId + " doesn't exist."); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | router.put('/:childNoteId/cloneTo/:parentNoteId', auth.checkApiAuth, async (req, res, next) => { | 
					
						
							|  |  |  |     const parentNoteId = req.params.parentNoteId; | 
					
						
							|  |  |  |     const childNoteId = req.params.childNoteId; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const existing = await sql.getSingleValue('SELECT * FROM notes_tree WHERE note_id = ? AND note_pid = ?', [childNoteId, parentNoteId]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     if (existing && !existing.is_deleted) { | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  |         return res.send({ | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |             success: false, | 
					
						
							|  |  |  |             message: 'This note already exists in target parent note.' | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  |     if (!await checkCycle(parentNoteId, childNoteId)) { | 
					
						
							|  |  |  |         return res.send({ | 
					
						
							|  |  |  |             success: false, | 
					
						
							|  |  |  |             message: 'Cloning note here would create cycle.' | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     const maxNotePos = await sql.getSingleValue('SELECT MAX(note_pos) FROM notes_tree WHERE note_pid = ? AND is_deleted = 0', [parentNoteId]); | 
					
						
							|  |  |  |     const newNotePos = maxNotePos === null ? 0 : maxNotePos + 1; | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |         const noteTree = { | 
					
						
							|  |  |  |             'note_tree_id': utils.newNoteTreeId(), | 
					
						
							|  |  |  |             'note_id': childNoteId, | 
					
						
							|  |  |  |             'note_pid': parentNoteId, | 
					
						
							|  |  |  |             'note_pos': newNotePos, | 
					
						
							|  |  |  |             'is_expanded': 0, | 
					
						
							|  |  |  |             'date_modified': utils.nowTimestamp(), | 
					
						
							|  |  |  |             'is_deleted': 0 | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.replace("notes_tree", noteTree); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sync_table.addNoteTreeSync(noteTree.note_tree_id); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         res.send({ | 
					
						
							|  |  |  |             success: true | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | router.put('/:noteId/cloneAfter/:afterNoteTreeId', async (req, res, next) => { | 
					
						
							|  |  |  |     const noteId = req.params.noteId; | 
					
						
							|  |  |  |     const afterNoteTreeId = req.params.afterNoteTreeId; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const afterNote = await sql.getSingleResult("SELECT * FROM notes_tree WHERE note_tree_id = ?", [afterNoteTreeId]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     if (!afterNote) { | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  |         return res.status(500).send("After note " + afterNoteTreeId + " doesn't exist."); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!await checkCycle(afterNote.note_pid, noteId)) { | 
					
						
							|  |  |  |         return res.send({ | 
					
						
							|  |  |  |             success: false, | 
					
						
							|  |  |  |             message: 'Cloning note here would create cycle.' | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     const existing = await sql.getSingleValue('SELECT * FROM notes_tree WHERE note_id = ? AND note_pid = ?', [noteId, afterNote.note_pid]); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |     if (existing && !existing.is_deleted) { | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  |         return res.send({ | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |             success: false, | 
					
						
							|  |  |  |             message: 'This note already exists in target parent note.' | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |         // we don't change date_modified so other changes are prioritized in case of conflict
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.execute("UPDATE notes_tree SET note_pos = note_pos + 1 WHERE note_pid = ? AND note_pos > ? AND is_deleted = 0", | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |             [afterNote.note_pid, afterNote.note_pos]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 21:04:30 -05:00
										 |  |  |         await sync_table.addNoteReorderingSync(afterNote.note_pid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  |         const noteTree = { | 
					
						
							|  |  |  |             'note_tree_id': utils.newNoteTreeId(), | 
					
						
							|  |  |  |             'note_id': noteId, | 
					
						
							|  |  |  |             'note_pid': afterNote.note_pid, | 
					
						
							|  |  |  |             'note_pos': afterNote.note_pos + 1, | 
					
						
							|  |  |  |             'is_expanded': 0, | 
					
						
							|  |  |  |             'date_modified': utils.nowTimestamp(), | 
					
						
							|  |  |  |             'is_deleted': 0 | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.replace("notes_tree", noteTree); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sync_table.addNoteTreeSync(noteTree.note_tree_id); | 
					
						
							| 
									
										
										
										
											2017-11-23 20:49:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         res.send({ | 
					
						
							|  |  |  |             success: true | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 21:50:12 -05:00
										 |  |  | async function checkCycle(parentNoteId, childNoteId) { | 
					
						
							|  |  |  |     if (parentNoteId === 'root') { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (parentNoteId === childNoteId) { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const parentNoteIds = await sql.getFlattenedResults("note_pid", "SELECT DISTINCT note_pid FROM notes_tree WHERE note_id = ?", [parentNoteId]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const pid of parentNoteIds) { | 
					
						
							|  |  |  |         if (!await checkCycle(pid, childNoteId)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | router.put('/:noteTreeId/expanded/:expanded', async (req, res, next) => { | 
					
						
							|  |  |  |     const noteTreeId = req.params.noteTreeId; | 
					
						
							| 
									
										
										
										
											2017-10-22 22:56:42 -04:00
										 |  |  |     const expanded = req.params.expanded; | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |         await sql.execute("UPDATE notes_tree SET is_expanded = ? WHERE note_tree_id = ?", [expanded, noteTreeId]); | 
					
						
							| 
									
										
										
										
											2017-11-29 21:04:30 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // we don't sync expanded attribute
 | 
					
						
							| 
									
										
										
										
											2017-10-29 18:50:28 -04:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-10-14 23:31:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     res.send({}); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = router; |