Skip to content

Commit 9bcc178

Browse files
Merge pull request #1178 from DEVTomatoCake/fix/1154-mysql-charset
2 parents 08fc90a + dfbbef3 commit 9bcc178

39 files changed

+286
-131
lines changed

src/util/entities/Application.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, OneToOne } from "typeorm";
2020
import { BaseClass } from "./BaseClass";
2121
import { Team } from "./Team";
2222
import { User } from "./User";
23+
import { dbEngine } from "../util/Database";
2324

24-
@Entity("applications")
25+
@Entity({
26+
name: "applications",
27+
engine: dbEngine,
28+
})
2529
export class Application extends BaseClass {
2630
@Column()
2731
name: string;

src/util/entities/Attachment.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -27,8 +27,12 @@ import {
2727
import { URL } from "url";
2828
import { deleteFile } from "../util/cdn";
2929
import { BaseClass } from "./BaseClass";
30+
import { dbEngine } from "../util/Database";
3031

31-
@Entity("attachments")
32+
@Entity({
33+
name: "attachments",
34+
engine: dbEngine,
35+
})
3236
export class Attachment extends BaseClass {
3337
@Column()
3438
filename: string; // name of file attached

src/util/entities/AuditLog.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -20,6 +20,7 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
2020
import { BaseClass } from "./BaseClass";
2121
import { ChannelPermissionOverwrite } from "./Channel";
2222
import { User } from "./User";
23+
import { dbEngine } from "../util/Database";
2324

2425
export enum AuditLogEvents {
2526
// guild level
@@ -111,7 +112,10 @@ export enum AuditLogEvents {
111112
ROUTE_UPDATE = 226,
112113
}
113114

114-
@Entity("audit_logs")
115+
@Entity({
116+
name: "audit_logs",
117+
engine: dbEngine,
118+
})
115119
export class AuditLog extends BaseClass {
116120
@JoinColumn({ name: "target_id" })
117121
@ManyToOne(() => User)

src/util/entities/BackupCodes.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne } from "typeorm";
2020
import { BaseClass } from "./BaseClass";
2121
import { User } from "./User";
2222
import crypto from "crypto";
23+
import { dbEngine } from "../util/Database";
2324

24-
@Entity("backup_codes")
25+
@Entity({
26+
name: "backup_codes",
27+
engine: dbEngine,
28+
})
2529
export class BackupCode extends BaseClass {
2630
@JoinColumn({ name: "user_id" })
2731
@ManyToOne(() => User, { onDelete: "CASCADE" })

src/util/entities/Badge.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
import { Column, Entity } from "typeorm";
2020
import { BaseClassWithoutId } from "./BaseClass";
21+
import { dbEngine } from "../util/Database";
2122

22-
@Entity("badges")
23+
@Entity({
24+
name: "badges",
25+
engine: dbEngine,
26+
})
2327
export class Badge extends BaseClassWithoutId {
2428
@Column({ primary: true })
2529
id: string;

src/util/entities/Ban.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
2020
import { BaseClass } from "./BaseClass";
2121
import { Guild } from "./Guild";
2222
import { User } from "./User";
23+
import { dbEngine } from "../util/Database";
2324

24-
@Entity("bans")
25+
@Entity({
26+
name: "bans",
27+
engine: dbEngine,
28+
})
2529
export class Ban extends BaseClass {
2630
@Column({ nullable: true })
2731
@RelationId((ban: Ban) => ban.user)

src/util/entities/Categories.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import { Column, Entity } from "typeorm";
2020
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
21+
import { dbEngine } from "../util/Database";
2122

2223
// TODO: categories:
2324
// [{
@@ -33,7 +34,10 @@ import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
3334
// }]
3435
// Also populate discord default categories
3536

36-
@Entity("categories")
37+
@Entity({
38+
name: "categories",
39+
engine: dbEngine,
40+
})
3741
export class Categories extends BaseClassWithoutId {
3842
// Not using snowflake
3943

src/util/entities/Channel.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ import { Recipient } from "./Recipient";
4444
import { PublicUserProjection, User } from "./User";
4545
import { VoiceState } from "./VoiceState";
4646
import { Webhook } from "./Webhook";
47+
import { dbEngine } from "../util/Database";
4748

4849
export enum ChannelType {
4950
GUILD_TEXT = 0, // a text channel within a guild
@@ -69,7 +70,10 @@ export enum ChannelType {
6970
UNHANDLED = 255, // unhandled unowned pass-through channel type
7071
}
7172

72-
@Entity("channels")
73+
@Entity({
74+
name: "channels",
75+
engine: dbEngine,
76+
})
7377
export class Channel extends BaseClass {
7478
@Column()
7579
created_at: Date;

src/util/entities/ClientRelease.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
import { Column, Entity } from "typeorm";
2020
import { BaseClass } from "./BaseClass";
21+
import { dbEngine } from "../util/Database";
2122

22-
@Entity("client_release")
23+
@Entity({
24+
name: "client_release",
25+
engine: dbEngine,
26+
})
2327
export class Release extends BaseClass {
2428
@Column()
2529
name: string;

src/util/entities/Config.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
import { Column, Entity } from "typeorm";
2020
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
21+
import { dbEngine } from "../util/Database";
2122

22-
@Entity("config")
23+
@Entity({
24+
name: "config",
25+
engine: dbEngine,
26+
})
2327
export class ConfigEntity extends BaseClassWithoutId {
2428
@PrimaryIdColumn()
2529
key: string;

src/util/entities/ConnectedAccount.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
@@ -20,13 +20,17 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
2020
import { ConnectedAccountTokenData } from "../interfaces";
2121
import { BaseClass } from "./BaseClass";
2222
import { User } from "./User";
23+
import { dbEngine } from "../util/Database";
2324

2425
export type PublicConnectedAccount = Pick<
2526
ConnectedAccount,
2627
"name" | "type" | "verified"
2728
>;
2829

29-
@Entity("connected_accounts")
30+
@Entity({
31+
name: "connected_accounts",
32+
engine: dbEngine,
33+
})
3034
export class ConnectedAccount extends BaseClass {
3135
@Column()
3236
external_id: string;

src/util/entities/ConnectionConfigEntity.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
/*
22
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
33
Copyright (C) 2023 Spacebar and Spacebar Contributors
4-
4+
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU Affero General Public License as published
77
by the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
9-
9+
1010
This program is distributed in the hope that it will be useful,
1111
but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU Affero General Public License for more details.
14-
14+
1515
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
import { Column, Entity } from "typeorm";
2020
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
21+
import { dbEngine } from "../util/Database";
2122

22-
@Entity("connection_config")
23+
@Entity({
24+
name: "connection_config",
25+
engine: dbEngine,
26+
})
2327
export class ConnectionConfigEntity extends BaseClassWithoutId {
2428
@PrimaryIdColumn()
2529
key: string;

0 commit comments

Comments
 (0)