const sql = require('./sql'); const log = require('./log'); const eventLogService = require('./event_log'); const syncTableService = require('./sync_table'); 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 === 'images') { await updateImage(entity, sourceId); } else if (entityName === 'note_images') { await updateNoteImage(entity, sourceId); } else if (entityName === 'labels') { await updateLabel(entity, sourceId); } else if (entityName === 'relations') { await updateRelation(entity, sourceId); } else if (entityName === 'api_tokens') { await updateApiToken(entity, sourceId); } else { throw new Error(`Unrecognized entity type ${sync}`); } } function deserializeNoteContentBuffer(note) { if (note.type === 'file') { note.content = new Buffer(note.content, 'binary'); } } 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 updateImage(entity, sourceId) { if (entity.data !== null) { entity.data = Buffer.from(entity.data, 'base64'); } const origImage = await sql.getRow("SELECT * FROM images WHERE imageId = ?", [entity.imageId]); if (!origImage || origImage.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("images", entity); await syncTableService.addImageSync(entity.imageId, sourceId); }); log.info("Update/sync image " + entity.imageId); } } async function updateNoteImage(entity, sourceId) { const origNoteImage = await sql.getRow("SELECT * FROM note_images WHERE noteImageId = ?", [entity.noteImageId]); if (!origNoteImage || origNoteImage.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("note_images", entity); await syncTableService.addNoteImageSync(entity.noteImageId, sourceId); }); log.info("Update/sync note image " + entity.noteImageId); } } async function updateLabel(entity, sourceId) { const origLabel = await sql.getRow("SELECT * FROM labels WHERE labelId = ?", [entity.labelId]); if (!origLabel || origLabel.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("labels", entity); await syncTableService.addLabelSync(entity.labelId, sourceId); }); log.info("Update/sync label " + entity.labelId); } } async function updateRelation(entity, sourceId) { const origRelation = await sql.getRow("SELECT * FROM relations WHERE relationId = ?", [entity.relationId]); if (!origRelation || origRelation.dateModified <= entity.dateModified) { await sql.transactional(async () => { await sql.replace("relations", entity); await syncTableService.addRelationSync(entity.relationId, sourceId); }); log.info("Update/sync relation " + entity.relationId); } } 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 };