1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 10:52:31 +01:00
server/util/src/migrations/migrate_db_engine.ts

129 lines
2.7 KiB
TypeScript
Raw Normal View History

2021-10-04 23:14:03 +02:00
import { config } from "dotenv";
config();
2021-10-10 18:28:50 +02:00
import { createConnection, EntityTarget } from "typeorm";
2021-10-04 23:14:03 +02:00
import { initDatabase } from "../util/Database";
import "missing-native-js-functions";
2021-10-05 17:00:58 +02:00
import {
Application,
Attachment,
Ban,
Channel,
ConnectedAccount,
defaultSettings,
Emoji,
Guild,
Invite,
Member,
Message,
ReadState,
Recipient,
Relationship,
Role,
Sticker,
Team,
TeamMember,
Template,
User,
VoiceState,
Webhook,
} from "..";
2021-10-04 23:14:03 +02:00
async function main() {
2021-10-10 18:28:50 +02:00
if (!process.env.TO) throw new Error("TO database env connection string not set");
2021-10-04 23:14:03 +02:00
2021-10-10 18:28:50 +02:00
// manually arrange them because of foreign keys
2021-10-05 17:00:58 +02:00
const entities = [
User,
Guild,
Channel,
Invite,
Role,
Ban,
Application,
Emoji,
ConnectedAccount,
Member,
ReadState,
Recipient,
Relationship,
Sticker,
Team,
TeamMember,
Template,
VoiceState,
Webhook,
Message,
Attachment,
];
2021-10-04 23:14:03 +02:00
2021-10-10 18:28:50 +02:00
const oldDB = await initDatabase();
2021-10-04 23:14:03 +02:00
// @ts-ignore
2021-10-10 18:28:50 +02:00
const newDB = await createConnection({
type: process.env.TO.split(":")[0]?.replace("+srv", ""),
url: process.env.TO,
2021-10-04 23:14:03 +02:00
entities,
name: "old",
});
2021-10-05 17:00:58 +02:00
let i = 0;
try {
for (const e of entities) {
const entity = e as EntityTarget<any>;
const entries = await oldDB.manager.find(entity);
//@ts-ignore
2021-10-10 18:28:50 +02:00
console.log("migrating " + entries.length + " " + entity.name + " ...");
2021-10-05 17:00:58 +02:00
for (const entry of entries) {
console.log(i++);
2021-10-04 23:14:03 +02:00
2021-10-05 17:00:58 +02:00
if (entry instanceof 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
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,
};
}
2021-10-04 23:14:03 +02:00
}
2021-10-05 17:00:58 +02:00
// @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);
// }
}
2021-10-10 18:28:50 +02:00
2021-10-04 23:14:03 +02:00
// @ts-ignore
2021-10-10 18:28:50 +02:00
console.log("migrating " + entries.length + " " + entity.name + " ...");
2021-10-05 17:00:58 +02:00
}
} catch (error) {
console.error((error as any).message);
}
2021-10-04 23:14:03 +02:00
console.log("SUCCESS migrated all data");
2021-10-05 17:00:58 +02:00
await newDB.close();
2021-10-04 23:14:03 +02:00
}
main().caught();