Files
notesnook/packages/core/api/sync/index.js

225 lines
6.9 KiB
JavaScript
Raw Normal View History

2020-04-09 16:36:57 +05:00
/**
* GENERAL PROCESS:
* make a get request to server with current lastSynced
2020-04-09 16:36:57 +05:00
* parse the response. the response should contain everything that user has on the server
* decrypt the response
* merge everything into the database and look for conflicts
* send the conflicts (if any) to the end-user for resolution
* once the conflicts have been resolved, send the updated data back to the server
*/
/**
* MERGING:
* Locally, get everything that was editted/added after the lastSynced
2020-04-09 16:36:57 +05:00
* Run forEach loop on the server response.
* Add items that do not exist in the local collections
* Remove items (without asking) that need to be removed
* Update items that were editted before the lastSynced
* Try to merge items that were edited after the lastSynced
2020-04-09 16:36:57 +05:00
* Items in which the content has changed, send them for conflict resolution
* Otherwise, keep the most recently updated copy.
*/
/**
* CONFLICTS:
* Syncing should pause until all the conflicts have been resolved
* And then it should continue.
*/
2021-10-26 23:06:52 +05:00
import {
checkIsUserPremium,
CHECK_IDS,
EV,
EVENTS,
sendAttachmentsProgressEvent,
} from "../../common";
import Constants from "../../utils/constants";
2020-12-16 12:06:25 +05:00
import http from "../../utils/http";
import TokenManager from "../token-manager";
import Collector from "./collector";
2020-04-09 16:36:57 +05:00
import Merger from "./merger";
import { areAllEmpty } from "./utils";
2021-10-26 23:06:52 +05:00
import { Mutex, withTimeout } from "async-mutex";
2020-04-09 16:36:57 +05:00
export default class Sync {
/**
*
* @param {import("../index").default} db
2020-04-09 16:36:57 +05:00
*/
constructor(db) {
this._db = db;
this._collector = new Collector(this._db);
this._merger = new Merger(this._db);
this._tokenManager = new TokenManager(this._db.storage);
2021-10-26 23:06:52 +05:00
this._autoSyncTimeout = 0;
this._autoSyncInterval = 0;
2020-04-09 16:36:57 +05:00
2021-10-26 23:06:52 +05:00
this.syncMutex = withTimeout(
new Mutex(),
20 * 1000,
new Error("Sync timed out.")
2020-12-16 12:06:25 +05:00
);
2020-04-09 16:36:57 +05:00
}
2020-12-11 20:19:28 +05:00
async start(full, force) {
2021-10-26 23:06:52 +05:00
if (this.syncMutex.isLocked()) return false;
return this.syncMutex
.runExclusive(() => {
this.stopAutoSync();
return this._sync(full, force);
})
.finally(() => this._afterSync());
}
2021-10-26 23:06:52 +05:00
async _sync(full, force) {
let { lastSynced } = await this._performChecks();
2021-10-26 23:06:52 +05:00
if (force) lastSynced = 0;
// We request and merge remote attachments beforehand to handle
// all possible conflicts that will occur if a user attaches
// the same file/image on both his devices. Since both files
// will have the same hash but different encryption key, it
// will cause problems on the local device.
await this._mergeAttachments(lastSynced);
2021-10-26 23:06:52 +05:00
// All pending attachments are uploaded before anything else.
// This is done to ensure that when any note arrives on user's
// device, its attachments can be downloaded.
await this._uploadAttachments();
// We collect, encrypt, and ready local changes before asking
// the server for remote changes. This is done to ensure we
// don't accidentally send the remote changes back to the server.
const data = await this._collector.collect(lastSynced);
if (full) {
// We request remote changes and merge them. If any new changes
// come before or during this step (e.g. SSE), it can be safely
// ignored because the `lastSynced` time can never be newer
// than the change time.
var serverResponse = await this._fetch(lastSynced);
2021-10-26 23:06:52 +05:00
await this._merger.merge(serverResponse, lastSynced);
await this._db.conflicts.check();
2021-10-26 23:06:52 +05:00
// ignore the changes that have arrived uptil this point.
// this.hasNewChanges = false;
2021-10-26 23:06:52 +05:00
}
2020-04-09 16:36:57 +05:00
2021-10-26 23:06:52 +05:00
// We update the local last synced time before pushing local data
// to the server. This is necessary to ensure that if the user
// makes any local changes during the HTTP request, it is not ignored.
// This is also the last synced time that is set for later sync cycles.
if (!areAllEmpty(data)) {
data.lastSynced = Date.now();
lastSynced = await this._send(data);
} else if (serverResponse) lastSynced = serverResponse.lastSynced;
await this._db.storage.write("lastSynced", lastSynced);
2021-10-26 23:06:52 +05:00
return true;
}
2021-10-26 23:06:52 +05:00
async remoteSync() {
if (this.syncMutex.isLocked()) {
this.hasNewChanges = true;
return;
2020-08-22 11:25:23 +05:00
}
2021-10-26 23:06:52 +05:00
await this.syncMutex
.runExclusive(async () => {
this.stopAutoSync();
this.hasNewChanges = false;
2021-10-26 23:06:52 +05:00
await this._sync(true, false);
EV.publish(EVENTS.appRefreshRequested);
})
.finally(() => this._afterSync());
2020-04-09 16:36:57 +05:00
}
2021-10-26 23:06:52 +05:00
async startAutoSync() {
if (!(await checkIsUserPremium(CHECK_IDS.databaseSync))) return;
this.databaseUpdatedEvent = EV.subscribe(
EVENTS.databaseUpdated,
this._scheduleSync.bind(this)
);
}
2021-10-26 23:06:52 +05:00
stopAutoSync() {
clearTimeout(this._autoSyncTimeout);
if (this.databaseUpdatedEvent) this.databaseUpdatedEvent.unsubscribe();
2021-10-26 23:06:52 +05:00
}
2020-12-29 15:32:56 +05:00
2021-10-26 23:06:52 +05:00
async _afterSync() {
if (!this.hasNewChanges) {
this.startAutoSync();
} else {
return this.remoteSync();
}
2021-10-26 23:06:52 +05:00
}
2021-10-26 23:06:52 +05:00
_scheduleSync() {
this.stopAutoSync();
this._autoSyncTimeout = setTimeout(() => {
EV.publish(EVENTS.databaseSyncRequested);
}, this._autoSyncTimeout);
}
async _send(data) {
let token = await this._tokenManager.getAccessToken();
2020-12-16 12:06:25 +05:00
let response = await http.post.json(
`${Constants.API_HOST}/sync`,
data,
token
);
return response.lastSynced;
2020-04-09 16:36:57 +05:00
}
2021-09-20 12:10:36 +05:00
async _mergeAttachments(lastSynced) {
let token = await this._tokenManager.getAccessToken();
var serverResponse = await this._fetchAttachments(lastSynced, token);
await this._merger.merge(serverResponse, lastSynced);
}
async _uploadAttachments() {
2021-09-20 12:10:36 +05:00
const attachments = this._db.attachments.pending;
try {
for (var i = 0; i < attachments.length; ++i) {
const attachment = attachments[i];
const { hash } = attachment.metadata;
2021-10-28 13:15:30 +05:00
sendAttachmentsProgressEvent("upload", hash, attachments.length, i + 1);
2021-09-20 12:10:36 +05:00
const isUploaded = await this._db.fs.uploadFile(hash, hash);
if (!isUploaded) throw new Error("Failed to upload file.");
2021-09-20 12:10:36 +05:00
await this._db.attachments.markAsUploaded(attachment.id);
}
} catch (e) {
throw new Error("Failed to upload attachments. Error: " + e.message);
} finally {
sendAttachmentsProgressEvent("upload", null, attachments.length);
}
2021-09-20 12:10:36 +05:00
}
2021-10-26 23:06:52 +05:00
async _performChecks() {
let lastSynced = (await this._db.lastSynced()) || 0;
// update the conflicts status and if find any, throw
await this._db.conflicts.recalculate();
await this._db.conflicts.check();
return { lastSynced };
2021-10-26 23:06:52 +05:00
}
async _fetch(lastSynced) {
let token = await this._tokenManager.getAccessToken();
2021-10-26 23:06:52 +05:00
return await http.get(
`${Constants.API_HOST}/sync?lst=${lastSynced}`,
token
);
}
async _fetchAttachments(lastSynced) {
let token = await this._tokenManager.getAccessToken();
2021-10-26 23:06:52 +05:00
return await http.get(
`${Constants.API_HOST}/sync/attachments?lst=${lastSynced}`,
token
);
}
2020-04-09 16:36:57 +05:00
}