Files
notesnook/packages/core/database/migrator.js

66 lines
2.1 KiB
JavaScript
Raw Normal View History

/*
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
import { migrateCollection, migrateItem } from "../migrations";
class Migrator {
async migrate(db, collections, get, version) {
2021-07-06 12:13:35 +05:00
for (let collection of collections) {
if (!collection.index || !collection.dbCollection) continue;
await migrateCollection(collection.dbCollection, version);
const index = (await collection.index()) || [];
for (var i = 0; i < index.length; ++i) {
let id = index[i];
2021-07-06 12:13:35 +05:00
let item = get(id);
if (!item) {
continue;
}
2022-10-12 20:33:37 +05:00
// check if item is permanently deleted or just a soft delete
2021-07-06 12:13:35 +05:00
if (item.deleted && !item.type) {
await collection.dbCollection?._collection?.addItem(item);
continue;
}
const itemId = item.id;
item = await migrateItem(
item,
version,
item.type || collection.type || collection.dbCollection.type,
db
);
2022-03-30 15:52:48 +05:00
if (collection.dbCollection.merge) {
2021-07-06 12:13:35 +05:00
await collection.dbCollection.merge(item);
} else if (collection.dbCollection.add) {
2021-07-06 12:13:35 +05:00
await collection.dbCollection.add(item);
2021-02-18 19:46:44 +05:00
}
// if id changed after migration, we need to delete the old one.
if (item.id !== itemId) {
await collection.dbCollection?._collection?.deleteItem(itemId);
}
2021-07-06 12:13:35 +05:00
}
}
return true;
}
}
export default Migrator;