trilium/services/sync.js

248 lines
6.3 KiB
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
2017-10-26 10:39:21 +08:00
const log = require('./log');
const rp = require('request-promise');
const sql = require('./sql');
const migration = require('./migration');
2017-10-27 09:16:21 +08:00
const utils = require('./utils');
const config = require('./config');
const audit_category = require('./audit_category');
2017-10-29 10:17:00 +08:00
const crypto = require('crypto');
const SYNC_SERVER = config['Sync']['syncServerHost'];
2017-10-26 10:39:21 +08:00
let syncInProgress = false;
2017-10-29 23:22:41 +08:00
async function pullSync(cookieJar, syncLog) {
2017-10-27 09:16:21 +08:00
const lastSyncedPull = parseInt(await sql.getOption('last_synced_pull'));
const resp = await rp({
2017-10-27 09:16:21 +08:00
uri: SYNC_SERVER + '/api/sync/changed/' + lastSyncedPull,
headers: {
auth: 'sync'
},
json: true
});
2017-10-26 10:39:21 +08:00
try {
await sql.beginTransaction();
2017-10-26 10:39:21 +08:00
2017-10-29 23:22:41 +08:00
await putChanged(resp, syncLog);
2017-10-26 10:39:21 +08:00
for (const noteId of resp.notes) {
const note = await rp({
2017-10-27 09:16:21 +08:00
uri: SYNC_SERVER + "/api/sync/note/" + noteId + "/" + lastSyncedPull,
headers: {
auth: 'sync'
},
2017-10-29 10:17:00 +08:00
json: true,
jar: cookieJar
});
2017-10-26 10:39:21 +08:00
2017-10-29 23:22:41 +08:00
await putNote(note, syncLog);
}
2017-10-26 10:39:21 +08:00
2017-10-27 08:54:10 +08:00
await sql.setOption('last_synced_pull', resp.syncTimestamp);
2017-10-26 10:39:21 +08:00
await sql.commit();
}
catch (e) {
await sql.rollback();
2017-10-26 10:39:21 +08:00
throw e;
}
}
2017-10-26 10:39:21 +08:00
2017-10-29 23:22:41 +08:00
async function pushSync(cookieJar, syncLog) {
2017-10-27 09:16:21 +08:00
const lastSyncedPush = parseInt(await sql.getOption('last_synced_push'));
const syncStarted = utils.nowTimestamp();
const changed = await getChangedSince(lastSyncedPush);
2017-10-26 10:39:21 +08:00
2017-10-29 23:22:41 +08:00
if (changed.tree.length > 0 || changed.audit_log.length > 0) {
logSync("Sending " + changed.tree.length + " tree changes and " + changed.audit_log.length + " audit changes", syncLog);
await rp({
method: 'PUT',
uri: SYNC_SERVER + '/api/sync/changed',
headers: {
auth: 'sync'
},
body: changed,
json: true,
jar: cookieJar
});
}
2017-10-27 09:16:21 +08:00
for (const noteId of changed.notes) {
2017-10-29 23:22:41 +08:00
logSync("Sending note " + noteId, syncLog);
2017-10-27 09:16:21 +08:00
const note = await getNoteSince(noteId);
await rp({
method: 'PUT',
uri: SYNC_SERVER + '/api/sync/note',
headers: {
auth: 'sync'
},
body: note,
2017-10-29 10:17:00 +08:00
json: true,
jar: cookieJar
2017-10-27 09:16:21 +08:00
});
}
await sql.setOption('last_synced_push', syncStarted);
}
2017-10-26 10:39:21 +08:00
2017-10-29 10:17:00 +08:00
async function login() {
const timestamp = utils.nowTimestamp();
2017-10-29 23:22:41 +08:00
const documentSecret = await sql.getOption('document_secret');
const hmac = crypto.createHmac('sha256', Buffer.from(documentSecret.toString(), 'ASCII'));
hmac.update(timestamp.toString());
2017-10-29 10:17:00 +08:00
const hash = hmac.digest('base64');
const cookieJar = rp.jar();
await rp({
method: 'POST',
uri: SYNC_SERVER + '/api/login',
body: {
timestamp: timestamp,
dbVersion: migration.APP_DB_VERSION,
hash: hash
},
json: true,
jar: cookieJar
});
return cookieJar;
}
async function sync() {
if (syncInProgress) {
return;
}
2017-10-26 10:39:21 +08:00
syncInProgress = true;
2017-10-29 23:22:41 +08:00
const syncLog = [];
try {
if (!await migration.isDbUpToDate()) {
return;
2017-10-26 10:39:21 +08:00
}
2017-10-29 10:17:00 +08:00
const cookieJar = await login();
2017-10-29 23:22:41 +08:00
await pushSync(cookieJar, syncLog);
2017-10-29 23:22:41 +08:00
await pullSync(cookieJar, syncLog);
2017-10-26 10:39:21 +08:00
}
catch (e) {
2017-10-29 23:22:41 +08:00
logSync("sync failed: " + e.stack, syncLog);
2017-10-26 10:39:21 +08:00
}
finally {
syncInProgress = false;
}
2017-10-29 23:22:41 +08:00
return syncLog;
}
function logSync(message, syncLog) {
log.info(message);
if (syncLog !== null) {
syncLog.push(message);
}
}
2017-10-27 09:16:21 +08:00
async function getChangedSince(since) {
return {
'documentId': await getDocumentId(),
2017-10-27 09:16:21 +08:00
'syncTimestamp': utils.nowTimestamp(),
'tree': await sql.getResults("select * from notes_tree where date_modified >= ?", [since]),
'notes': await sql.getFlattenedResults('note_id', "select note_id from notes where date_modified >= ?", [since]),
'audit_log': await sql.getResults("select * from audit_log where date_modified >= ?", [since])
};
}
async function getNoteSince(noteId, since) {
return {
'detail': await sql.getSingleResult("select * from notes where note_id = ?", [noteId]),
'images': await sql.getResults("select * from images where note_id = ? order by note_offset", [noteId]),
'history': await sql.getResults("select * from notes_history where note_id = ? and date_modified_to >= ?", [noteId, since])
};
}
2017-10-29 23:22:41 +08:00
async function putChanged(changed, syncLog) {
2017-10-27 09:16:21 +08:00
for (const treeItem of changed.tree) {
delete treeItem['id'];
await sql.insert("notes_tree", treeItem, true);
2017-10-29 23:22:41 +08:00
logSync("Update/sync notes_tree " + treeItem.note_id, syncLog);
2017-10-27 09:16:21 +08:00
}
for (const audit of changed.audit_log) {
await sql.insert("audit_log", audit, true);
2017-10-29 23:22:41 +08:00
logSync("Update/sync audit_log for noteId=" + audit.note_id, syncLog);
2017-10-27 09:16:21 +08:00
}
if (changed.tree.length > 0 || changed.audit_log.length > 0) {
2017-10-29 23:22:41 +08:00
logSync("Added final audit", syncLog);
await sql.addAudit(audit_category.SYNC);
}
2017-10-27 09:16:21 +08:00
}
2017-10-29 23:22:41 +08:00
async function putNote(note, syncLog) {
const origNote = await sql.getSingleResult();
if (origNote !== null && origNote.date_modified >= note.detail.date_modified) {
// version we have in DB is actually newer than the one we're getting from sync
// so we'll leave the current state as it is. The synced version should be stored in the history
}
else {
await sql.insert("notes", note.detail, true);
}
2017-10-27 09:16:21 +08:00
await sql.remove("images", note.detail.note_id);
2017-10-27 09:16:21 +08:00
for (const image of note.images) {
await sql.insert("images", image);
}
for (const history of note.history) {
delete history['id'];
await sql.insert("notes_history", history);
}
await sql.addAudit(audit_category.SYNC);
2017-10-29 23:22:41 +08:00
logSync("Update/sync note " + note.detail.note_id, syncLog);
2017-10-27 09:16:21 +08:00
}
if (SYNC_SERVER) {
log.info("Setting up sync");
2017-10-26 10:39:21 +08:00
setInterval(sync, 60000);
// kickoff initial sync immediately
setTimeout(sync, 1000);
}
else {
log.info("Sync server not configured, sync timer not running.")
}
2017-10-27 09:16:21 +08:00
module.exports = {
2017-10-29 23:22:41 +08:00
sync,
2017-10-27 09:16:21 +08:00
getChangedSince,
getNoteSince,
putChanged,
putNote
};