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