Notes/src/services/sync_table.js

119 lines
4.8 KiB
JavaScript
Raw Normal View History

2020-03-09 21:28:41 +01:00
/**
* TODO: rename "sync" table to something like "changelog" since it now also contains rows which are not synced (isSynced=false)
*/
const sql = require('./sql');
const sourceIdService = require('./source_id');
2018-04-02 20:46:46 -04:00
const dateUtils = require('./date_utils');
const log = require('./log');
const cls = require('./cls');
2020-03-09 21:28:41 +01:00
async function insertEntitySync(entityName, entityId, sourceId, isSynced) {
const sync = {
2018-01-28 19:30:14 -05:00
entityName: entityName,
entityId: entityId,
utcSyncDate: dateUtils.utcNowDateTime(),
sourceId: sourceId || cls.getSourceId() || sourceIdService.getCurrentSourceId(),
2020-03-09 21:28:41 +01:00
isSynced: isSynced
};
sync.id = await sql.replace("sync", sync);
return sync;
}
2020-03-09 21:28:41 +01:00
async function addEntitySync(entityName, entityId, sourceId, isSynced = true) {
const sync = await insertEntitySync(entityName, entityId, sourceId, isSynced);
2020-01-31 22:32:24 +01:00
cls.addSyncRow(sync);
}
async function addEntitySyncsForSector(entityName, entityPrimaryKey, sector) {
const entityIds = await sql.getColumn(`SELECT ${entityPrimaryKey} FROM ${entityName} WHERE SUBSTR(${entityPrimaryKey}, 1, 1) = ?`, [sector]);
for (const entityId of entityIds) {
2020-03-09 21:28:41 +01:00
if (entityName === 'options') {
const isSynced = await sql.getValue(`SELECT isSynced FROM options WHERE name = ?`, [entityId]);
if (!isSynced) {
continue;
}
}
await insertEntitySync(entityName, entityId, 'content-check', true);
}
}
async function cleanupSyncRowsForMissingEntities(entityName, entityPrimaryKey) {
await sql.execute(`
DELETE
FROM sync
2018-01-28 19:30:14 -05:00
WHERE sync.entityName = '${entityName}'
AND sync.entityId NOT IN (SELECT ${entityPrimaryKey} FROM ${entityName})`);
}
async function fillSyncRows(entityName, entityPrimaryKey, condition = '') {
try {
await cleanupSyncRowsForMissingEntities(entityName, entityPrimaryKey);
const entityIds = await sql.getColumn(`SELECT ${entityPrimaryKey} FROM ${entityName}`
+ (condition ? ` WHERE ${condition}` : ''));
let createdCount = 0;
for (const entityId of entityIds) {
2019-12-01 15:01:09 +01:00
const existingRows = await sql.getValue("SELECT COUNT(1) FROM sync WHERE entityName = ? AND entityId = ?", [entityName, entityId]);
// we don't want to replace existing entities (which would effectively cause full resync)
if (existingRows === 0) {
createdCount++;
await sql.insert("sync", {
entityName: entityName,
entityId: entityId,
sourceId: "SYNC_FILL",
utcSyncDate: dateUtils.utcNowDateTime()
});
}
}
if (createdCount > 0) {
log.info(`Created ${createdCount} missing sync records for ${entityName}.`);
}
}
catch (e) {
// this is to fix migration from 0.30 to 0.32, can be removed later
// see https://github.com/zadam/trilium/issues/557
log.error(`Filling sync rows failed for ${entityName} ${entityPrimaryKey} with error "${e.message}", continuing`);
}
}
async function fillAllSyncRows() {
2018-04-07 22:25:28 -04:00
await sql.execute("DELETE FROM sync");
2018-01-28 19:30:14 -05:00
await fillSyncRows("notes", "noteId");
2019-03-27 21:04:25 +01:00
await fillSyncRows("note_contents", "noteId");
2018-03-24 21:39:15 -04:00
await fillSyncRows("branches", "branchId");
await fillSyncRows("note_revisions", "noteRevisionId");
2019-11-01 20:00:56 +01:00
await fillSyncRows("note_revision_contents", "noteRevisionId");
await fillSyncRows("recent_notes", "noteId");
await fillSyncRows("attributes", "attributeId");
2018-02-11 00:18:59 -05:00
await fillSyncRows("api_tokens", "apiTokenId");
await fillSyncRows("options", "name", 'isSynced = 1');
}
module.exports = {
addNoteSync: async (noteId, sourceId) => await addEntitySync("notes", noteId, sourceId),
addNoteContentSync: async (noteId, sourceId) => await addEntitySync("note_contents", noteId, sourceId),
addBranchSync: async (branchId, sourceId) => await addEntitySync("branches", branchId, sourceId),
addNoteReorderingSync: async (parentNoteId, sourceId) => await addEntitySync("note_reordering", parentNoteId, sourceId),
addNoteRevisionSync: async (noteRevisionId, sourceId) => await addEntitySync("note_revisions", noteRevisionId, sourceId),
2019-11-01 20:00:56 +01:00
addNoteRevisionContentSync: async (noteRevisionId, sourceId) => await addEntitySync("note_revision_contents", noteRevisionId, sourceId),
2020-03-09 21:28:41 +01:00
addOptionsSync: async (name, sourceId, isSynced) => await addEntitySync("options", name, sourceId, isSynced),
addRecentNoteSync: async (noteId, sourceId) => await addEntitySync("recent_notes", noteId, sourceId),
addAttributeSync: async (attributeId, sourceId) => await addEntitySync("attributes", attributeId, sourceId),
addApiTokenSync: async (apiTokenId, sourceId) => await addEntitySync("api_tokens", apiTokenId, sourceId),
2018-01-30 20:12:19 -05:00
addEntitySync,
fillAllSyncRows,
addEntitySyncsForSector
};