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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
import { Snowflake } from 'discord.js';
import { DataTypes, Sequelize } from 'sequelize';
import { BaseModel } from './BaseModel';
export interface GlobalModel {
environment: 'production' | 'development' | 'beta';
superUsers: Snowflake[];
disabledCommands: string[];
blacklistedUsers: Snowflake[];
blacklistedGuilds: Snowflake[];
blacklistedChannels: Snowflake[];
}
export interface GlobalModelCreationAttributes {
environment: 'production' | 'development' | 'beta';
superUsers?: Snowflake[];
disabledCommands?: string[];
blacklistedUsers?: Snowflake[];
blacklistedGuilds?: Snowflake[];
blacklistedChannels?: Snowflake[];
}
export class Global extends BaseModel<GlobalModel, GlobalModelCreationAttributes> implements GlobalModel {
/**
* The bot's environment.
*/
public get environment(): 'production' | 'development' | 'beta' {
throw new Error('This should never be executed');
}
public set environment(_: 'production' | 'development' | 'beta') {
throw new Error('This should never be executed');
}
/**
* Trusted users.
*/
public get superUsers(): Snowflake[] {
throw new Error('This should never be executed');
}
public set superUsers(_: Snowflake[]) {
throw new Error('This should never be executed');
}
/**
* Globally disabled commands.
*/
public get disabledCommands(): string[] {
throw new Error('This should never be executed');
}
public set disabledCommands(_: string[]) {
throw new Error('This should never be executed');
}
/**
* Globally blacklisted users.
*/
public get blacklistedUsers(): Snowflake[] {
throw new Error('This should never be executed');
}
public set blacklistedUsers(_: Snowflake[]) {
throw new Error('This should never be executed');
}
/**
* Guilds blacklisted from using the bot.
*/
public get blacklistedGuilds(): Snowflake[] {
throw new Error('This should never be executed');
}
public set blacklistedGuilds(_: Snowflake[]) {
throw new Error('This should never be executed');
}
/**
* Channels where the bot is prevented from running.
*/
public get blacklistedChannels(): Snowflake[] {
throw new Error('This should never be executed');
}
public set blacklistedChannels(_: Snowflake[]) {
throw new Error('This should never be executed');
}
static initModel(sequelize: Sequelize): void {
Global.init(
{
environment: {
type: DataTypes.STRING,
primaryKey: true
},
superUsers: {
type: DataTypes.TEXT,
get: function () {
return JSON.parse(this.getDataValue('superUsers') as unknown as string);
},
set: function (val: Snowflake[]) {
return this.setDataValue('superUsers', JSON.stringify(val) as unknown as Snowflake[]);
},
allowNull: false,
defaultValue: '[]'
},
disabledCommands: {
type: DataTypes.TEXT,
get: function () {
return JSON.parse(this.getDataValue('disabledCommands') as unknown as string);
},
set: function (val: Snowflake[]) {
return this.setDataValue('disabledCommands', JSON.stringify(val) as unknown as string[]);
},
allowNull: false,
defaultValue: '[]'
},
blacklistedUsers: {
type: DataTypes.TEXT,
get: function () {
return JSON.parse(this.getDataValue('blacklistedUsers') as unknown as string);
},
set: function (val: Snowflake[]) {
return this.setDataValue('blacklistedUsers', JSON.stringify(val) as unknown as Snowflake[]);
},
allowNull: false,
defaultValue: '[]'
},
blacklistedGuilds: {
type: DataTypes.TEXT,
get: function () {
return JSON.parse(this.getDataValue('blacklistedGuilds') as unknown as string);
},
set: function (val: Snowflake[]) {
return this.setDataValue('blacklistedGuilds', JSON.stringify(val) as unknown as Snowflake[]);
},
allowNull: false,
defaultValue: '[]'
},
blacklistedChannels: {
type: DataTypes.TEXT,
get: function () {
return JSON.parse(this.getDataValue('blacklistedChannels') as unknown as string);
},
set: function (val: Snowflake[]) {
return this.setDataValue('blacklistedChannels', JSON.stringify(val) as unknown as Snowflake[]);
},
allowNull: false,
defaultValue: '[]'
}
},
{ sequelize: sequelize }
);
}
}
|