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-10-12 10:39:47 +05:00
|
|
|
import { migrateItem } from "../migrations";
|
2020-12-06 10:52:00 +05:00
|
|
|
|
|
|
|
|
class Migrator {
|
2022-09-21 11:47:09 +05:00
|
|
|
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;
|
|
|
|
|
for (var i = 0; i < collection.index.length; ++i) {
|
|
|
|
|
let id = collection.index[i];
|
|
|
|
|
let item = get(id);
|
|
|
|
|
if (!item) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2020-12-06 10:52:00 +05:00
|
|
|
|
2021-07-06 12:13:35 +05:00
|
|
|
if (item.deleted && !item.type) {
|
|
|
|
|
await collection.dbCollection?._collection?.addItem(item);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2022-09-29 16:20:17 +05:00
|
|
|
|
|
|
|
|
// temporary fix for streetwriters/notesnook#751
|
|
|
|
|
if (item.type === "content") {
|
|
|
|
|
item.type = "tiptap";
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-12 10:39:47 +05:00
|
|
|
item = await migrateItem(
|
|
|
|
|
item,
|
|
|
|
|
version,
|
|
|
|
|
item.type || collection.type,
|
|
|
|
|
db
|
|
|
|
|
);
|
2020-12-29 14:08:48 +05:00
|
|
|
|
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 {
|
|
|
|
|
await collection.dbCollection.add(item);
|
2021-02-18 19:46:44 +05:00
|
|
|
}
|
2021-07-06 12:13:35 +05:00
|
|
|
}
|
|
|
|
|
}
|
2020-12-06 10:52:00 +05:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
export default Migrator;
|