1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
import { Snowflake } from 'discord.js';
import { DataTypes, Sequelize } from 'sequelize';
import { v4 as uuidv4 } from 'uuid';
import { BaseModel } from './BaseModel';
export enum ModLogType {
PERM_BAN = 'PERM_BAN',
TEMP_BAN = 'TEMP_BAN',
UNBAN = 'UNBAN',
KICK = 'KICK',
PERM_MUTE = 'PERM_MUTE',
TEMP_MUTE = 'TEMP_MUTE',
UNMUTE = 'UNMUTE',
WARN = 'WARN',
PERM_PUNISHMENT_ROLE = 'PERM_PUNISHMENT_ROLE',
TEMP_PUNISHMENT_ROLE = 'TEMP_PUNISHMENT_ROLE',
REMOVE_PUNISHMENT_ROLE = 'REMOVE_PUNISHMENT_ROLE',
PERM_CHANNEL_BLOCK = 'PERM_CHANNEL_BLOCK',
TEMP_CHANNEL_BLOCK = 'TEMP_CHANNEL_BLOCK',
CHANNEL_UNBLOCK = 'CHANNEL_UNBLOCK'
}
export interface ModLogModel {
id: string;
type: ModLogType;
user: Snowflake;
moderator: Snowflake;
reason: string;
duration: number;
guild: Snowflake;
}
export interface ModLogModelCreationAttributes {
id?: string;
type: ModLogType;
user: Snowflake;
moderator: Snowflake;
reason?: string;
duration?: number;
guild: Snowflake;
}
export class ModLog extends BaseModel<ModLogModel, ModLogModelCreationAttributes> implements ModLogModel {
/**
* The primary key of the modlog entry.
*/
id: string;
/**
* The type of punishment.
*/
type: ModLogType;
/**
* The user being punished.
*/
user: Snowflake;
/**
* The user carrying out the punishment.
*/
moderator: Snowflake;
/**
* The reason the user is getting punished
*/
reason: string | null;
/**
* The amount of time the user is getting punished for.
*/
duration: number | null;
/**
* The guild the user is getting punished in.
*/
guild: Snowflake;
static initModel(sequelize: Sequelize): void {
ModLog.init(
{
id: {
type: DataTypes.STRING,
primaryKey: true,
allowNull: false,
defaultValue: uuidv4
},
type: {
type: DataTypes.STRING, //# This is not an enum because of a sequelize issue: https://github.com/sequelize/sequelize/issues/2554
allowNull: false
},
user: {
type: DataTypes.STRING,
allowNull: false
},
moderator: {
type: DataTypes.STRING,
allowNull: false
},
duration: {
type: DataTypes.STRING,
allowNull: true
},
reason: {
type: DataTypes.STRING,
allowNull: true
},
guild: {
type: DataTypes.STRING,
references: {
model: 'Guilds',
key: 'id'
}
}
},
{ sequelize: sequelize }
);
}
}
|