const sql = require('./sql'); const log = require('./log'); const eventLogService = require('./event_log'); const syncTableService = require('./sync_table'); const eventService = require('./events'); async function updateEntity(sync, entity, sourceId) { const {entityName} = sync; if (entityName === 'notes') { await updateNote(entity, sourceId); } else if (entityName === 'branches') { await updateBranch(entity, sourceId); } else if (entityName === 'note_revisions') { await updateNoteRevision(entity, sourceId); } else if (entityName === 'note_reordering') { await updateNoteReordering(sync.entityId, entity, sourceId); } else if (entityName === 'options') { await updateOptions(entity, sourceId); } else if (entityName === 'recent_notes') { await updateRecentNotes(entity, sourceId); } else if (entityName === 'links') { await updateLink(entity, sourceId); } else if (entityName === 'attributes') { await updateAttribute(entity, sourceId); } else if (entityName === 'api_tokens') { await updateApiToken(entity, sourceId); } else { throw new Error(`Unrecognized entity type ${entityName}`); } // currently making exception for protected notes and note revisions because here // the title and content are not available decrypted as listeners would expect if ((entityName !== 'notes' && entityName !== 'note_revisions') || !entity.isProtected) { await eventService.emit(eventService.ENTITY_SYNCED, { entityName, entity }); } } function deserializeNoteContentBuffer(note) { if (note.content !== null && (note.type === 'file' || note.type === 'image')) { note.content = Buffer.from(note.content, 'base64'); } } async function updateNote(entity, sourceId) { deserializeNoteContentBuffer(entity); const origNote = await sql.getRow("SELECT * FROM notes WHERE noteId = ?", [entity.noteId]); if (!origNote || origNote.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("notes", entity); await syncTableService.addNoteSync(entity.noteId, sourceId); }); log.info("Update/sync note " + entity.noteId); } } async function updateBranch(entity, sourceId) { const orig = await sql.getRowOrNull("SELECT * FROM branches WHERE branchId = ?", [entity.branchId]); await sql.transactional(async () => { if (orig === null || orig.dateModified < entity.dateModified) { // isExpanded is not synced unless it's a new branch instance // otherwise in case of full new sync we'll get all branches (even root) collapsed. if (orig) { delete entity.isExpanded; } await sql.replace('branches', entity); await syncTableService.addBranchSync(entity.branchId, sourceId); log.info("Update/sync branch " + entity.branchId); } }); } async function updateNoteRevision(entity, sourceId) { const orig = await sql.getRowOrNull("SELECT * FROM note_revisions WHERE noteRevisionId = ?", [entity.noteRevisionId]); await sql.transactional(async () => { // we update note revision even if date modified to is the same because the only thing which might have changed // is the protected status (and correnspondingly title and content) which doesn't affect the dateModifiedTo if (orig === null || orig.dateModifiedTo <= entity.dateModifiedTo) { await sql.replace('note_revisions', entity); await syncTableService.addNoteRevisionSync(entity.noteRevisionId, sourceId); log.info("Update/sync note revision " + entity.noteRevisionId); } }); } async function updateNoteReordering(entityId, entity, sourceId) { await sql.transactional(async () => { Object.keys(entity).forEach(async key => { await sql.execute("UPDATE branches SET notePosition = ? WHERE branchId = ?", [entity[key], key]); }); await syncTableService.addNoteReorderingSync(entityId, sourceId); }); } async function updateOptions(entity, sourceId) { const orig = await sql.getRowOrNull("SELECT * FROM options WHERE name = ?", [entity.name]); if (orig && !orig.isSynced) { return; } await sql.transactional(async () => { if (orig === null || orig.dateModified < entity.dateModified) { await sql.replace('options', entity); await syncTableService.addOptionsSync(entity.name, sourceId); await eventLogService.addEvent("Synced option " + entity.name); } }); } async function updateRecentNotes(entity, sourceId) { const orig = await sql.getRowOrNull("SELECT * FROM recent_notes WHERE branchId = ?", [entity.branchId]); if (orig === null || orig.dateCreated < entity.dateCreated) { await sql.transactional(async () => { await sql.replace('recent_notes', entity); await syncTableService.addRecentNoteSync(entity.branchId, sourceId); }); } } async function updateLink(entity, sourceId) { const origLink = await sql.getRow("SELECT * FROM links WHERE linkId = ?", [entity.linkId]); if (!origLink || origLink.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("links", entity); await syncTableService.addLinkSync(entity.linkId, sourceId); }); log.info("Update/sync link " + entity.linkId); } } async function updateAttribute(entity, sourceId) { const origAttribute = await sql.getRow("SELECT * FROM attributes WHERE attributeId = ?", [entity.attributeId]); if (!origAttribute || origAttribute.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("attributes", entity); await syncTableService.addAttributeSync(entity.attributeId, sourceId); }); log.info("Update/sync attribute " + entity.attributeId); } } async function updateApiToken(entity, sourceId) { const apiTokenId = await sql.getRow("SELECT * FROM api_tokens WHERE apiTokenId = ?", [entity.apiTokenId]); if (!apiTokenId) { await sql.transactional(async () => { await sql.replace("api_tokens", entity); await syncTableService.addApiTokenSync(entity.apiTokenId, sourceId); }); log.info("Update/sync API token " + entity.apiTokenId); } } module.exports = { updateEntity };