2017-06-24 20:06:28 +02:00
|
|
|
import { BaseItem } from 'lib/models/base-item.js';
|
|
|
|
import { Folder } from 'lib/models/folder.js';
|
|
|
|
import { Note } from 'lib/models/note.js';
|
2017-07-02 14:02:07 +02:00
|
|
|
import { Resource } from 'lib/models/resource.js';
|
2017-06-24 20:06:28 +02:00
|
|
|
import { BaseModel } from 'lib/base-model.js';
|
2017-06-16 00:12:00 +02:00
|
|
|
import { sprintf } from 'sprintf-js';
|
2017-06-24 20:06:28 +02:00
|
|
|
import { time } from 'lib/time-utils.js';
|
|
|
|
import { Logger } from 'lib/logger.js'
|
2017-06-23 23:32:24 +02:00
|
|
|
import moment from 'moment';
|
2017-05-18 21:58:01 +02:00
|
|
|
|
|
|
|
class Synchronizer {
|
|
|
|
|
2017-07-07 00:15:31 +02:00
|
|
|
constructor(db, api, appType) {
|
2017-06-24 19:40:03 +02:00
|
|
|
this.state_ = 'idle';
|
2017-05-19 21:12:09 +02:00
|
|
|
this.db_ = db;
|
|
|
|
this.api_ = api;
|
2017-06-23 20:51:02 +02:00
|
|
|
this.syncDirName_ = '.sync';
|
2017-07-02 14:02:07 +02:00
|
|
|
this.resourceDirName_ = '.resource';
|
2017-06-23 23:32:24 +02:00
|
|
|
this.logger_ = new Logger();
|
2017-07-07 00:15:31 +02:00
|
|
|
this.appType_ = appType;
|
2017-07-09 17:47:05 +02:00
|
|
|
this.cancelling_ = false;
|
2017-05-18 21:58:01 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
state() {
|
|
|
|
return this.state_;
|
|
|
|
}
|
|
|
|
|
2017-05-18 21:58:01 +02:00
|
|
|
db() {
|
2017-05-19 21:12:09 +02:00
|
|
|
return this.db_;
|
2017-05-18 21:58:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
api() {
|
2017-05-19 21:12:09 +02:00
|
|
|
return this.api_;
|
2017-05-18 21:58:01 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 23:32:24 +02:00
|
|
|
setLogger(l) {
|
|
|
|
this.logger_ = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger() {
|
|
|
|
return this.logger_;
|
|
|
|
}
|
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
logSyncOperation(action, local, remote, reason) {
|
|
|
|
let line = ['Sync'];
|
|
|
|
line.push(action);
|
|
|
|
line.push(reason);
|
|
|
|
|
|
|
|
if (local) {
|
|
|
|
let s = [];
|
|
|
|
s.push(local.id);
|
|
|
|
if ('title' in local) s.push('"' + local.title + '"');
|
|
|
|
line.push('(Local ' + s.join(', ') + ')');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remote) {
|
|
|
|
let s = [];
|
|
|
|
s.push(remote.id);
|
|
|
|
if ('title' in remote) s.push('"' + remote.title + '"');
|
|
|
|
line.push('(Remote ' + s.join(', ') + ')');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.logger().debug(line.join(': '));
|
|
|
|
}
|
|
|
|
|
|
|
|
async logSyncSummary(report) {
|
|
|
|
for (let n in report) {
|
2017-07-01 00:53:22 +02:00
|
|
|
if (!report.hasOwnProperty(n)) continue;
|
2017-07-11 01:17:03 +02:00
|
|
|
if (n == 'errors') continue;
|
2017-06-24 19:40:03 +02:00
|
|
|
this.logger().info(n + ': ' + (report[n] ? report[n] : '-'));
|
|
|
|
}
|
|
|
|
let folderCount = await Folder.count();
|
|
|
|
let noteCount = await Note.count();
|
2017-07-02 14:02:07 +02:00
|
|
|
let resourceCount = await Resource.count();
|
2017-06-24 19:40:03 +02:00
|
|
|
this.logger().info('Total folders: ' + folderCount);
|
|
|
|
this.logger().info('Total notes: ' + noteCount);
|
2017-07-02 14:02:07 +02:00
|
|
|
this.logger().info('Total resources: ' + resourceCount);
|
2017-07-10 01:20:38 +02:00
|
|
|
|
|
|
|
if (report.errors.length) {
|
|
|
|
this.logger().warn('There was some errors:');
|
|
|
|
for (let i = 0; i < report.errors.length; i++) {
|
|
|
|
let e = report.errors[i];
|
2017-07-11 01:17:03 +02:00
|
|
|
//let msg = JSON.stringify(e); //e && e.message ? e.message : JSON.stringify(e);
|
|
|
|
this.logger().warn(e);
|
2017-07-10 01:20:38 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-23 20:51:02 +02:00
|
|
|
}
|
|
|
|
|
2017-07-02 12:34:07 +02:00
|
|
|
randomFailure(options, name) {
|
|
|
|
if (!options.randomFailures) return false;
|
|
|
|
|
|
|
|
if (this.randomFailureChoice_ == name) {
|
|
|
|
options.onMessage('Random failure: ' + name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:47:05 +02:00
|
|
|
cancel() {
|
|
|
|
if (this.cancelling_) return;
|
|
|
|
|
|
|
|
this.logger().info('Cancelling synchronization...');
|
|
|
|
this.cancelling_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
cancelling() {
|
|
|
|
return this.cancelling_;
|
|
|
|
}
|
|
|
|
|
2017-06-30 19:54:01 +02:00
|
|
|
async start(options = null) {
|
|
|
|
if (!options) options = {};
|
|
|
|
if (!options.onProgress) options.onProgress = function(o) {};
|
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
if (this.state() != 'idle') {
|
|
|
|
this.logger().warn('Synchronization is already in progress. State: ' + this.state());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-02 12:34:07 +02:00
|
|
|
this.randomFailureChoice_ = Math.floor(Math.random() * 5);
|
2017-07-09 17:47:05 +02:00
|
|
|
this.cancelling_ = false;
|
2017-07-02 12:34:07 +02:00
|
|
|
|
2017-06-19 00:06:10 +02:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// First, find all the items that have been changed since the
|
|
|
|
// last sync and apply the changes to remote.
|
|
|
|
// ------------------------------------------------------------------------
|
2017-06-15 20:18:48 +02:00
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
let synchronizationId = time.unixMs().toString();
|
|
|
|
this.logger().info('Starting synchronization... [' + synchronizationId + ']');
|
|
|
|
|
|
|
|
this.state_ = 'started';
|
|
|
|
|
|
|
|
let report = {
|
2017-06-30 19:54:01 +02:00
|
|
|
remotesToUpdate: 0,
|
|
|
|
remotesToDelete: 0,
|
|
|
|
localsToUdpate: 0,
|
|
|
|
localsToDelete: 0,
|
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
createLocal: 0,
|
|
|
|
updateLocal: 0,
|
|
|
|
deleteLocal: 0,
|
|
|
|
createRemote: 0,
|
|
|
|
updateRemote: 0,
|
|
|
|
deleteRemote: 0,
|
2017-07-02 14:02:07 +02:00
|
|
|
itemConflict: 0,
|
2017-06-24 19:40:03 +02:00
|
|
|
noteConflict: 0,
|
2017-07-08 00:25:03 +02:00
|
|
|
|
|
|
|
state: this.state(),
|
2017-07-10 01:20:38 +02:00
|
|
|
errors: [],
|
2017-06-24 19:40:03 +02:00
|
|
|
};
|
2017-06-23 23:32:24 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
try {
|
2017-07-02 14:02:07 +02:00
|
|
|
await this.api().mkdir(this.syncDirName_);
|
|
|
|
await this.api().mkdir(this.resourceDirName_);
|
2017-06-29 20:03:16 +02:00
|
|
|
|
|
|
|
let donePaths = [];
|
|
|
|
while (true) {
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let result = await BaseItem.itemsThatNeedSync();
|
|
|
|
let locals = result.items;
|
|
|
|
|
2017-06-30 19:54:01 +02:00
|
|
|
report.remotesToUpdate += locals.length;
|
|
|
|
options.onProgress(report);
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
for (let i = 0; i < locals.length; i++) {
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let local = locals[i];
|
|
|
|
let ItemClass = BaseItem.itemClass(local);
|
|
|
|
let path = BaseItem.systemPath(local);
|
|
|
|
|
|
|
|
// Safety check to avoid infinite loops:
|
|
|
|
if (donePaths.indexOf(path) > 0) throw new Error(sprintf('Processing a path that has already been done: %s. sync_time was not updated?', path));
|
|
|
|
|
|
|
|
let remote = await this.api().stat(path);
|
2017-07-02 17:46:03 +02:00
|
|
|
let content = await ItemClass.serialize(local);
|
2017-06-29 20:03:16 +02:00
|
|
|
let action = null;
|
|
|
|
let updateSyncTimeOnly = true;
|
|
|
|
let reason = '';
|
|
|
|
|
|
|
|
if (!remote) {
|
|
|
|
if (!local.sync_time) {
|
|
|
|
action = 'createRemote';
|
|
|
|
reason = 'remote does not exist, and local is new and has never been synced';
|
|
|
|
} else {
|
2017-07-02 14:02:07 +02:00
|
|
|
// Note or item was modified after having been deleted remotely
|
2017-07-03 21:50:45 +02:00
|
|
|
action = local.type_ == BaseModel.TYPE_NOTE ? 'noteConflict' : 'itemConflict';
|
2017-06-29 20:03:16 +02:00
|
|
|
reason = 'remote has been deleted, but local has changes';
|
|
|
|
}
|
2017-06-20 00:18:24 +02:00
|
|
|
} else {
|
2017-06-29 20:03:16 +02:00
|
|
|
if (remote.updated_time > local.sync_time) {
|
|
|
|
// Since, in this loop, we are only dealing with notes that require sync, if the
|
|
|
|
// remote has been modified after the sync time, it means both notes have been
|
|
|
|
// modified and so there's a conflict.
|
2017-07-03 21:50:45 +02:00
|
|
|
action = local.type_ == BaseModel.TYPE_NOTE ? 'noteConflict' : 'itemConflict';
|
2017-06-29 20:03:16 +02:00
|
|
|
reason = 'both remote and local have changes';
|
|
|
|
} else {
|
|
|
|
action = 'updateRemote';
|
|
|
|
reason = 'local has changes';
|
|
|
|
}
|
2017-06-20 00:18:24 +02:00
|
|
|
}
|
2017-06-14 00:39:45 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
this.logSyncOperation(action, local, remote, reason);
|
2017-06-19 21:18:22 +02:00
|
|
|
|
2017-07-02 22:40:50 +02:00
|
|
|
|
2017-07-03 21:50:45 +02:00
|
|
|
if (local.type_ == BaseModel.TYPE_RESOURCE && (action == 'createRemote' || (action == 'itemConflict' && remote))) {
|
2017-07-02 14:02:07 +02:00
|
|
|
let remoteContentPath = this.resourceDirName_ + '/' + local.id;
|
|
|
|
let resourceContent = await Resource.content(local);
|
|
|
|
await this.api().put(remoteContentPath, resourceContent);
|
|
|
|
}
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (action == 'createRemote' || action == 'updateRemote') {
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
// Make the operation atomic by doing the work on a copy of the file
|
|
|
|
// and then copying it back to the original location.
|
2017-07-13 00:32:08 +02:00
|
|
|
// let tempPath = this.syncDirName_ + '/' + path + '_' + time.unixMs();
|
|
|
|
//
|
|
|
|
// Atomic operation is disabled for now because it's not possible
|
|
|
|
// to do an atomic move with OneDrive (see file-api-driver-onedrive.js)
|
2017-06-29 20:03:16 +02:00
|
|
|
|
2017-07-13 00:32:08 +02:00
|
|
|
// await this.api().put(tempPath, content);
|
|
|
|
// await this.api().setTimestamp(tempPath, local.updated_time);
|
|
|
|
// await this.api().move(tempPath, path);
|
|
|
|
|
|
|
|
await this.api().put(path, content);
|
2017-07-02 12:34:07 +02:00
|
|
|
|
|
|
|
if (this.randomFailure(options, 0)) return;
|
2017-07-13 20:47:31 +02:00
|
|
|
|
|
|
|
await this.api().setTimestamp(path, local.updated_time);
|
|
|
|
|
|
|
|
if (this.randomFailure(options, 1)) return;
|
2017-06-29 20:03:16 +02:00
|
|
|
|
|
|
|
await ItemClass.save({ id: local.id, sync_time: time.unixMs(), type_: local.type_ }, { autoTimestamp: false });
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-07-02 14:02:07 +02:00
|
|
|
} else if (action == 'itemConflict') {
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (remote) {
|
|
|
|
let remoteContent = await this.api().get(path);
|
2017-07-02 17:46:03 +02:00
|
|
|
local = await BaseItem.unserialize(remoteContent);
|
2017-06-20 21:25:01 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
local.sync_time = time.unixMs();
|
|
|
|
await ItemClass.save(local, { autoTimestamp: false });
|
|
|
|
} else {
|
|
|
|
await ItemClass.delete(local.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (action == 'noteConflict') {
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
// - Create a duplicate of local note into Conflicts folder (to preserve the user's changes)
|
|
|
|
// - Overwrite local note with remote note
|
|
|
|
let conflictedNote = Object.assign({}, local);
|
|
|
|
delete conflictedNote.id;
|
|
|
|
conflictedNote.is_conflict = 1;
|
|
|
|
await Note.save(conflictedNote, { autoTimestamp: false });
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-07-13 20:47:31 +02:00
|
|
|
if (this.randomFailure(options, 2)) return;
|
2017-07-02 12:34:07 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (remote) {
|
|
|
|
let remoteContent = await this.api().get(path);
|
2017-07-02 17:46:03 +02:00
|
|
|
local = await BaseItem.unserialize(remoteContent);
|
2017-06-19 20:58:49 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
local.sync_time = time.unixMs();
|
|
|
|
await ItemClass.save(local, { autoTimestamp: false });
|
2017-07-02 22:40:50 +02:00
|
|
|
} else {
|
|
|
|
await ItemClass.delete(local.id);
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
2017-06-19 20:58:49 +02:00
|
|
|
|
2017-06-20 21:25:01 +02:00
|
|
|
}
|
2017-06-18 01:49:52 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
report[action]++;
|
2017-06-03 18:20:17 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
donePaths.push(path);
|
2017-06-30 19:54:01 +02:00
|
|
|
|
|
|
|
options.onProgress(report);
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
2017-06-24 19:40:03 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (!result.hasMore) break;
|
2017-06-19 00:06:10 +02:00
|
|
|
}
|
2017-06-03 18:20:17 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Delete the remote items that have been deleted locally.
|
|
|
|
// ------------------------------------------------------------------------
|
2017-06-16 00:12:00 +02:00
|
|
|
|
2017-07-03 21:50:45 +02:00
|
|
|
let deletedItems = await BaseItem.deletedItems();
|
2017-06-30 19:54:01 +02:00
|
|
|
report.remotesToDelete = deletedItems.length;
|
|
|
|
options.onProgress(report);
|
2017-06-29 20:03:16 +02:00
|
|
|
for (let i = 0; i < deletedItems.length; i++) {
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let item = deletedItems[i];
|
|
|
|
let path = BaseItem.systemPath(item.item_id)
|
|
|
|
this.logSyncOperation('deleteRemote', null, { id: item.item_id }, 'local has been deleted');
|
|
|
|
await this.api().delete(path);
|
2017-07-13 20:47:31 +02:00
|
|
|
if (this.randomFailure(options, 3)) return;
|
2017-07-03 21:50:45 +02:00
|
|
|
await BaseItem.remoteDeletedItem(item.item_id);
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
report['deleteRemote']++;
|
2017-06-30 19:54:01 +02:00
|
|
|
options.onProgress(report);
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
2017-06-24 19:40:03 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Loop through all the remote items, find those that
|
|
|
|
// have been updated, and apply the changes to local.
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// At this point all the local items that have changed have been pushed to remote
|
|
|
|
// or handled as conflicts, so no conflict is possible after this.
|
|
|
|
|
|
|
|
let remoteIds = [];
|
|
|
|
let context = null;
|
|
|
|
|
|
|
|
while (true) {
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let listResult = await this.api().list('', { context: context });
|
|
|
|
let remotes = listResult.items;
|
|
|
|
for (let i = 0; i < remotes.length; i++) {
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let remote = remotes[i];
|
|
|
|
let path = remote.path;
|
|
|
|
|
|
|
|
remoteIds.push(BaseItem.pathToId(path));
|
|
|
|
if (donePaths.indexOf(path) > 0) continue;
|
|
|
|
|
|
|
|
let action = null;
|
|
|
|
let reason = '';
|
|
|
|
let local = await BaseItem.loadItemByPath(path);
|
|
|
|
if (!local) {
|
|
|
|
action = 'createLocal';
|
|
|
|
reason = 'remote exists but local does not';
|
|
|
|
} else {
|
|
|
|
if (remote.updated_time > local.updated_time) {
|
|
|
|
action = 'updateLocal';
|
2017-07-01 00:53:22 +02:00
|
|
|
reason = sprintf('remote is more recent than local');
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (!action) continue;
|
2017-06-15 01:14:15 +02:00
|
|
|
|
2017-06-30 19:54:01 +02:00
|
|
|
report.localsToUdpate++;
|
|
|
|
options.onProgress(report);
|
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (action == 'createLocal' || action == 'updateLocal') {
|
|
|
|
let content = await this.api().get(path);
|
|
|
|
if (content === null) {
|
|
|
|
this.logger().warn('Remote has been deleted between now and the list() call? In that case it will be handled during the next sync: ' + path);
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-02 17:46:03 +02:00
|
|
|
content = await BaseItem.unserialize(content);
|
2017-06-29 20:03:16 +02:00
|
|
|
let ItemClass = BaseItem.itemClass(content);
|
2017-06-14 21:59:46 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
let newContent = Object.assign({}, content);
|
|
|
|
newContent.sync_time = time.unixMs();
|
2017-07-03 20:29:19 +02:00
|
|
|
let options = {
|
|
|
|
autoTimestamp: false,
|
|
|
|
applyMetadataChanges: true,
|
|
|
|
};
|
2017-06-29 20:03:16 +02:00
|
|
|
if (action == 'createLocal') options.isNew = true;
|
2017-07-02 14:02:07 +02:00
|
|
|
|
2017-07-06 23:30:45 +02:00
|
|
|
if (newContent.type_ == BaseModel.TYPE_RESOURCE && action == 'createLocal') {
|
|
|
|
let localResourceContentPath = Resource.fullPath(newContent);
|
|
|
|
let remoteResourceContentPath = this.resourceDirName_ + '/' + newContent.id;
|
2017-07-09 17:47:05 +02:00
|
|
|
|
|
|
|
await this.api().get(remoteResourceContentPath, { path: localResourceContentPath, target: 'file' });
|
|
|
|
|
|
|
|
// if (this.appType_ == 'cli') {
|
|
|
|
// let remoteResourceContent = await this.api().get(remoteResourceContentPath, { encoding: 'binary' });
|
|
|
|
// await Resource.setContent(newContent, remoteResourceContent);
|
|
|
|
// } else if (this.appType_ == 'mobile') {
|
|
|
|
// await this.api().get(remoteResourceContentPath, { path: localResourceContentPath, target: 'file' });
|
|
|
|
// } else {
|
|
|
|
// throw new Error('Unknown appType: ' + this.appType_);
|
|
|
|
// }
|
2017-07-06 23:30:45 +02:00
|
|
|
}
|
|
|
|
|
2017-07-03 20:03:14 +02:00
|
|
|
await ItemClass.save(newContent, options);
|
2017-06-15 01:14:15 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
this.logSyncOperation(action, local, content, reason);
|
|
|
|
} else {
|
|
|
|
this.logSyncOperation(action, local, remote, reason);
|
|
|
|
}
|
2017-06-24 19:40:03 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
report[action]++;
|
2017-06-30 19:54:01 +02:00
|
|
|
|
|
|
|
options.onProgress(report);
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
2017-06-15 20:18:48 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
if (!listResult.hasMore) break;
|
|
|
|
context = listResult.context;
|
|
|
|
}
|
2017-06-20 00:18:24 +02:00
|
|
|
|
2017-06-29 20:03:16 +02:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Search, among the local IDs, those that don't exist remotely, which
|
|
|
|
// means the item has been deleted.
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
2017-07-02 12:34:07 +02:00
|
|
|
if (this.randomFailure(options, 4)) return;
|
|
|
|
|
2017-07-13 20:47:31 +02:00
|
|
|
let localFoldersToDelete = [];
|
|
|
|
|
2017-07-09 17:47:05 +02:00
|
|
|
if (!this.cancelling()) {
|
|
|
|
let items = await BaseItem.syncedItems();
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
if (this.cancelling()) break;
|
|
|
|
|
|
|
|
let item = items[i];
|
|
|
|
if (remoteIds.indexOf(item.id) < 0) {
|
2017-07-13 20:47:31 +02:00
|
|
|
if (item.type_ == Folder.modelType()) {
|
|
|
|
localFoldersToDelete.push(item);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:47:05 +02:00
|
|
|
report.localsToDelete++;
|
|
|
|
options.onProgress(report);
|
|
|
|
this.logSyncOperation('deleteLocal', { id: item.id }, null, 'remote has been deleted');
|
|
|
|
|
|
|
|
let ItemClass = BaseItem.itemClass(item);
|
|
|
|
await ItemClass.delete(item.id, { trackDeleted: false });
|
|
|
|
report['deleteLocal']++;
|
|
|
|
options.onProgress(report);
|
|
|
|
}
|
2017-06-29 20:03:16 +02:00
|
|
|
}
|
2017-06-20 21:18:19 +02:00
|
|
|
}
|
2017-07-13 20:47:31 +02:00
|
|
|
|
|
|
|
if (!this.cancelling()) {
|
|
|
|
for (let i = 0; i < localFoldersToDelete.length; i++) {
|
|
|
|
const folder = localFoldersToDelete[i];
|
|
|
|
const noteIds = await Folder.noteIds(folder.id);
|
|
|
|
if (noteIds.length) { // CONFLICT
|
|
|
|
await Folder.markNotesAsConflict(folder.id);
|
|
|
|
await Folder.delete(folder.id, { deleteChildren: false });
|
|
|
|
} else {
|
|
|
|
await Folder.delete(folder.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 20:03:16 +02:00
|
|
|
} catch (error) {
|
2017-07-10 01:20:38 +02:00
|
|
|
report.errors.push(error);
|
2017-06-29 20:03:16 +02:00
|
|
|
this.logger().error(error);
|
2017-06-20 21:18:19 +02:00
|
|
|
}
|
2017-05-18 21:58:01 +02:00
|
|
|
|
2017-07-09 17:47:05 +02:00
|
|
|
if (this.cancelling()) {
|
|
|
|
this.logger().info('Synchronization was cancelled.');
|
|
|
|
this.cancelling_ = false;
|
|
|
|
}
|
|
|
|
|
2017-06-24 19:40:03 +02:00
|
|
|
this.logger().info('Synchronization complete [' + synchronizationId + ']:');
|
|
|
|
await this.logSyncSummary(report);
|
|
|
|
|
|
|
|
this.state_ = 'idle';
|
2017-07-08 00:25:03 +02:00
|
|
|
|
|
|
|
report.state = this.state();
|
|
|
|
options.onProgress(report);
|
2017-05-18 21:58:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export { Synchronizer };
|