| 
									
										
										
										
											2018-01-28 23:16:50 -05:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  | const Entity = require('./entity'); | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  | const protected_session = require('../services/protected_session'); | 
					
						
							| 
									
										
										
										
											2018-01-28 23:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  | class Note extends Entity { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  |     static get tableName() { return "notes"; } | 
					
						
							| 
									
										
										
										
											2018-01-30 20:12:19 -05:00
										 |  |  |     static get primaryKeyName() { return "noteId"; } | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |     constructor(repository, row) { | 
					
						
							|  |  |  |         super(repository, row); | 
					
						
							| 
									
										
										
										
											2018-01-29 20:57:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  |         if (this.isProtected) { | 
					
						
							|  |  |  |             protected_session.decryptNote(this.dataKey, this); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |         if (this.isJson()) { | 
					
						
							| 
									
										
										
										
											2018-01-29 20:57:55 -05:00
										 |  |  |             this.jsonContent = JSON.parse(this.content); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |     isJson() { | 
					
						
							|  |  |  |         return this.type === "code" && this.mime === "application/json"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-18 10:47:02 -05:00
										 |  |  |     isJavaScript() { | 
					
						
							| 
									
										
										
										
											2018-03-01 22:30:06 -05:00
										 |  |  |         return (this.type === "code" || this.type === "file") | 
					
						
							|  |  |  |             && (this.mime === "application/javascript" || this.mime === "application/x-javascript"); | 
					
						
							| 
									
										
										
										
											2018-02-18 10:47:02 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  |     async getAttributes() { | 
					
						
							| 
									
										
										
										
											2018-02-06 23:09:19 -05:00
										 |  |  |         return this.repository.getEntities("SELECT * FROM attributes WHERE noteId = ? AND isDeleted = 0", [this.noteId]); | 
					
						
							| 
									
										
										
										
											2018-01-28 23:16:50 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 09:11:41 -05:00
										 |  |  |     // WARNING: this doesn't take into account the possibility to have multi-valued attributes!
 | 
					
						
							|  |  |  |     async getAttributeMap() { | 
					
						
							|  |  |  |         const map = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (const attr of await this.getAttributes()) { | 
					
						
							|  |  |  |             map[attr.name] = attr.value; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return map; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  |     async getAttribute(name) { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |         return this.repository.getEntity("SELECT * FROM attributes WHERE noteId = ? AND name = ?", [this.noteId, name]); | 
					
						
							| 
									
										
										
										
											2018-01-29 17:41:59 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  |     async getRevisions() { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |         return this.repository.getEntities("SELECT * FROM note_revisions WHERE noteId = ?", [this.noteId]); | 
					
						
							| 
									
										
										
										
											2018-01-29 18:34:59 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async getTrees() { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:17:44 -05:00
										 |  |  |         return this.repository.getEntities("SELECT * FROM note_tree WHERE isDeleted = 0 AND noteId = ?", [this.noteId]); | 
					
						
							| 
									
										
										
										
											2018-01-28 23:16:50 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 14:42:52 -05:00
										 |  |  |     async getChild(name) { | 
					
						
							|  |  |  |         return this.repository.getEntity(`
 | 
					
						
							|  |  |  |           SELECT notes.*  | 
					
						
							|  |  |  |           FROM note_tree  | 
					
						
							|  |  |  |             JOIN notes USING(noteId)  | 
					
						
							|  |  |  |           WHERE notes.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.parentNoteId = ? | 
					
						
							|  |  |  |                 AND notes.title = ?`, [this.noteId, name]);
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async getChildren() { | 
					
						
							|  |  |  |         return this.repository.getEntities(`
 | 
					
						
							|  |  |  |           SELECT notes.*  | 
					
						
							|  |  |  |           FROM note_tree  | 
					
						
							|  |  |  |             JOIN notes USING(noteId)  | 
					
						
							|  |  |  |           WHERE notes.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.parentNoteId = ?`, [this.noteId]);
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async getParents() { | 
					
						
							|  |  |  |         return this.repository.getEntities(`
 | 
					
						
							|  |  |  |           SELECT parent_notes.*  | 
					
						
							|  |  |  |           FROM  | 
					
						
							|  |  |  |             note_tree AS child_tree  | 
					
						
							|  |  |  |             JOIN notes AS parent_notes ON parent_notes.noteId = child_tree.parentNoteId  | 
					
						
							|  |  |  |           WHERE child_tree.noteId = ? | 
					
						
							|  |  |  |                 AND child_tree.isDeleted = 0 | 
					
						
							|  |  |  |                 AND parent_notes.isDeleted = 0`, [this.noteId]);
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async getNoteTree() { | 
					
						
							|  |  |  |         return this.repository.getEntities(`
 | 
					
						
							|  |  |  |           SELECT note_tree.*  | 
					
						
							|  |  |  |           FROM note_tree  | 
					
						
							|  |  |  |             JOIN notes USING(noteId)  | 
					
						
							|  |  |  |           WHERE notes.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.isDeleted = 0 | 
					
						
							|  |  |  |                 AND note_tree.noteId = ?`, [this.noteId]);
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  |     beforeSaving() { | 
					
						
							| 
									
										
										
										
											2018-01-30 21:25:47 -05:00
										 |  |  |         this.content = JSON.stringify(this.jsonContent, null, '\t'); | 
					
						
							| 
									
										
										
										
											2018-01-29 23:35:36 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (this.isProtected) { | 
					
						
							|  |  |  |             protected_session.encryptNote(this.dataKey, this); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-28 23:16:50 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = Note; |