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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
import { Snowflake } from 'discord.js';
import { DataTypes, Sequelize } from 'sequelize';
import { BushClient } from '../extensions/discord-akairo/BushClient';
import { BaseModel } from './BaseModel';
import { jsonArrayInit, jsonParseGet, jsonParseSet, NEVER_USED } from './__helpers';
export const guildSettingsObj = {
prefix: {
name: 'Prefix',
description: 'The phrase required to trigger text commands in this server.',
type: 'string',
configurable: true
},
autoPublishChannels: {
name: 'Auto Publish Channels',
description: 'Channels were every message is automatically published.',
type: 'channel-array',
configurable: true
},
welcomeChannel: {
name: 'Welcome Channel',
description: 'The channel where the bot will send join and leave message.',
type: 'channel',
configurable: true
},
muteRole: {
name: 'Mute Role',
description: 'The role assigned when muting someone.',
type: 'role',
configurable: true
},
punishmentEnding: {
name: 'Punishment Ending',
description: 'The message after punishment information to a user in a dm.',
type: 'string',
configurable: true
},
lockdownChannels: {
name: 'Lockdown Channels',
description: 'Channels that are locked down when a mass lockdown is specified.',
type: 'channel-array',
configurable: false // not implemented yet
},
joinRoles: {
name: 'Join Roles',
description: 'Roles assigned to users on join who do not have sticky role information.',
type: 'role-array',
configurable: true
},
bypassChannelBlacklist: {
name: 'Bypass Channel Blacklist',
description: 'These users will be able to use commands in channels blacklisted.',
type: 'user-array',
configurable: true
},
logChannels: {
name: 'Log Channels',
description: 'The channel were logs are sent.',
type: 'custom',
configurable: false
},
autoModPhases: {
name: 'Automod Phases',
description: 'Custom phrases to be detected by automod.',
type: 'custom',
configurable: false
},
noXpChannels: {
name: 'No Xp Channels',
description: 'Channels where users will not earn xp for leveling.',
type: 'channel-array',
configurable: true
},
levelRoles: {
name: 'Level Roles',
description: 'What roles get given at certain levels.',
type: 'custom',
configurable: false
}
};
export type GuildSettings = keyof typeof guildSettingsObj;
export const settingsArr = Object.keys(guildSettingsObj).filter(
(s) => guildSettingsObj[s as GuildSettings].configurable
) as GuildSettings[];
export const guildFeaturesObj = {
automod: {
name: 'Automod',
description: 'Deletes offensive content as well as phishing links.'
},
autoPublish: {
name: 'Auto Publish',
description: 'Publishes messages in configured announcement channels.'
},
autoThread: {
name: 'Auto Thread',
description: 'Creates a new thread for messages in configured channels.'
},
blacklistedFile: {
name: 'Blacklisted File',
description: 'Automatically deletes malicious files.'
},
boosterMessageReact: {
name: 'Booster Message React',
description: 'Reacts to booster messages with the boost emoji.'
},
leveling: {
name: 'Leveling',
description: "Tracks users' messages and assigns them xp."
},
stickyRoles: {
name: 'Sticky Roles',
description: 'Restores past roles to a user when they rejoin.'
},
reporting: {
name: 'Reporting',
description: 'Allow users to make reports.'
},
modsCanPunishMods: {
name: 'Mods Can Punish Mods',
description: 'Allow moderators to punish other moderators.'
}
};
export const guildLogsObj = {
automod: {
description: 'Sends a message in this channel every time automod is activated.',
configurable: true
},
moderation: {
description: 'Sends a message in this channel every time a moderation action is performed.',
configurable: true
},
report: {
description: 'Logs user reports.',
configurable: true
}
};
export type GuildLogType = keyof typeof guildLogsObj;
export const guildLogsArr = Object.keys(guildLogsObj).filter(
(s) => guildLogsObj[s as GuildLogType].configurable
) as GuildLogType[];
type LogChannelDB = { [x in keyof typeof guildLogsObj]?: Snowflake };
export type GuildFeatures = keyof typeof guildFeaturesObj;
export const guildFeaturesArr: GuildFeatures[] = Object.keys(guildFeaturesObj) as GuildFeatures[];
export interface GuildModel {
id: Snowflake;
prefix: string;
autoPublishChannels: Snowflake[];
blacklistedChannels: Snowflake[];
blacklistedUsers: Snowflake[];
welcomeChannel: Snowflake;
muteRole: Snowflake;
punishmentEnding: string;
disabledCommands: string[];
lockdownChannels: Snowflake[];
autoModPhases: { [word: string]: 0 | 1 | 2 | 3 };
enabledFeatures: GuildFeatures[];
joinRoles: Snowflake[];
logChannels: LogChannelDB;
bypassChannelBlacklist: Snowflake[];
noXpChannels: Snowflake[];
levelRoles: { [level: number]: Snowflake };
}
export interface GuildModelCreationAttributes {
id: Snowflake;
prefix?: string;
autoPublishChannels?: Snowflake[];
blacklistedChannels?: Snowflake[];
blacklistedUsers?: Snowflake[];
welcomeChannel?: Snowflake;
muteRole?: Snowflake;
punishmentEnding?: string;
disabledCommands?: string[];
lockdownChannels?: Snowflake[];
autoModPhases?: { [word: string]: 0 | 1 | 2 | 3 };
enabledFeatures?: GuildFeatures[];
joinRoles?: Snowflake[];
logChannels?: LogChannelDB;
bypassChannelBlacklist?: Snowflake[];
noXpChannels?: Snowflake[];
levelRoles?: { [level: number]: Snowflake };
}
export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> implements GuildModel {
/**
* The ID of the guild
*/
public get id(): Snowflake {
throw new Error(NEVER_USED);
}
public set id(_: Snowflake) {
throw new Error(NEVER_USED);
}
/**
* The bot's prefix for the guild
*/
public get prefix(): string {
throw new Error(NEVER_USED);
}
public set prefix(_: string) {
throw new Error(NEVER_USED);
}
/**
* Channels that will have their messages automatically published
*/
public get autoPublishChannels(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set autoPublishChannels(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
/**
* Channels where the bot won't respond in.
*/
public get blacklistedChannels(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set blacklistedChannels(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
/**
* Users that the bot ignores in this guild
*/
public get blacklistedUsers(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set blacklistedUsers(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
/**
* The channels where the welcome messages are sent
*/
public get welcomeChannel(): Snowflake {
throw new Error(NEVER_USED);
}
public set welcomeChannel(_: Snowflake) {
throw new Error(NEVER_USED);
}
/**
* The role given out when muting someone
*/
public get muteRole(): Snowflake {
throw new Error(NEVER_USED);
}
public set muteRole(_: Snowflake) {
throw new Error(NEVER_USED);
}
/**
* The message that gets sent after someone gets a punishment dm
*/
public get punishmentEnding(): string {
throw new Error(NEVER_USED);
}
public set punishmentEnding(_: string) {
throw new Error(NEVER_USED);
}
/**
* Guild specific disabled commands
*/
public get disabledCommands(): string[] {
throw new Error(NEVER_USED);
}
public set disabledCommands(_: string[]) {
throw new Error(NEVER_USED);
}
/**
* Channels that should get locked down when the lockdown command gets used.
*/
public get lockdownChannels(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set lockdownChannels(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
/**
* Custom automod phases
*/
public get autoModPhases(): { [word: string]: 0 | 1 | 2 | 3 } {
throw new Error(NEVER_USED);
}
public set autoModPhases(_: { [word: string]: 0 | 1 | 2 | 3 }) {
throw new Error(NEVER_USED);
}
/**
* The features enabled in a guild
*/
public get enabledFeatures(): GuildFeatures[] {
throw new Error(NEVER_USED);
}
public set enabledFeatures(_: GuildFeatures[]) {
throw new Error(NEVER_USED);
}
/**
* The roles to assign to a user if they are not assigned sticky roles
*/
public get joinRoles(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set joinRoles(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
/**
* The channels where logging messages will be sent.
*/
public get logChannels(): LogChannelDB {
throw new Error(NEVER_USED);
}
public set logChannels(_: LogChannelDB) {
throw new Error(NEVER_USED);
}
/**
* These users will be able to use commands in channels blacklisted
*/
public get bypassChannelBlacklist(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set bypassChannelBlacklist(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
public get noXpChannels(): Snowflake[] {
throw new Error(NEVER_USED);
}
public set noXpChannels(_: Snowflake[]) {
throw new Error(NEVER_USED);
}
public get levelRoles(): { [level: number]: Snowflake } {
throw new Error(NEVER_USED);
}
public set levelRoles(_: { [level: number]: Snowflake }) {
throw new Error(NEVER_USED);
}
public static initModel(sequelize: Sequelize, client: BushClient): void {
Guild.init(
{
id: {
type: DataTypes.STRING,
primaryKey: true
},
prefix: {
type: DataTypes.TEXT,
allowNull: false,
defaultValue: client.config.prefix
},
autoPublishChannels: jsonArrayInit('autoPublishChannels'),
blacklistedChannels: jsonArrayInit('blacklistedChannels'),
blacklistedUsers: jsonArrayInit('blacklistedChannels'),
welcomeChannel: {
type: DataTypes.STRING,
allowNull: true
},
muteRole: {
type: DataTypes.STRING,
allowNull: true
},
punishmentEnding: {
type: DataTypes.TEXT,
allowNull: true
},
disabledCommands: jsonArrayInit('disabledCommands'),
lockdownChannels: jsonArrayInit('lockdownChannels'),
autoModPhases: {
type: DataTypes.TEXT,
get: function (): { [level: number]: Snowflake } {
return jsonParseGet.call(this, 'autoModPhases');
},
set: function (val: { [level: number]: Snowflake }) {
return jsonParseSet.call(this, 'autoModPhases', val);
},
allowNull: false,
defaultValue: '{}'
},
enabledFeatures: jsonArrayInit('enabledFeatures'),
joinRoles: jsonArrayInit('joinRoles'),
logChannels: {
type: DataTypes.TEXT,
get: function (): LogChannelDB {
return jsonParseGet.call(this, 'logChannels');
},
set: function (val: LogChannelDB) {
return jsonParseSet.call(this, 'logChannels', val);
},
allowNull: false,
defaultValue: '{}'
},
bypassChannelBlacklist: jsonArrayInit('bypassChannelBlacklist'),
noXpChannels: jsonArrayInit('noXpChannels'),
levelRoles: {
type: DataTypes.TEXT,
get: function (): { [level: number]: Snowflake } {
return jsonParseGet.call(this, 'levelRoles');
},
set: function (val: { [level: number]: Snowflake }) {
return jsonParseSet.call(this, 'levelRoles', val);
},
allowNull: false,
defaultValue: '{}'
}
},
{ sequelize: sequelize }
);
}
}
|