1 |
import { Client, ClientOptions, Collection, Interaction, Message } from 'discord.js'; |
2 |
import BaseEvent from '../utils/structures/BaseEvent'; |
3 |
import BaseCommand from '../utils/structures/BaseCommand'; |
4 |
import { Config } from './Config'; |
5 |
import Database from './Database'; |
6 |
import path from 'path'; |
7 |
import Logger from '../automod/Logger'; |
8 |
import SpamFilter from '../automod/SpamFilter'; |
9 |
import SnippetManager from '../services/SnippetManager'; |
10 |
import AFKEngine from '../services/AFKEngine'; |
11 |
import Auth from '../services/Auth'; |
12 |
import MessageFilter from '../automod/MessageFilter'; |
13 |
import AntiRaid from '../automod/AntiRaid'; |
14 |
import Starboard from '../services/Starboard'; |
15 |
import Server from '../api/Server'; |
16 |
import Cooldown from '../automod/Cooldown'; |
17 |
import StartupManager from '../services/StartupManager'; |
18 |
|
19 |
export default class DiscordClient extends Client { |
20 |
private _commands = new Collection<string, BaseCommand>(); |
21 |
private _events = new Collection<string, BaseEvent>(); |
22 |
|
23 |
rootdir: string; |
24 |
msg: Message | Interaction | null = null; |
25 |
|
26 |
config: Config; |
27 |
db: Database; |
28 |
logger: Logger; |
29 |
snippetManager: SnippetManager; |
30 |
afkEngine: AFKEngine; |
31 |
auth: Auth; |
32 |
spamFilter: SpamFilter; |
33 |
messageFilter: MessageFilter; |
34 |
antiraid: AntiRaid; |
35 |
starboard: Starboard; |
36 |
server: Server; |
37 |
cooldown: Cooldown; |
38 |
startupManager: StartupManager; |
39 |
|
40 |
static client: DiscordClient; |
41 |
|
42 |
constructor(options: ClientOptions, rootdir: string = __dirname) { |
43 |
super({ |
44 |
ws: { |
45 |
properties: { |
46 |
$browser: "Discord iOS" |
47 |
} |
48 |
}, |
49 |
...options |
50 |
}); |
51 |
|
52 |
this.rootdir = rootdir; |
53 |
|
54 |
this.config = new Config(this); |
55 |
this.db = new Database(path.resolve(rootdir, 'database.db'), this); |
56 |
this.logger = new Logger(this); |
57 |
this.snippetManager = new SnippetManager(this); |
58 |
this.afkEngine = new AFKEngine(this); |
59 |
this.auth = new Auth(this); |
60 |
this.spamFilter = new SpamFilter(this); |
61 |
this.messageFilter = new MessageFilter(this); |
62 |
this.antiraid = new AntiRaid(this); |
63 |
this.starboard = new Starboard(this); |
64 |
this.server = new Server(this); |
65 |
this.cooldown = new Cooldown(this); |
66 |
this.startupManager = new StartupManager(this); |
67 |
|
68 |
DiscordClient.client = this; |
69 |
} |
70 |
|
71 |
get commands(): Collection<string, BaseCommand> { |
72 |
return this._commands; |
73 |
} |
74 |
|
75 |
get events(): Collection<string, BaseEvent> { |
76 |
return this._events; |
77 |
} |
78 |
|
79 |
setMessage(msg: Message | Interaction) { |
80 |
this.msg = msg; |
81 |
} |
82 |
} |