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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
|
import {
abbreviatedNumber,
contentWithDuration,
discordEmoji,
duration,
durationSeconds,
globalUser,
messageLink,
permission,
roleWithDuration,
snowflake
} from '#args';
import type { BushClientEvents, Config } from '#lib';
import { patch, type PatchedElements } from '@notenoughupdates/events-intercept';
import * as Sentry from '@sentry/node';
import {
AkairoClient,
ContextMenuCommandHandler,
version as akairoVersion,
type ArgumentPromptData,
type ClientUtil,
type OtherwiseContentSupplier
} from 'discord-akairo';
import {
ActivityType,
GatewayIntentBits,
MessagePayload,
Options,
Partials,
Structures,
version as discordJsVersion,
type Awaitable,
type If,
type InteractionReplyOptions,
type Message,
type MessageEditOptions,
type MessageOptions,
type ReplyMessageOptions,
type Snowflake,
type UserResolvable,
type WebhookEditMessageOptions
} from 'discord.js';
import type EventEmitter from 'events';
import { google } from 'googleapis';
import path from 'path';
import readline from 'readline';
import type { Options as SequelizeOptions, Sequelize as SequelizeType } from 'sequelize';
import { fileURLToPath } from 'url';
import { tinyColor } from '../../../arguments/tinyColor.js';
import UpdateCacheTask from '../../../tasks/updateCache.js';
import UpdateStatsTask from '../../../tasks/updateStats.js';
import { HighlightManager } from '../../common/HighlightManager.js';
import { ActivePunishment } from '../../models/instance/ActivePunishment.js';
import { Guild as GuildDB } from '../../models/instance/Guild.js';
import { Highlight } from '../../models/instance/Highlight.js';
import { Level } from '../../models/instance/Level.js';
import { ModLog } from '../../models/instance/ModLog.js';
import { Reminder } from '../../models/instance/Reminder.js';
import { StickyRole } from '../../models/instance/StickyRole.js';
import { Global } from '../../models/shared/Global.js';
import { MemberCount } from '../../models/shared/MemberCount.js';
import { Shared } from '../../models/shared/Shared.js';
import { Stat } from '../../models/shared/Stat.js';
import { AllowedMentions } from '../../utils/AllowedMentions.js';
import { BushCache } from '../../utils/BushCache.js';
import { BushConstants } from '../../utils/BushConstants.js';
import { BushLogger } from '../../utils/BushLogger.js';
import { ExtendedGuild } from '../discord.js/ExtendedGuild.js';
import { ExtendedGuildMember } from '../discord.js/ExtendedGuildMember.js';
import { ExtendedMessage } from '../discord.js/ExtendedMessage.js';
import { ExtendedUser } from '../discord.js/ExtendedUser.js';
import { BushClientUtil } from './BushClientUtil.js';
import { BushCommandHandler } from './BushCommandHandler.js';
import { BushInhibitorHandler } from './BushInhibitorHandler.js';
import { BushListenerHandler } from './BushListenerHandler.js';
import { BushTaskHandler } from './BushTaskHandler.js';
const { Sequelize } = (await import('sequelize')).default;
declare module 'discord.js' {
export interface Client extends EventEmitter {
/**
* The ID of the owner(s).
*/
ownerID: Snowflake | Snowflake[];
/**
* The ID of the superUser(s).
*/
superUserID: Snowflake | Snowflake[];
/**
* Utility methods.
*/
util: ClientUtil | BushClientUtil;
on<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
once<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
emit<K extends keyof BushClientEvents>(event: K, ...args: BushClientEvents[K]): boolean;
off<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
removeAllListeners<K extends keyof BushClientEvents>(event?: K): this;
/**
* Checks if a user is the owner of this bot.
* @param user - User to check.
*/
isOwner(user: UserResolvable): boolean;
/**
* Checks if a user is a super user of this bot.
* @param user - User to check.
*/
isSuperUser(user: UserResolvable): boolean;
}
}
export type ReplyMessageType = string | MessagePayload | ReplyMessageOptions;
export type EditMessageType = string | MessageEditOptions | MessagePayload;
export type SlashSendMessageType = string | MessagePayload | InteractionReplyOptions;
export type SlashEditMessageType = string | MessagePayload | WebhookEditMessageOptions;
export type SendMessageType = string | MessagePayload | MessageOptions;
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
const __dirname = path.dirname(fileURLToPath(import.meta.url));
/**
* The main hub for interacting with the Discord API.
*/
export class BushClient<Ready extends boolean = boolean> extends AkairoClient<Ready> {
public declare ownerID: Snowflake[];
public declare superUserID: Snowflake[];
public declare util: BushClientUtil;
/**
* Whether or not the client is ready.
*/
public customReady = false;
/**
* Stats for the client.
*/
public stats: BushStats = { cpu: undefined, commandsUsed: 0n, slashCommandsUsed: 0n };
/**
* The configuration for the client.
*/
public config: Config;
/**
* The handler for the bot's listeners.
*/
public listenerHandler: BushListenerHandler;
/**
* The handler for the bot's command inhibitors.
*/
public inhibitorHandler: BushInhibitorHandler;
/**
* The handler for the bot's commands.
*/
public commandHandler: BushCommandHandler;
/**
* The handler for the bot's tasks.
*/
public taskHandler: BushTaskHandler;
/**
* The handler for the bot's context menu commands.
*/
public contextMenuCommandHandler: ContextMenuCommandHandler;
/**
* The database connection for this instance of the bot (production, beta, or development).
*/
public instanceDB: SequelizeType;
/**
* The database connection that is shared between all instances of the bot.
*/
public sharedDB: SequelizeType;
/**
* A custom logging system for the bot.
*/
public logger = BushLogger;
/**
* Constants for the bot.
*/
public constants = BushConstants;
/**
* Cached global and guild database data.
*/
public cache = new BushCache();
/**
* Sentry error reporting for the bot.
*/
public sentry!: typeof Sentry;
/**
* Manages most aspects of the highlight command
*/
public highlightManager = new HighlightManager();
/**
* The perspective api
*/
public perspective: any;
/**
* @param config The configuration for the bot.
*/
public constructor(config: Config) {
super({
ownerID: config.owners,
intents: Object.keys(GatewayIntentBits)
.map((i) => (typeof i === 'string' ? GatewayIntentBits[i as keyof typeof GatewayIntentBits] : i))
.reduce((acc, p) => acc | p, 0),
partials: Object.keys(Partials).map((p) => Partials[p as keyof typeof Partials]),
presence: {
activities: [{ name: 'Beep Boop', type: ActivityType.Watching }],
status: 'online'
},
allowedMentions: AllowedMentions.none(), // no mentions by default
makeCache: Options.cacheWithLimits({}),
failIfNotExists: false,
rest: { api: 'https://canary.discord.com/api' }
});
patch(this);
this.token = config.token as If<Ready, string, string | null>;
this.config = config;
this.util = new BushClientUtil(this);
/* =-=-= handlers =-=-= */
this.listenerHandler = new BushListenerHandler(this, {
directory: path.join(__dirname, '..', '..', '..', 'listeners'),
automateCategories: true
});
this.inhibitorHandler = new BushInhibitorHandler(this, {
directory: path.join(__dirname, '..', '..', '..', 'inhibitors'),
automateCategories: true
});
this.taskHandler = new BushTaskHandler(this, {
directory: path.join(__dirname, '..', '..', '..', 'tasks'),
automateCategories: true
});
const modify = async (
message: Message,
text: string | MessagePayload | MessageOptions | OtherwiseContentSupplier,
data: ArgumentPromptData,
replaceError: boolean
) => {
const ending = '\n\n Type **cancel** to cancel the command';
const options = typeof text === 'function' ? await text(message, data) : text;
const search = '{error}',
replace = this.consts.emojis.error;
if (typeof options === 'string') return (replaceError ? options.replace(search, replace) : options) + ending;
if (options instanceof MessagePayload) {
if (options.options.content) {
if (replaceError) options.options.content = options.options.content.replace(search, replace);
options.options.content += ending;
}
} else if (options.content) {
if (replaceError) options.content = options.content.replace(search, replace);
options.content += ending;
}
return options;
};
this.commandHandler = new BushCommandHandler(this, {
directory: path.join(__dirname, '..', '..', '..', 'commands'),
prefix: async ({ guild }: Message) => {
if (this.config.isDevelopment) return 'dev ';
if (!guild) return this.config.prefix;
const prefix = await guild.getSetting('prefix');
return (prefix ?? this.config.prefix) as string;
},
allowMention: true,
handleEdits: true,
commandUtil: true,
commandUtilLifetime: 300_000, // 5 minutes
argumentDefaults: {
prompt: {
start: 'Placeholder argument prompt. **If you see this please tell my developers**.',
retry: 'Placeholder failed argument prompt. **If you see this please tell my developers**.',
modifyStart: (message, text, data) => modify(message, text, data, false),
modifyRetry: (message, text, data) => modify(message, text, data, true),
timeout: ':hourglass: You took too long the command has been cancelled.',
ended: 'You exceeded the maximum amount of tries the command has been cancelled',
cancel: 'The command has been cancelled',
retries: 3,
time: 3e4
},
otherwise: ''
},
automateCategories: false,
autoRegisterSlashCommands: true,
skipBuiltInPostInhibitors: true,
aliasReplacement: /-/g
});
this.contextMenuCommandHandler = new ContextMenuCommandHandler(this, {
directory: path.join(__dirname, '..', '..', '..', 'context-menu-commands'),
automateCategories: true
});
/* =-=-= databases =-=-= */
const sharedDBOptions: SequelizeOptions = {
username: this.config.db.username,
password: this.config.db.password,
dialect: 'postgres',
host: this.config.db.host,
port: this.config.db.port,
logging: this.config.logging.db ? (sql) => this.logger.debug(sql) : false,
timezone: 'America/New_York'
};
this.instanceDB = new Sequelize({
...sharedDBOptions,
database: this.config.isDevelopment ? 'bushbot-dev' : this.config.isBeta ? 'bushbot-beta' : 'bushbot'
});
this.sharedDB = new Sequelize({
...sharedDBOptions,
database: 'bushbot-shared'
});
}
/**
* A custom logging system for the bot.
*/
public get console(): typeof BushLogger {
return this.logger;
}
/**
* Constants for the bot.
*/
public get consts(): typeof BushConstants {
return this.constants;
}
/**
* Extends discord.js structures before the client is instantiated.
*/
public static extendStructures(): void {
Structures.extend('GuildMember', () => ExtendedGuildMember);
Structures.extend('Guild', () => ExtendedGuild);
Structures.extend('Message', () => ExtendedMessage);
Structures.extend('User', () => ExtendedUser);
}
/**
* Initializes the bot.
*/
public async init() {
if (parseInt(process.versions.node.split('.')[0]) < 17) {
void (await this.console.error('version', `Please use node <<v17.x.x>>, not <<${process.version}>>.`, false));
process.exit(2);
}
this.setMaxListeners(20);
this.perspective = await google.discoverAPI<any>('https://commentanalyzer.googleapis.com/$discovery/rest?version=v1alpha1');
this.commandHandler.useInhibitorHandler(this.inhibitorHandler);
this.commandHandler.useListenerHandler(this.listenerHandler);
this.commandHandler.useTaskHandler(this.taskHandler);
this.commandHandler.useContextMenuCommandHandler(this.contextMenuCommandHandler);
this.commandHandler.ignorePermissions = this.config.owners;
this.commandHandler.ignoreCooldown = [...new Set([...this.config.owners, ...this.cache.shared.superUsers])];
const emitters: Emitters = {
client: this,
commandHandler: this.commandHandler,
inhibitorHandler: this.inhibitorHandler,
listenerHandler: this.listenerHandler,
taskHandler: this.taskHandler,
contextMenuCommandHandler: this.contextMenuCommandHandler,
process,
stdin: rl,
gateway: this.ws,
rest: this.rest,
ws: this.ws
};
this.listenerHandler.setEmitters(emitters);
this.commandHandler.resolver.addTypes({
duration,
contentWithDuration,
permission,
snowflake,
discordEmoji,
roleWithDuration,
abbreviatedNumber,
durationSeconds,
globalUser,
messageLink,
tinyColor
});
this.sentry = Sentry;
this.sentry.setTag('process', process.pid.toString());
this.sentry.setTag('discord.js', discordJsVersion);
this.sentry.setTag('discord-akairo', akairoVersion);
void this.logger.success('startup', `Successfully connected to <<Sentry>>.`, false);
// loads all the handlers
const handlers = {
commands: this.commandHandler,
contextMenuCommands: this.contextMenuCommandHandler,
listeners: this.listenerHandler,
inhibitors: this.inhibitorHandler,
tasks: this.taskHandler
};
const handlerPromises = Object.entries(handlers).map(([handlerName, handler]) =>
handler
.loadAll()
.then(() => {
void this.logger.success('startup', `Successfully loaded <<${handlerName}>>.`, false);
})
.catch((e) => {
void this.logger.error(
'startup',
`Unable to load loader <<${handlerName}>> with error:\n${util.formatError(e)}`,
false
);
if (process.argv.includes('dry')) process.exit(1);
})
);
await Promise.allSettled(handlerPromises);
}
/**
* Connects to the database, initializes models, and creates tables if they do not exist.
*/
public async dbPreInit() {
try {
await this.instanceDB.authenticate();
GuildDB.initModel(this.instanceDB, this);
ModLog.initModel(this.instanceDB);
ActivePunishment.initModel(this.instanceDB);
Level.initModel(this.instanceDB);
StickyRole.initModel(this.instanceDB);
Reminder.initModel(this.instanceDB);
Highlight.initModel(this.instanceDB);
await this.instanceDB.sync({ alter: true }); // Sync all tables to fix everything if updated
await this.console.success('startup', `Successfully connected to <<instance database>>.`, false);
} catch (e) {
await this.console.error(
'startup',
`Failed to connect to <<instance database>> with error:\n${util.inspect(e, { colors: true, depth: 1 })}`,
false
);
process.exit(2);
}
try {
await this.sharedDB.authenticate();
Stat.initModel(this.sharedDB);
Global.initModel(this.sharedDB);
Shared.initModel(this.sharedDB);
MemberCount.initModel(this.sharedDB);
await this.sharedDB.sync({
// Sync all tables to fix everything if updated
// if another instance restarts we don't want to overwrite new changes made in development
alter: this.config.isDevelopment ? true : false
});
await this.console.success('startup', `Successfully connected to <<shared database>>.`, false);
} catch (e) {
await this.console.error(
'startup',
`Failed to connect to <<shared database>> with error:\n${util.inspect(e, { colors: true, depth: 1 })}`,
false
);
process.exit(2);
}
}
/**
* Starts the bot
*/
public async start() {
this.intercept('ready', async (arg, done) => {
const promises = this.guilds.cache
.filter((g) => g.large)
.map((guild) => {
return guild.members.fetch();
});
await Promise.all(promises);
this.customReady = true;
this.taskHandler.startAll();
return done(null, `intercepted ${arg}`);
});
try {
await this.highlightManager.syncCache();
await UpdateCacheTask.init(this);
void this.console.success('startup', `Successfully created <<cache>>.`, false);
const stats = await UpdateStatsTask.init();
this.stats.commandsUsed = stats.commandsUsed;
this.stats.slashCommandsUsed = stats.slashCommandsUsed;
await this.login(this.token!);
} catch (e) {
await this.console.error('start', util.inspect(e, { colors: true, depth: 1 }), false);
process.exit(1);
}
}
/**
* Logs out, terminates the connection to Discord, and destroys the client.
*/
public override destroy(relogin = false): void | Promise<string> {
super.destroy();
if (relogin) {
return this.login(this.token!);
}
}
public override isOwner(user: UserResolvable): boolean {
return this.config.owners.includes(this.users.resolveId(user!)!);
}
public override isSuperUser(user: UserResolvable): boolean {
const userID = this.users.resolveId(user)!;
return client.cache.shared.superUsers.includes(userID) || this.config.owners.includes(userID);
}
}
export interface BushClient<Ready extends boolean = boolean> extends EventEmitter, PatchedElements, AkairoClient<Ready> {
on<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
once<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
emit<K extends keyof BushClientEvents>(event: K, ...args: BushClientEvents[K]): boolean;
off<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this;
removeAllListeners<K extends keyof BushClientEvents>(event?: K): this;
}
export interface BushStats {
/**
* The average cpu usage of the bot from the past 60 seconds.
*/
cpu: number | undefined;
/**
* The total number of times any command has been used.
*/
commandsUsed: bigint;
/**
* The total number of times any slash command has been used.
*/
slashCommandsUsed: bigint;
}
export interface Emitters {
client: BushClient;
commandHandler: BushClient['commandHandler'];
inhibitorHandler: BushClient['inhibitorHandler'];
listenerHandler: BushClient['listenerHandler'];
taskHandler: BushClient['taskHandler'];
contextMenuCommandHandler: BushClient['contextMenuCommandHandler'];
process: NodeJS.Process;
stdin: readline.Interface;
gateway: BushClient['ws'];
rest: BushClient['rest'];
ws: BushClient['ws'];
}
|