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