import Migrator from "./migrator.js"; import { CHECK_IDS, sendCheckUserStatusEvent, CURRENT_DATABASE_VERSION, } from "../common.js"; import SparkMD5 from "spark-md5"; const invalidKeys = ["user", "t", "v", "lastBackupTime", "lastSynced"]; const invalidIndices = ["tags", "colors"]; const validTypes = ["mobile", "web", "node"]; export default class Backup { /** * * @param {import("../api/index.js").default} db */ constructor(db) { this._db = db; this._migrator = new Migrator(); } lastBackupTime() { return this._db.context.read("lastBackupTime"); } /** * * @param {"web"|"mobile"|"node"} type * @param {boolean} encrypt */ async export(type, encrypt = false) { if (encrypt && !(await sendCheckUserStatusEvent(CHECK_IDS.backupEncrypt))) return; if (!validTypes.some((t) => t === type)) throw new Error("Invalid type. It must be one of 'mobile' or 'web'."); let keys = await this._db.context.getAllKeys(); let data = filterData( Object.fromEntries(await this._db.context.readMulti(keys)) ); let hash = {}; if (encrypt) { const key = await this._db.user.getEncryptionKey(); data = await this._db.context.encrypt(key, JSON.stringify(data)); } else { hash = { hash: SparkMD5.hash(JSON.stringify(data)), hash_type: "md5" }; } // save backup time await this._db.context.write("lastBackupTime", Date.now()); return JSON.stringify({ version: CURRENT_DATABASE_VERSION, type, date: Date.now(), data, ...hash, }); } /** * * @param {string} data the backup data */ async import(data, key) { if (!data) return; let backup = JSON.parse(data); if (!this._validate(backup)) throw new Error("Invalid backup."); backup = this._migrateBackup(backup); let db = backup.data; //check if we have encrypted data if (db.salt && db.iv) { if (!key) key = await this._db.user.getEncryptionKey(); backup.data = JSON.parse(await this._db.context.decrypt(key, db)); } else if (!this._verify(backup)) throw new Error("Backup file has been tempered, aborting..."); await this._migrateData(backup); } _migrateBackup(backup) { const { version = 0 } = backup; if (version > CURRENT_DATABASE_VERSION) throw new Error( "This backup was made from a newer version of Notesnook. Cannot migrate." ); switch (version) { case CURRENT_DATABASE_VERSION: case 5.0: case 5.1: case 4: case 4.1: case 4.2: case 4.3: { return backup; } default: throw new Error("Unknown backup version."); } } async _migrateData(backup) { const { data, version = 0 } = backup; if (version > CURRENT_DATABASE_VERSION) throw new Error( "This backup was made from a newer version of Notesnook. Cannot migrate." ); const collections = [ { index: data["notebooks"], dbCollection: this._db.notebooks, }, { index: data["trash"], dbCollection: this._db.trash, }, { index: data["content"], dbCollection: this._db.content, }, { index: data["notes"], dbCollection: this._db.notes, }, { index: ["settings"], dbCollection: this._db.settings, type: "settings", }, ]; await this._migrator.migrate(collections, (id) => data[id], version); } _validate(backup) { return ( !!backup.date && !!backup.data && !!backup.type && validTypes.some((t) => t === backup.type) ); } _verify(backup) { const { hash, hash_type, data: db } = backup; switch (hash_type) { case "md5": { return hash === SparkMD5.hash(JSON.stringify(db)); } default: { return false; } } } } function filterData(data) { let skippedKeys = [...invalidKeys, ...invalidIndices]; invalidIndices.forEach((key) => { const index = data[key]; if (!index) return; skippedKeys.push(...index); }); skippedKeys.forEach((key) => delete data[key]); return data; }