🎨 improve migration script

This commit is contained in:
Flam3rboy 2021-10-05 17:00:58 +02:00
parent 9d2f0ddf5c
commit 3e01ff75ed

View File

@ -1,16 +1,61 @@
import { config } from "dotenv"; import { config } from "dotenv";
config(); config();
import * as Models from "../entities"; import { BaseEntity, createConnection, EntityTarget } from "typeorm";
import { User } from "../entities/User";
import { createConnection, Connection } from "typeorm";
import { initDatabase } from "../util/Database"; import { initDatabase } from "../util/Database";
import "missing-native-js-functions"; import "missing-native-js-functions";
import {
Application,
Attachment,
Ban,
Channel,
ConnectedAccount,
defaultSettings,
Emoji,
Guild,
Invite,
Member,
Message,
RateLimit,
ReadState,
Recipient,
Relationship,
Role,
Sticker,
Team,
TeamMember,
Template,
User,
VoiceState,
Webhook,
} from "..";
async function main() { async function main() {
if (!process.env.FROM) throw new Error("FROM database env connection string not set"); if (!process.env.FROM) throw new Error("FROM database env connection string not set");
// @ts-ignore // manually arrange them because of foreign key
const entities = Object.values(Models).filter((x) => x.constructor.name !== "Object" && x.name); const entities = [
User,
Guild,
Channel,
Invite,
Role,
Ban,
Application,
Emoji,
ConnectedAccount,
Member,
ReadState,
Recipient,
Relationship,
Sticker,
Team,
TeamMember,
Template,
VoiceState,
Webhook,
Message,
Attachment,
];
const newDB = await initDatabase(); const newDB = await initDatabase();
@ -21,27 +66,64 @@ async function main() {
entities, entities,
name: "old", name: "old",
}); });
let i = 0;
await Promise.all(
entities.map(async (x) => {
const data = await oldDB.manager.find(User);
await Promise.all(
data.map(async (x) => {
try { try {
await newDB.manager.insert(User, x); for (const e of entities) {
} catch (error) { const entity = e as EntityTarget<any>;
if (!x.id) throw new Error("object doesn't have a unique id: " + x); const entries = await oldDB.manager.find(entity);
await newDB.manager.update(User, { id: x.id }, x); //@ts-ignore
} console.log("migrated " + entries.length + " " + entity.name);
})
); for (const entry of entries) {
console.log(i++);
if (entry instanceof User) {
console.log("instance of User");
if (entry.bio == null) entry.bio = "";
if (entry.rights == null) entry.rights = "0";
if (entry.disabled == null) entry.disabled = false;
if (entry.fingerprints == null) entry.fingerprints = [];
if (entry.deleted == null) entry.deleted = false;
if (entry.data == null) {
entry.data = {
valid_tokens_since: new Date(0),
hash: undefined,
};
// @ts-ignore // @ts-ignore
console.log("migrated all " + x.name); if (entry.user_data) {
}) // TODO: relationships
); entry.data = {
// @ts-ignore
valid_tokens_since: entry.user_data.valid_tokens_since, // @ts-ignore
hash: entry.user_data.hash,
};
}
}
// @ts-ignore
if (entry.settings == null) {
entry.settings = defaultSettings;
// @ts-ignore
if (entry.user_data) entry.settings = entry.user_settings;
}
}
// try {
await newDB.manager.insert(entity, entry);
// } catch (error) {
// if (!entry.id) throw new Error("object doesn't have a unique id: " + entry);
// await newDB.manager.update(entity, { id: entry.id }, entry);
// }
}
// @ts-ignore
console.log("migrated all " + entity.name);
}
} catch (error) {
console.error((error as any).message);
}
console.log("SUCCESS migrated all data"); console.log("SUCCESS migrated all data");
await newDB.close();
} }
main().caught(); main().caught();