2022-08-31 06:33:37 +05:00
|
|
|
/*
|
|
|
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2022 Streetwriters (Private) Limited
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2022-08-30 16:13:11 +05:00
|
|
|
|
2022-03-30 15:52:48 +05:00
|
|
|
import { checkIsUserPremium, CHECK_IDS, EVENTS } from "../../common";
|
2022-07-19 11:16:46 +05:00
|
|
|
import { logger } from "../../logger";
|
2022-03-30 15:52:48 +05:00
|
|
|
|
|
|
|
|
export class AutoSync {
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param {import("../index").default} db
|
|
|
|
|
* @param {number} interval
|
|
|
|
|
*/
|
|
|
|
|
constructor(db, interval) {
|
|
|
|
|
this.db = db;
|
|
|
|
|
this.interval = interval;
|
|
|
|
|
this.timeout = null;
|
2022-03-30 20:45:16 +05:00
|
|
|
this.isAutoSyncing = false;
|
2022-07-19 11:16:46 +05:00
|
|
|
this.logger = logger.scope("AutoSync");
|
2022-03-30 15:52:48 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async start() {
|
2022-07-19 11:16:46 +05:00
|
|
|
this.logger.info(`Auto sync requested`);
|
|
|
|
|
|
2022-03-30 15:52:48 +05:00
|
|
|
if (!(await checkIsUserPremium(CHECK_IDS.databaseSync))) return;
|
2022-03-30 20:45:16 +05:00
|
|
|
if (this.isAutoSyncing) return;
|
2022-03-30 15:52:48 +05:00
|
|
|
|
2022-03-30 20:45:16 +05:00
|
|
|
this.isAutoSyncing = true;
|
2022-03-30 15:52:48 +05:00
|
|
|
this.databaseUpdatedEvent = this.db.eventManager.subscribeSingle(
|
|
|
|
|
EVENTS.databaseUpdated,
|
|
|
|
|
this.schedule.bind(this)
|
|
|
|
|
);
|
2022-07-19 11:16:46 +05:00
|
|
|
|
|
|
|
|
this.logger.info(`Auto sync started`);
|
2022-03-30 15:52:48 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop() {
|
2022-03-30 20:45:16 +05:00
|
|
|
this.isAutoSyncing = false;
|
2022-03-30 15:52:48 +05:00
|
|
|
clearTimeout(this.timeout);
|
|
|
|
|
if (this.databaseUpdatedEvent) this.databaseUpdatedEvent.unsubscribe();
|
2022-07-19 11:16:46 +05:00
|
|
|
|
|
|
|
|
this.logger.info(`Auto sync stopped`);
|
2022-03-30 15:52:48 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @private
|
|
|
|
|
*/
|
2022-03-30 20:45:16 +05:00
|
|
|
schedule(id, item) {
|
2022-03-31 14:32:24 +05:00
|
|
|
if (item && (item.remote || item.localOnly || item.failed)) return;
|
2022-03-30 20:45:16 +05:00
|
|
|
|
|
|
|
|
clearTimeout(this.timeout);
|
2022-03-30 15:52:48 +05:00
|
|
|
this.timeout = setTimeout(() => {
|
2022-07-19 11:16:46 +05:00
|
|
|
this.logger.info(`Sync requested by: ${id}`);
|
2022-03-30 15:52:48 +05:00
|
|
|
this.db.eventManager.publish(EVENTS.databaseSyncRequested, false, false);
|
|
|
|
|
}, this.interval);
|
|
|
|
|
}
|
|
|
|
|
}
|