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