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