| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | const sql = require('./sql'); | 
					
						
							|  |  |  | const log = require('./log'); | 
					
						
							|  |  |  | const eventLog = require('./event_log'); | 
					
						
							|  |  |  | const notes = require('./notes'); | 
					
						
							| 
									
										
										
										
											2017-11-16 21:50:00 -05:00
										 |  |  | const sync_table = require('./sync_table'); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 20:47:01 -05:00
										 |  |  | async function updateNote(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  |     const origNote = await sql.getFirst("SELECT * FROM notes WHERE note_id = ?", [entity.note_id]); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!origNote || origNote.date_modified <= entity.date_modified) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await sql.replace("notes", entity); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addNoteSync(entity.note_id, sourceId); | 
					
						
							|  |  |  |             await eventLog.addNoteEvent(entity.note_id, "Synced note <note>"); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         log.info("Update/sync note " + entity.note_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function updateNoteTree(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  |     const orig = await sql.getFirstOrNull("SELECT * FROM notes_tree WHERE note_tree_id = ?", [entity.note_tree_id]); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  |         if (orig === null || orig.date_modified < entity.date_modified) { | 
					
						
							| 
									
										
										
										
											2017-11-09 21:11:33 -05:00
										 |  |  |             delete entity.is_expanded; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.replace('notes_tree', entity); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addNoteTreeSync(entity.note_tree_id, sourceId); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  |             log.info("Update/sync note tree " + entity.note_tree_id); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function updateNoteHistory(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  |     const orig = await sql.getFirstOrNull("SELECT * FROM notes_history WHERE note_history_id = ?", [entity.note_history_id]); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-12-30 19:38:30 -05:00
										 |  |  |         // we update note history even if date modified to is the same because the only thing which might have changed
 | 
					
						
							|  |  |  |         // is the protected status (and correnspondingly note_title and note_text) which doesn't affect the date_modified_to
 | 
					
						
							|  |  |  |         if (orig === null || orig.date_modified_to <= entity.date_modified_to) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.replace('notes_history', entity); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addNoteHistorySync(entity.note_history_id, sourceId); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  |             log.info("Update/sync note history " + entity.note_history_id); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function updateNoteReordering(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |         Object.keys(entity.ordering).forEach(async key => { | 
					
						
							| 
									
										
										
										
											2017-12-19 21:40:48 -05:00
										 |  |  |             await sql.execute("UPDATE notes_tree SET note_position = ? WHERE note_tree_id = ?", [entity.ordering[key], key]); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 21:40:48 -05:00
										 |  |  |         await sync_table.addNoteReorderingSync(entity.parent_note_id, sourceId); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |     }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function updateOptions(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2018-01-11 22:45:25 -05:00
										 |  |  |     const orig = await sql.getFirstOrNull("SELECT * FROM options WHERE opt_name = ?", [entity.opt_name]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!orig.is_synced) { | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |     await sql.doInTransaction(async () => { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  |         if (orig === null || orig.date_modified < entity.date_modified) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sql.replace('options', entity); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await sync_table.addOptionsSync(entity.opt_name, sourceId); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |             await eventLog.addEvent("Synced option " + entity.opt_name); | 
					
						
							| 
									
										
										
										
											2017-11-28 17:04:47 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function updateRecentNotes(entity, sourceId) { | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  |     const orig = await sql.getFirstOrNull("SELECT * FROM recent_notes WHERE note_tree_id = ?", [entity.note_tree_id]); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (orig === null || orig.date_accessed < entity.date_accessed) { | 
					
						
							| 
									
										
										
										
											2017-11-28 17:24:08 -05:00
										 |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await sql.replace('recent_notes', entity); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 10:06:53 -05:00
										 |  |  |             await sync_table.addRecentNoteSync(entity.note_tree_id, sourceId); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 15:56:00 -05:00
										 |  |  | async function updateImage(entity, sourceId) { | 
					
						
							|  |  |  |     if (entity.data !== null) { | 
					
						
							|  |  |  |         entity.data = Buffer.from(entity.data, 'base64'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const origImage = await sql.getFirst("SELECT * FROM images WHERE image_id = ?", [entity.image_id]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!origImage || origImage.date_modified <= entity.date_modified) { | 
					
						
							|  |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await sql.replace("images", entity); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             await sync_table.addImageSync(entity.image_id, sourceId); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         log.info("Update/sync image " + entity.image_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 21:49:02 -05:00
										 |  |  | async function updateNoteImage(entity, sourceId) { | 
					
						
							|  |  |  |     const origNoteImage = await sql.getFirst("SELECT * FROM notes_image WHERE note_image_id = ?", [entity.note_image_id]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!origNoteImage || origNoteImage.date_modified <= entity.date_modified) { | 
					
						
							|  |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await sql.replace("notes_image", entity); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             await sync_table.addNoteImageSync(entity.note_image_id, sourceId); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         log.info("Update/sync note image " + entity.note_image_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-09 22:09:45 -05:00
										 |  |  | async function updateAttribute(entity, sourceId) { | 
					
						
							|  |  |  |     const origAttribute = await sql.getFirst("SELECT * FROM attribute WHERE attribute_id = ?", [entity.attribute_id]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!origAttribute || origAttribute.date_modified <= entity.date_modified) { | 
					
						
							|  |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await sql.replace("attribute", entity); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             await sync_table.addAttributeSync(entity.attribute_id, sourceId); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         log.info("Update/sync attribute " + entity.attribute_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | module.exports = { | 
					
						
							|  |  |  |     updateNote, | 
					
						
							|  |  |  |     updateNoteTree, | 
					
						
							|  |  |  |     updateNoteHistory, | 
					
						
							|  |  |  |     updateNoteReordering, | 
					
						
							|  |  |  |     updateOptions, | 
					
						
							| 
									
										
										
										
											2018-01-06 15:56:00 -05:00
										 |  |  |     updateRecentNotes, | 
					
						
							| 
									
										
										
										
											2018-01-06 21:49:02 -05:00
										 |  |  |     updateImage, | 
					
						
							| 
									
										
										
										
											2018-01-09 22:09:45 -05:00
										 |  |  |     updateNoteImage, | 
					
						
							|  |  |  |     updateAttribute | 
					
						
							| 
									
										
										
										
											2017-11-09 20:52:47 -05:00
										 |  |  | }; |