-
Notifications
You must be signed in to change notification settings - Fork 6
/
bot.js
281 lines (223 loc) · 7.74 KB
/
bot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/**
* @file Main File of the bot, responsible for registering events, commands, interactions etc.
* @author Naman Vrati
* @contributor TechyGiraffe999
* @since 1.0.0
* @version 3.3.0
*/
// Declare constants which will be used throughout the bot.
const fs = require("fs");
const {
Client,
Collection,
GatewayIntentBits,
Partials,
REST,
Routes,
SlashCommandBuilder,
} = require("discord.js");
const { token, client_id } = require("./config.json");
/**
* From v13, specifying the intents is compulsory.
* @type {import('./typings').Client}
* @description Main Application Client */
// @ts-ignore
const client = new Client({
// Please add all intents you need, more detailed information @ https://ziad87.net/intents/
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildPresences,
],
partials: [Partials.Channel],
});
/**********************************************************************/
// Below we will be making an event handler!
/**
* @description All event files of the event handler.
* @type {String[]}
*/
const eventFiles = fs
.readdirSync("./events")
.filter((file) => file.endsWith(".js"));
// Loop through all files and execute the event when it is actually emmited.
for (const file of eventFiles) {
const event = require(`./events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args, client));
} else {
client.on(
event.name,
async (...args) => await event.execute(...args, client),
);
}
}
/**********************************************************************/
// Define Collection of Slash/Modal Commands and Cooldowns
client.slashCommands = new Collection();
client.buttonCommands = new Collection();
client.modalCommands = new Collection();
client.contextCommands = new Collection();
client.cooldowns = new Collection();
client.autocompleteInteractions = new Collection();
client.functions = new Collection();
/**********************************************************************/
// Registration of Slash-Command Interactions.
/**
* @type {String[]}
* @description All slash commands.
*/
const slashCommands = fs.readdirSync("./interactions/slash");
// Loop through all files and store slash-commands in slashCommands collection.
for (const module of slashCommands) {
const commandFiles = fs
.readdirSync(`./interactions/slash/${module}`)
.filter((file) => file.endsWith(".js"));
for (const commandFile of commandFiles) {
const command = require(`./interactions/slash/${module}/${commandFile}`);
client.slashCommands.set(command.data.name, command);
}
}
/**********************************************************************/
// Registration of Autocomplete Interactions.
/**
* @type {String[]}
* @description All autocomplete interactions.
*/
const autocompleteInteractions = fs.readdirSync("./interactions/autocomplete");
// Loop through all files and store autocomplete interactions in autocompleteInteractions collection.
for (const module of autocompleteInteractions) {
const files = fs
.readdirSync(`./interactions/autocomplete/${module}`)
.filter((file) => file.endsWith(".js"));
for (const interactionFile of files) {
const interaction = require(
`./interactions/autocomplete/${module}/${interactionFile}`,
);
client.autocompleteInteractions.set(interaction.name, interaction);
}
}
/**********************************************************************/
// Registration of Context-Menu Interactions
/**
* @type {String[]}
* @description All Context Menu commands.
*/
const contextMenus = fs.readdirSync("./interactions/context-menus");
// Loop through all files and store context-menus in contextMenus collection.
for (const folder of contextMenus) {
const files = fs
.readdirSync(`./interactions/context-menus/${folder}`)
.filter((file) => file.endsWith(".js"));
for (const file of files) {
const menu = require(`./interactions/context-menus/${folder}/${file}`);
const keyName = `${folder.toUpperCase()} ${menu.data.name}`;
client.contextCommands.set(keyName, menu);
}
}
/**********************************************************************/
// Registration of Button-Command Interactions.
/**
* @type {String[]}
* @description All button commands.
*/
const buttonCommands = fs.readdirSync("./interactions/buttons");
// Loop through all files and store button-commands in buttonCommands collection.
for (const module of buttonCommands) {
const commandFiles = fs
.readdirSync(`./interactions/buttons/${module}`)
.filter((file) => file.endsWith(".js"));
for (const commandFile of commandFiles) {
const command = require(`./interactions/buttons/${module}/${commandFile}`);
for (const id of command.id) {
client.buttonCommands.set(id, command);
}
}
}
/**********************************************************************/
// Registration of Modal-Command Interactions.
/**
* @type {String[]}
* @description All modal commands.
*/
const modalCommands = fs.readdirSync("./interactions/modals");
// Loop through all files and store modal-commands in modalCommands collection.
for (const module of modalCommands) {
const commandFiles = fs
.readdirSync(`./interactions/modals/${module}`)
.filter((file) => file.endsWith(".js"));
for (const commandFile of commandFiles) {
const command = require(`./interactions/modals/${module}/${commandFile}`);
if (Array.isArray(command.id)) {
for (const id of command.id) {
client.modalCommands.set(id, command);
}
} else {
client.modalCommands.set(command.id, command);
}
}
}
/**********************************************************************/
// Registration of Functions
/**
* @type {String[]}
* @description All functions.
*/
client.once("ready", () => {
const functionFiles = fs.readdirSync("./functions");
for (const functionFile of functionFiles) {
if (functionFile.endsWith(".js")) {
const func = require(`./functions/${functionFile}`);
client.functions.set(functionFile.replace(".js", ""), func);
func(client);
}
}
});
/**********************************************************************/
// Registration of Slash-Commands in Discord API
const rest = new REST({ version: "9" }).setToken(token);
const commandJsonData = [
...Array.from(client.slashCommands.values()).map((c) => {
const commandData =
c.data instanceof SlashCommandBuilder ? c.data.toJSON() : c.data;
commandData.integration_types = [0, 1];
commandData.contexts = [0, 1, 2];
return commandData;
}),
...Array.from(client.contextCommands.values()).map((c) => {
const commandData = c.data;
commandData.integration_types = [0, 1];
commandData.contexts = [0, 1, 2];
return commandData;
}),
];
(async () => {
try {
console.log("Started refreshing application (/) commands.");
await rest.put(
Routes.applicationCommands(client_id),
{ body: commandJsonData },
);
console.log("Successfully reloaded application (/) commands.");
} catch (error) {
console.error(error);
}
})();
// Login into your client application with bot's token.
client.login(token);
/**********************************************************************/
// Anti Crash script
process.on("unhandledRejection", (reason, promise) => {
console.error(`🚫 Critical Error detected:\n\n`, reason, promise);
// Uncomment the below lines below to see the full error details. - ADVANCED DEBUGGING //
// console.dir(reason, { showHidden: true, depth: null });
// console.log("Promise: ", promise);
});
process.on("uncaughtException", (error, origin) => {
console.error(`🚫 Critical Error detected:\n\n`, error, origin);
// Uncomment the below lines below to see the full error details. - ADVANCED DEBUGGING //
// console.dir(error, { showHidden: true, depth: null });
// console.log("Origin: ", origin);
});