| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const repository = require('./repository'); | 
					
						
							| 
									
										
										
										
											2018-08-03 11:11:57 +02:00
										 |  |  | const sql = require('./sql'); | 
					
						
							|  |  |  | const utils = require('./utils'); | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | const Attribute = require('../entities/attribute'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const BUILTIN_ATTRIBUTES = [ | 
					
						
							| 
									
										
										
										
											2018-08-03 11:11:57 +02:00
										 |  |  |     // label names
 | 
					
						
							|  |  |  |     { type: 'label', name: 'disableVersioning' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'calendarRoot' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'archived' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'excludeFromExport' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'run' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'manualTransactionHandling' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'disableInclusion' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'appCss' }, | 
					
						
							|  |  |  |     { type: 'label', name: 'hideChildrenOverview' }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // relation names
 | 
					
						
							|  |  |  |     { type: 'relation', name: 'runOnNoteView' }, | 
					
						
							| 
									
										
										
										
											2018-08-15 22:06:49 +02:00
										 |  |  |     { type: 'relation', name: 'runOnNoteCreation' }, | 
					
						
							| 
									
										
										
										
											2018-08-10 14:31:57 +02:00
										 |  |  |     { type: 'relation', name: 'runOnNoteTitleChange' }, | 
					
						
							| 
									
										
										
										
											2018-08-15 22:06:49 +02:00
										 |  |  |     { type: 'relation', name: 'runOnNoteChange' }, | 
					
						
							|  |  |  |     { type: 'relation', name: 'runOnChildNoteCreation' }, | 
					
						
							|  |  |  |     { type: 'relation', name: 'runOnAttributeCreation' }, | 
					
						
							| 
									
										
										
										
											2018-08-13 17:05:16 +02:00
										 |  |  |     { type: 'relation', name: 'runOnAttributeChange' }, | 
					
						
							| 
									
										
										
										
											2018-08-28 20:55:21 +02:00
										 |  |  |     { type: 'relation', name: 'template' }, | 
					
						
							|  |  |  |     { type: 'relation', name: 'renderNote' } | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 12:48:11 +02:00
										 |  |  | async function getNotesWithLabel(name, value) { | 
					
						
							| 
									
										
										
										
											2018-08-23 10:10:04 +02:00
										 |  |  |     let valueCondition = ""; | 
					
						
							|  |  |  |     let params = [name]; | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (value !== undefined) { | 
					
						
							| 
									
										
										
										
											2018-08-23 10:10:04 +02:00
										 |  |  |         valueCondition = " AND attributes.value = ?"; | 
					
						
							|  |  |  |         params.push(value); | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-23 10:10:04 +02:00
										 |  |  |     return await repository.getEntities(`SELECT notes.* FROM notes JOIN attributes USING(noteId) 
 | 
					
						
							|  |  |  |           WHERE notes.isDeleted = 0 AND attributes.isDeleted = 0 AND attributes.name = ? ${valueCondition} ORDER BY position`, params);
 | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 12:48:11 +02:00
										 |  |  | async function getNoteWithLabel(name, value) { | 
					
						
							|  |  |  |     const notes = await getNotesWithLabel(name, value); | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return notes.length > 0 ? notes[0] : null; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 13:33:10 +02:00
										 |  |  | async function createLabel(noteId, name, value = "") { | 
					
						
							|  |  |  |     return await createAttribute({ | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  |         noteId: noteId, | 
					
						
							| 
									
										
										
										
											2018-08-07 13:33:10 +02:00
										 |  |  |         type: 'label', | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  |         name: name, | 
					
						
							|  |  |  |         value: value | 
					
						
							| 
									
										
										
										
											2018-08-07 13:33:10 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function createAttribute(attribute) { | 
					
						
							|  |  |  |     return await new Attribute(attribute).save(); | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-03 11:11:57 +02:00
										 |  |  | async function getAttributeNames(type, nameLike) { | 
					
						
							| 
									
										
										
										
											2018-08-15 22:06:49 +02:00
										 |  |  |     nameLike = nameLike.toLowerCase(); | 
					
						
							| 
									
										
										
										
											2018-08-15 18:22:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 22:06:49 +02:00
										 |  |  |     const names = await sql.getColumn( | 
					
						
							|  |  |  |         `SELECT DISTINCT name 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 18:22:02 +02:00
										 |  |  |              FROM attributes  | 
					
						
							|  |  |  |              WHERE isDeleted = 0 | 
					
						
							|  |  |  |                AND type = ? | 
					
						
							|  |  |  |                AND name LIKE '%${utils.sanitizeSql(nameLike)}%'`, [type]);
 | 
					
						
							| 
									
										
										
										
											2018-08-15 22:06:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (const attr of BUILTIN_ATTRIBUTES) { | 
					
						
							|  |  |  |         if (attr.type === type && attr.name.toLowerCase().includes(nameLike) && !names.includes(attr.name)) { | 
					
						
							|  |  |  |             names.push(attr.name); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-08-03 11:11:57 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     names.sort(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return names; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  | module.exports = { | 
					
						
							| 
									
										
										
										
											2018-08-07 12:48:11 +02:00
										 |  |  |     getNotesWithLabel, | 
					
						
							|  |  |  |     getNoteWithLabel, | 
					
						
							| 
									
										
										
										
											2018-08-07 13:33:10 +02:00
										 |  |  |     createLabel, | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  |     createAttribute, | 
					
						
							| 
									
										
										
										
											2018-08-03 11:11:57 +02:00
										 |  |  |     getAttributeNames, | 
					
						
							| 
									
										
										
										
											2018-08-02 22:48:21 +02:00
										 |  |  |     BUILTIN_ATTRIBUTES | 
					
						
							|  |  |  | }; |