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

50 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-08-30 16:13:11 +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/>.
*/
import { migrations } from "../migrations";
class Migrator {
async migrate(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;
}
2021-07-06 12:13:35 +05:00
if (item.deleted && !item.type) {
await collection.dbCollection?._collection?.addItem(item);
continue;
}
const migrate = migrations[version][item.type || collection.type];
if (migrate) item = migrate(item);
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
}
}
return true;
}
}
export default Migrator;