Merge pull request #1178 from DEVTomatoCake/fix/1154-mysql-charset

This commit is contained in:
Madeline 2024-08-22 10:09:18 +10:00 committed by GitHub
commit 9bcc178093
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
39 changed files with 286 additions and 131 deletions

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, OneToOne } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Team } from "./Team"; import { Team } from "./Team";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("applications") @Entity({
name: "applications",
engine: dbEngine,
})
export class Application extends BaseClass { export class Application extends BaseClass {
@Column() @Column()
name: string; name: string;

View File

@ -27,8 +27,12 @@ import {
import { URL } from "url"; import { URL } from "url";
import { deleteFile } from "../util/cdn"; import { deleteFile } from "../util/cdn";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("attachments") @Entity({
name: "attachments",
engine: dbEngine,
})
export class Attachment extends BaseClass { export class Attachment extends BaseClass {
@Column() @Column()
filename: string; // name of file attached filename: string; // name of file attached

View File

@ -20,6 +20,7 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { ChannelPermissionOverwrite } from "./Channel"; import { ChannelPermissionOverwrite } from "./Channel";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export enum AuditLogEvents { export enum AuditLogEvents {
// guild level // guild level
@ -111,7 +112,10 @@ export enum AuditLogEvents {
ROUTE_UPDATE = 226, ROUTE_UPDATE = 226,
} }
@Entity("audit_logs") @Entity({
name: "audit_logs",
engine: dbEngine,
})
export class AuditLog extends BaseClass { export class AuditLog extends BaseClass {
@JoinColumn({ name: "target_id" }) @JoinColumn({ name: "target_id" })
@ManyToOne(() => User) @ManyToOne(() => User)

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import crypto from "crypto"; import crypto from "crypto";
import { dbEngine } from "../util/Database";
@Entity("backup_codes") @Entity({
name: "backup_codes",
engine: dbEngine,
})
export class BackupCode extends BaseClass { export class BackupCode extends BaseClass {
@JoinColumn({ name: "user_id" }) @JoinColumn({ name: "user_id" })
@ManyToOne(() => User, { onDelete: "CASCADE" }) @ManyToOne(() => User, { onDelete: "CASCADE" })

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClassWithoutId } from "./BaseClass"; import { BaseClassWithoutId } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("badges") @Entity({
name: "badges",
engine: dbEngine,
})
export class Badge extends BaseClassWithoutId { export class Badge extends BaseClassWithoutId {
@Column({ primary: true }) @Column({ primary: true })
id: string; id: string;

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("bans") @Entity({
name: "bans",
engine: dbEngine,
})
export class Ban extends BaseClass { export class Ban extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
@RelationId((ban: Ban) => ban.user) @RelationId((ban: Ban) => ban.user)

View File

@ -18,6 +18,7 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass"; import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
import { dbEngine } from "../util/Database";
// TODO: categories: // TODO: categories:
// [{ // [{
@ -33,7 +34,10 @@ import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
// }] // }]
// Also populate discord default categories // Also populate discord default categories
@Entity("categories") @Entity({
name: "categories",
engine: dbEngine,
})
export class Categories extends BaseClassWithoutId { export class Categories extends BaseClassWithoutId {
// Not using snowflake // Not using snowflake

View File

@ -44,6 +44,7 @@ import { Recipient } from "./Recipient";
import { PublicUserProjection, User } from "./User"; import { PublicUserProjection, User } from "./User";
import { VoiceState } from "./VoiceState"; import { VoiceState } from "./VoiceState";
import { Webhook } from "./Webhook"; import { Webhook } from "./Webhook";
import { dbEngine } from "../util/Database";
export enum ChannelType { export enum ChannelType {
GUILD_TEXT = 0, // a text channel within a guild GUILD_TEXT = 0, // a text channel within a guild
@ -69,7 +70,10 @@ export enum ChannelType {
UNHANDLED = 255, // unhandled unowned pass-through channel type UNHANDLED = 255, // unhandled unowned pass-through channel type
} }
@Entity("channels") @Entity({
name: "channels",
engine: dbEngine,
})
export class Channel extends BaseClass { export class Channel extends BaseClass {
@Column() @Column()
created_at: Date; created_at: Date;

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("client_release") @Entity({
name: "client_release",
engine: dbEngine,
})
export class Release extends BaseClass { export class Release extends BaseClass {
@Column() @Column()
name: string; name: string;

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass"; import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("config") @Entity({
name: "config",
engine: dbEngine,
})
export class ConfigEntity extends BaseClassWithoutId { export class ConfigEntity extends BaseClassWithoutId {
@PrimaryIdColumn() @PrimaryIdColumn()
key: string; key: string;

View File

@ -20,13 +20,17 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { ConnectedAccountTokenData } from "../interfaces"; import { ConnectedAccountTokenData } from "../interfaces";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export type PublicConnectedAccount = Pick< export type PublicConnectedAccount = Pick<
ConnectedAccount, ConnectedAccount,
"name" | "type" | "verified" "name" | "type" | "verified"
>; >;
@Entity("connected_accounts") @Entity({
name: "connected_accounts",
engine: dbEngine,
})
export class ConnectedAccount extends BaseClass { export class ConnectedAccount extends BaseClass {
@Column() @Column()
external_id: string; external_id: string;

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass"; import { BaseClassWithoutId, PrimaryIdColumn } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("connection_config") @Entity({
name: "connection_config",
engine: dbEngine,
})
export class ConnectionConfigEntity extends BaseClassWithoutId { export class ConnectionConfigEntity extends BaseClassWithoutId {
@PrimaryIdColumn() @PrimaryIdColumn()
key: string; key: string;

View File

@ -19,8 +19,12 @@
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Entity, Column } from "typeorm"; import { Entity, Column } from "typeorm";
import { Embed } from "./Message"; import { Embed } from "./Message";
import { dbEngine } from "../util/Database";
@Entity("embed_cache") @Entity({
name: "embed_cache",
engine: dbEngine,
})
export class EmbedCache extends BaseClass { export class EmbedCache extends BaseClass {
@Column() @Column()
url: string; url: string;

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { User } from "."; import { User } from ".";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { dbEngine } from "../util/Database";
@Entity("emojis") @Entity({
name: "emojis",
engine: dbEngine,
})
export class Emoji extends BaseClass { export class Emoji extends BaseClass {
@Column() @Column()
animated: boolean; animated: boolean;

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("security_settings") @Entity({
name: "security_settings",
engine: dbEngine,
})
export class SecuritySettings extends BaseClass { export class SecuritySettings extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
guild_id: string; guild_id: string;

View File

@ -37,6 +37,7 @@ import { Template } from "./Template";
import { User } from "./User"; import { User } from "./User";
import { VoiceState } from "./VoiceState"; import { VoiceState } from "./VoiceState";
import { Webhook } from "./Webhook"; import { Webhook } from "./Webhook";
import { dbEngine } from "../util/Database";
// TODO: application_command_count, application_command_counts: {1: 0, 2: 0, 3: 0} // TODO: application_command_count, application_command_counts: {1: 0, 2: 0, 3: 0}
// TODO: guild_scheduled_events // TODO: guild_scheduled_events
@ -66,7 +67,10 @@ export const PublicGuildRelations = [
// "members.user", // "members.user",
]; ];
@Entity("guilds") @Entity({
name: "guilds",
engine: dbEngine,
})
export class Guild extends BaseClass { export class Guild extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
@RelationId((guild: Guild) => guild.afk_channel) @RelationId((guild: Guild) => guild.afk_channel)

View File

@ -22,10 +22,14 @@ import { Channel } from "./Channel";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { Member } from "./Member"; import { Member } from "./Member";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export const PublicInviteRelation = ["inviter", "guild", "channel"]; export const PublicInviteRelation = ["inviter", "guild", "channel"];
@Entity("invites") @Entity({
name: "invites",
engine: dbEngine,
})
export class Invite extends BaseClassWithoutId { export class Invite extends BaseClassWithoutId {
@PrimaryIdColumn() @PrimaryIdColumn()
code: string; code: string;

View File

@ -48,6 +48,7 @@ import { Guild } from "./Guild";
import { Message } from "./Message"; import { Message } from "./Message";
import { Role } from "./Role"; import { Role } from "./Role";
import { PublicUser, User } from "./User"; import { PublicUser, User } from "./User";
import { dbEngine } from "../util/Database";
export const MemberPrivateProjection: (keyof Member)[] = [ export const MemberPrivateProjection: (keyof Member)[] = [
"id", "id",
@ -65,7 +66,10 @@ export const MemberPrivateProjection: (keyof Member)[] = [
"user", "user",
]; ];
@Entity("members") @Entity({
name: "members",
engine: dbEngine,
})
@Index(["id", "guild_id"], { unique: true }) @Index(["id", "guild_id"], { unique: true })
export class Member extends BaseClassWithoutId { export class Member extends BaseClassWithoutId {
@PrimaryGeneratedColumn() @PrimaryGeneratedColumn()

View File

@ -39,6 +39,7 @@ import { Guild } from "./Guild";
import { Webhook } from "./Webhook"; import { Webhook } from "./Webhook";
import { Sticker } from "./Sticker"; import { Sticker } from "./Sticker";
import { Attachment } from "./Attachment"; import { Attachment } from "./Attachment";
import { dbEngine } from "../util/Database";
export enum MessageType { export enum MessageType {
DEFAULT = 0, DEFAULT = 0,
@ -68,7 +69,10 @@ export enum MessageType {
UNHANDLED = 255, UNHANDLED = 255,
} }
@Entity("messages") @Entity({
name: "messages",
engine: dbEngine,
})
@Index(["channel_id", "id"], { unique: true }) @Index(["channel_id", "id"], { unique: true })
export class Message extends BaseClass { export class Message extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -23,6 +23,7 @@ import {
PrimaryGeneratedColumn, PrimaryGeneratedColumn,
BaseEntity, BaseEntity,
} from "typeorm"; } from "typeorm";
import { dbEngine } from "../util/Database";
export const PrimaryIdAutoGenerated = process.env.DATABASE?.startsWith( export const PrimaryIdAutoGenerated = process.env.DATABASE?.startsWith(
"mongodb", "mongodb",
@ -30,7 +31,10 @@ export const PrimaryIdAutoGenerated = process.env.DATABASE?.startsWith(
? ObjectIdColumn ? ObjectIdColumn
: PrimaryGeneratedColumn; : PrimaryGeneratedColumn;
@Entity("migrations") @Entity({
name: "migrations",
engine: dbEngine,
})
export class Migration extends BaseEntity { export class Migration extends BaseEntity {
@PrimaryIdAutoGenerated() @PrimaryIdAutoGenerated()
id: number; id: number;

View File

@ -19,8 +19,12 @@
import { Column, Entity, JoinColumn, ManyToOne, Unique } from "typeorm"; import { Column, Entity, JoinColumn, ManyToOne, Unique } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("notes") @Entity({
name: "notes",
engine: dbEngine,
})
@Unique(["owner", "target"]) @Unique(["owner", "target"])
export class Note extends BaseClass { export class Note extends BaseClass {
@JoinColumn({ name: "owner_id" }) @JoinColumn({ name: "owner_id" })

View File

@ -18,8 +18,12 @@
import { Column, Entity } from "typeorm"; import { Column, Entity } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("rate_limits") @Entity({
name: "rate_limits",
engine: dbEngine,
})
export class RateLimit extends BaseClass { export class RateLimit extends BaseClass {
@Column() // no relation as it also @Column() // no relation as it also
executor_id: string; executor_id: string;

View File

@ -27,12 +27,16 @@ import {
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Channel } from "./Channel"; import { Channel } from "./Channel";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
// for read receipts // for read receipts
// notification cursor and public read receipt need to be forwards-only (the former to prevent re-pinging when marked as unread, and the latter to be acceptable as a legal acknowledgement in criminal proceedings), and private read marker needs to be advance-rewind capable // notification cursor and public read receipt need to be forwards-only (the former to prevent re-pinging when marked as unread, and the latter to be acceptable as a legal acknowledgement in criminal proceedings), and private read marker needs to be advance-rewind capable
// public read receipt ≥ notification cursor ≥ private fully read marker // public read receipt ≥ notification cursor ≥ private fully read marker
@Entity("read_states") @Entity({
name: "read_states",
engine: dbEngine,
})
@Index(["channel_id", "user_id"], { unique: true }) @Index(["channel_id", "user_id"], { unique: true })
export class ReadState extends BaseClass { export class ReadState extends BaseClass {
@Column() @Column()

View File

@ -18,8 +18,12 @@
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("recipients") @Entity({
name: "recipients",
engine: dbEngine,
})
export class Recipient extends BaseClass { export class Recipient extends BaseClass {
@Column() @Column()
@RelationId((recipient: Recipient) => recipient.channel) @RelationId((recipient: Recipient) => recipient.channel)

View File

@ -26,6 +26,7 @@ import {
} from "typeorm"; } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export enum RelationshipType { export enum RelationshipType {
outgoing = 4, outgoing = 4,
@ -34,7 +35,10 @@ export enum RelationshipType {
friends = 1, friends = 1,
} }
@Entity("relationships") @Entity({
name: "relationships",
engine: dbEngine,
})
@Index(["from_id", "to_id"], { unique: true }) @Index(["from_id", "to_id"], { unique: true })
export class Relationship extends BaseClass { export class Relationship extends BaseClass {
@Column({}) @Column({})

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { dbEngine } from "../util/Database";
@Entity("roles") @Entity({
name: "roles",
engine: dbEngine,
})
export class Role extends BaseClass { export class Role extends BaseClass {
@Column() @Column()
@RelationId((role: Role) => role.guild) @RelationId((role: Role) => role.guild)

View File

@ -19,8 +19,12 @@
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("security_keys") @Entity({
name: "security_keys",
engine: dbEngine,
})
export class SecurityKey extends BaseClass { export class SecurityKey extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
@RelationId((key: SecurityKey) => key.user) @RelationId((key: SecurityKey) => key.user)

View File

@ -21,10 +21,14 @@ import { BaseClass } from "./BaseClass";
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { ClientStatus, Status } from "../interfaces/Status"; import { ClientStatus, Status } from "../interfaces/Status";
import { Activity } from "../interfaces/Activity"; import { Activity } from "../interfaces/Activity";
import { dbEngine } from "../util/Database";
//TODO we need to remove all sessions on server start because if the server crashes without closing websockets it won't delete them //TODO we need to remove all sessions on server start because if the server crashes without closing websockets it won't delete them
@Entity("sessions") @Entity({
name: "sessions",
engine: dbEngine,
})
export class Session extends BaseClass { export class Session extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
@RelationId((session: Session) => session.user) @RelationId((session: Session) => session.user)

View File

@ -20,6 +20,7 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export enum StickerType { export enum StickerType {
STANDARD = 1, STANDARD = 1,
@ -33,7 +34,10 @@ export enum StickerFormatType {
LOTTIE = 3, LOTTIE = 3,
} }
@Entity("stickers") @Entity({
name: "stickers",
engine: dbEngine,
})
export class Sticker extends BaseClass { export class Sticker extends BaseClass {
@Column() @Column()
name: string; name: string;

View File

@ -26,8 +26,12 @@ import {
} from "typeorm"; } from "typeorm";
import { Sticker } from "."; import { Sticker } from ".";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("sticker_packs") @Entity({
name: "sticker_packs",
engine: dbEngine,
})
export class StickerPack extends BaseClass { export class StickerPack extends BaseClass {
@Column() @Column()
name: string; name: string;

View File

@ -27,8 +27,12 @@ import {
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { TeamMember } from "./TeamMember"; import { TeamMember } from "./TeamMember";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("teams") @Entity({
name: "teams",
engine: dbEngine,
})
export class Team extends BaseClass { export class Team extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
icon?: string; icon?: string;

View File

@ -19,13 +19,17 @@
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export enum TeamMemberState { export enum TeamMemberState {
INVITED = 1, INVITED = 1,
ACCEPTED = 2, ACCEPTED = 2,
} }
@Entity("team_members") @Entity({
name: "team_members",
engine: dbEngine,
})
export class TeamMember extends BaseClass { export class TeamMember extends BaseClass {
@Column({ type: "int" }) @Column({ type: "int" })
membership_state: TeamMemberState; membership_state: TeamMemberState;

View File

@ -20,8 +20,12 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass"; import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
@Entity("templates") @Entity({
name: "templates",
engine: dbEngine,
})
export class Template extends BaseClass { export class Template extends BaseClass {
@Column({ unique: true }) @Column({ unique: true })
code: string; code: string;

View File

@ -34,6 +34,7 @@ import { Relationship } from "./Relationship";
import { SecurityKey } from "./SecurityKey"; import { SecurityKey } from "./SecurityKey";
import { Session } from "./Session"; import { Session } from "./Session";
import { UserSettings } from "./UserSettings"; import { UserSettings } from "./UserSettings";
import { dbEngine } from "../util/Database";
export enum PublicUserEnum { export enum PublicUserEnum {
username, username,
@ -86,7 +87,10 @@ export interface UserPrivate extends Pick<User, PrivateUserKeys> {
locale: string; locale: string;
} }
@Entity("users") @Entity({
name: "users",
engine: dbEngine,
})
export class User extends BaseClass { export class User extends BaseClass {
@Column() @Column()
username: string; // username max length 32, min 2 (should be configurable) username: string; // username max length 32, min 2 (should be configurable)

View File

@ -18,8 +18,12 @@
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm"; import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
import { BaseClassWithoutId } from "./BaseClass"; import { BaseClassWithoutId } from "./BaseClass";
import { dbEngine } from "../util/Database";
@Entity("user_settings") @Entity({
name: "user_settings",
engine: dbEngine,
})
export class UserSettings extends BaseClassWithoutId { export class UserSettings extends BaseClassWithoutId {
@PrimaryGeneratedColumn() @PrimaryGeneratedColumn()
index: string; index: string;

View File

@ -17,8 +17,12 @@
*/ */
import { BaseEntity, Column, Entity, PrimaryColumn } from "typeorm"; import { BaseEntity, Column, Entity, PrimaryColumn } from "typeorm";
import { dbEngine } from "../util/Database";
@Entity("valid_registration_tokens") @Entity({
name: "valid_registration_tokens",
engine: dbEngine,
})
export class ValidRegistrationToken extends BaseEntity { export class ValidRegistrationToken extends BaseEntity {
@PrimaryColumn() @PrimaryColumn()
token: string; token: string;

View File

@ -22,9 +22,13 @@ import { Channel } from "./Channel";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { Member } from "./Member"; import { Member } from "./Member";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
//https://gist.github.com/vassjozsef/e482c65df6ee1facaace8b3c9ff66145#file-voice_state-ex //https://gist.github.com/vassjozsef/e482c65df6ee1facaace8b3c9ff66145#file-voice_state-ex
@Entity("voice_states") @Entity({
name: "voice_states",
engine: dbEngine,
})
export class VoiceState extends BaseClass { export class VoiceState extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
@RelationId((voice_state: VoiceState) => voice_state.guild) @RelationId((voice_state: VoiceState) => voice_state.guild)

View File

@ -22,6 +22,7 @@ import { BaseClass } from "./BaseClass";
import { Channel } from "./Channel"; import { Channel } from "./Channel";
import { Guild } from "./Guild"; import { Guild } from "./Guild";
import { User } from "./User"; import { User } from "./User";
import { dbEngine } from "../util/Database";
export enum WebhookType { export enum WebhookType {
Incoming = 1, Incoming = 1,
@ -29,7 +30,10 @@ export enum WebhookType {
Application = 3, Application = 3,
} }
@Entity("webhooks") @Entity({
name: "webhooks",
engine: dbEngine,
})
export class Webhook extends BaseClass { export class Webhook extends BaseClass {
@Column({ type: "int" }) @Column({ type: "int" })
type: WebhookType; type: WebhookType;

View File

@ -134,3 +134,6 @@ export { DataSourceOptions, DatabaseType, dbConnection };
export async function closeDatabase() { export async function closeDatabase() {
await dbConnection?.destroy(); await dbConnection?.destroy();
} }
export const dbEngine =
"InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci";