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
|
import { AkairoClient, CommandHandler, InhibitorHandler, ListenerHandler } from 'discord-akairo';
import { ColorResolvable, Message } from 'discord.js';
import { join } from 'path';
import { Logger } from 'winston';
import { SettingsProvider } from '../../database';
import { logger } from '../util/logger';
declare module 'discord-akairo' {
interface AkairoClient {
logger: Logger;
commandHandler: CommandHandler;
config: ReactionConfig;
settings: SettingsProvider;
}
}
export interface ReactionConfig {
token: string;
color: ColorResolvable;
owners: string | string[];
prefix: string;
}
export default class ReactionClient extends AkairoClient {
public constructor(config: ReactionConfig) {
super({
messageCacheMaxSize: 50,
messageCacheLifetime: 300,
messageSweepInterval: 900,
ownerID: config.owners,
partials: ['MESSAGE', 'REACTION'],
});
this.config = config;
this.on(
'shardError',
(err: Error, id: any): Logger => this.logger.error(`[SHARD ${id} ERROR] ${err.message}`, err.stack),
).on('warn', (warn: any): Logger => this.logger.warn(`[CLIENT WARN] ${warn}`));
}
public readonly config: ReactionConfig;
public logger = logger;
public commandHandler: CommandHandler = new CommandHandler(this, {
directory: join(__dirname, '..', 'commands'),
prefix: async (msg: Message): Promise<string> => {
if (msg.guild) {
const doc = this.settings.cache.guilds.get(msg.guild.id);
if (doc?.prefix) return doc.prefix;
}
return this.config.prefix;
},
aliasReplacement: /-/g,
allowMention: true,
handleEdits: true,
commandUtil: true,
commandUtilLifetime: 3e5,
defaultCooldown: 3000,
ignorePermissions: this.ownerID,
argumentDefaults: {
prompt: {
modifyStart: (msg: Message, str: string) =>
`${msg.author}, ${str}\n...or type \`cancel\` to cancel this command.`,
modifyRetry: (msg: Message, str: string) =>
`${msg.author}, ${str}\n...or type \`cancel\` to cancel this command.`,
timeout: 'You took too long! This command has been cancelled.',
ended: 'Too many tries. *tsk tsk* This command has been cancelled.',
cancel: 'If you say so. Command cancelled.',
retries: 3,
time: 30000,
},
otherwise: '',
},
});
public inhibitorHandler: InhibitorHandler = new InhibitorHandler(this, {
directory: join(__dirname, '..', 'inhibitors'),
});
public listenerHandler: ListenerHandler = new ListenerHandler(this, {
directory: join(__dirname, '..', 'listeners'),
});
public settings: SettingsProvider = new SettingsProvider(this);
private async load(): Promise<this> {
await this.settings.init();
this.commandHandler.useInhibitorHandler(this.inhibitorHandler);
this.commandHandler.useListenerHandler(this.listenerHandler);
this.listenerHandler.setEmitters({
commandHandler: this.commandHandler,
inhibitorHandler: this.inhibitorHandler,
listenerHandler: this.listenerHandler,
});
this.commandHandler.loadAll();
this.inhibitorHandler.loadAll();
this.listenerHandler.loadAll();
return this;
}
public async launch(): Promise<string> {
await this.load();
return this.login(this.config.token);
}
}
|