-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.ts
442 lines (395 loc) · 9.63 KB
/
index.ts
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
import "env";
import {
ApplicationCommand,
CommandClient,
CommandContext,
CommandCooldownType,
Embed,
GatewayIntents,
InteractionResponseType,
Webhook,
} from "harmony";
import { getRandomStatus } from "status";
import { initLava } from "queue";
import { supabase } from "supabase";
import { getPrefixes } from "settings";
import { formatMs, getRandomInteger, loopFilesAndReturn } from "tools";
import {
buttonInteractionHandlers,
loadInteractions,
modalInteractionHandlers,
} from "shared";
import { getEmote, getString, getUserLanguage } from "i18n";
const bot = new CommandClient({
prefix: [],
async getGuildPrefix(guildid: string): Promise<string | string[]> {
if (Deno.env.get("IS_LOCAL") == "true") {
return ";";
}
if (Deno.env.get("IS_DEV") == "true") {
return ">>";
}
return await getPrefixes(guildid);
},
allowBots: false,
allowDMs: false,
mentionPrefix: true,
caseSensitive: false,
presence: {
activity: {
name: "Bidome Bot | Starting up",
type: "CUSTOM_STATUS",
},
status: "online",
},
enableSlash: true,
spacesAfterPrefix: true,
owners: ["314166178144583682", "423258218035150849"],
shardCount: "auto",
clientProperties: {
// Mild amount of tomfoolery
browser: "Discord iOS",
},
isUserBlacklisted(id: string) {
const victims = ["319223591046742016"];
if (victims.includes(id)) {
return getRandomInteger(1, 100) < 10;
}
return false;
},
});
bot.on("commandBlockedUser", async (ctx) => {
try {
await ctx.message.addReaction("1033569702489899101");
} catch {
return;
}
});
let reconnectHandler: number | undefined;
bot.on("gatewayError", (err) => {
console.log("Gateway error occured", err);
if (err.message.startsWith("NetworkError")) {
console.log("Error resolving DNS, attempting Automatic reconnects");
if (reconnectHandler == undefined) {
reconnectHandler = setInterval(async () => {
try {
const req = await fetch("https://gateway.discord.gg");
if (req.status == 404) {
await bot.gateway.reconnect();
}
} catch {
// Ignore
}
// Wait 30 seconds
}, 30 * 1000);
}
}
});
bot.on("reconnect", () => {
console.log("Reconnect requested. Reconnecting...");
});
bot.on("resumed", () => {
console.log("Reconnected.");
if (reconnectHandler != undefined) {
clearInterval(reconnectHandler);
reconnectHandler = undefined;
}
});
bot.on("error", (_err) => {
console.log("Error occured");
});
bot.on("debug", (message) => {
if (message.includes("Received Heartbeat Ack. Ping Recognized:")) return;
console.log("Debug:", message);
});
console.log("Loading all extensions!");
const slashCommands: ApplicationCommand[] = [];
for (const ext of await loopFilesAndReturn("./extensions/")) {
const extension = await import(ext);
bot.extensions.load(extension.default);
if (extension.slashCommands != undefined) {
slashCommands.push(
...(extension.slashCommands as ApplicationCommand[]),
);
}
}
for (const clock of await loopFilesAndReturn("./clocks/")) {
(await import(clock)).default(bot);
}
console.log(
`Loaded ${await bot.extensions.list.size} extension${
bot.extensions.list.size == 1 ? "" : "s"
}!`,
);
bot.on("ready", () => {
if (reconnectHandler != undefined) {
clearInterval(reconnectHandler);
reconnectHandler = undefined;
}
});
bot.once("ready", async () => {
console.log(`Logged in as ${bot.user!.tag}`);
console.log("Loaded bot!");
console.log("Loading all commands!");
await initLava(bot);
for (const cmd of await loopFilesAndReturn("./commands/")) {
const command = await import(cmd);
if (
command.slashCommands == undefined && command.default == undefined
) {
console.log(`Command ${cmd} has no default export! Skipping...`);
continue;
}
if (command.slashCommands != undefined) {
slashCommands.push(
...(command.slashCommands as ApplicationCommand[]),
);
}
if (command.default != undefined) {
bot.commands.add(command.default);
}
}
await loadInteractions();
console.log(
`Loaded ${await bot.commands.list.size} command${
bot.commands.list.size == 1 ? "" : "s"
}`,
);
console.log("Registering slash commands...");
const globalSlashCommands = await bot.interactions.commands.all();
let needsToUpdateCommands = false;
for (const command of slashCommands) {
if (
globalSlashCommands.filter(({ name }) => command.name == name)
.size > 0
) {
continue;
}
needsToUpdateCommands = true;
}
if (needsToUpdateCommands) {
console.log("Updating slash commands...");
if (Deno.env.get("IS_DEV") == "true") {
// Scuffed Af Dev Server - Bloxs
await bot.interactions.commands.bulkEdit(
slashCommands,
"688115766867918950",
);
} else {
await bot.interactions.commands.bulkEdit(slashCommands);
}
}
console.log(
`Registered ${slashCommands.length} slash command${
slashCommands.length == 1 ? "" : "s"
}!`,
);
// for await (const guild of bot.guilds) {
// await guild.chunk({});
// }
setInterval(() => {
nextStatus();
}, 30000);
});
bot.on("commandError", async (ctx: CommandContext, err: Error) => {
console.log(
`An error occured while executing ${ctx.command.name}! Here is the stacktrace:`,
);
console.log(err);
if (Deno.env.get("WEBHOOK_URL") != undefined) {
const webhook = await Webhook.fromURL(Deno.env.get("WEBHOOK_URL")!);
webhook.send({
embeds: [
new Embed({
author: {
name: ctx.client.user!.username,
icon_url: ctx.client.user!.avatarURL(),
},
title: `An error occured while running ${ctx.command.name}`,
fields: [
{
name: err.name,
value: err.message,
},
],
}).setColor("random"),
],
avatar: ctx.client.user!.avatarURL(),
name: ctx.client.user!.username,
});
}
try {
await ctx.message.reply(undefined, {
embeds: [
new Embed({
author: {
name: "Bidome bot",
icon_url: ctx.message.client.user!.avatarURL(),
},
title: getString("en", "errors.genericCommand.title"),
description: getString(
"en",
"errors.genericCommand.description",
),
}).setColor("red"),
],
});
} catch {
try {
await ctx.message.addReaction(getEmote("error"));
} catch {
return;
}
}
});
bot.on(
"commandOnCooldown",
async (
ctx: CommandContext,
remaning: number,
_type: CommandCooldownType,
) => {
await ctx.message.reply(undefined, {
embeds: [
new Embed({
author: {
name: "Bidome bot",
icon_url: ctx.message.client.user!.avatarURL(),
},
title: "Command on cooldown",
description: `This command is on cooldown for ${
formatMs(
remaning,
true,
)
}!`,
}).setColor("red"),
],
});
},
);
bot.on("interactionCreate", async (i) => {
if (i.isMessageComponent()) {
if (i.message.author.id != bot.user!.id) return;
if (i.customID.startsWith("disabled")) {
await i.respond({
type: InteractionResponseType.DEFERRED_MESSAGE_UPDATE,
});
} else {
for (const handler of buttonInteractionHandlers) {
const res = await handler.interaction(i);
if (typeof res == "boolean") {
if (!res) {
return;
}
}
}
}
}
if (i.isModalSubmit()) {
for (const handler of modalInteractionHandlers) {
const res = await handler.interaction(i);
if (typeof res == "boolean") {
if (!res) {
return;
}
}
}
}
if (i.isApplicationCommand()) {
for (const command of slashCommands) {
if (i.name == command.name) {
await command.handler(i);
}
}
}
});
bot.on(
"commandUserMissingPermissions",
async (ctx: CommandContext, missing: string[]) => {
const userLanguage = await getUserLanguage(ctx.author);
await ctx.message.reply(undefined, {
embeds: [
new Embed({
author: {
name: "Bidome bot",
icon_url: ctx.message.client.user!.avatarURL(),
},
title: getString(userLanguage, "errors.missingPerms.title"),
description: getString(
userLanguage,
"errors.missingPerms.description",
missing.join(", "),
),
}).setColor("red"),
],
});
},
);
bot.on("commandOwnerOnly", async (ctx: CommandContext) => {
try {
await ctx.message.addReaction("1033569702489899101");
} catch {
return;
}
});
const lifetimeCommandDataCache: {
[key: string]: number;
} = {};
bot.on("commandUsed", async (ctx: CommandContext) => {
if (
Deno.env.get("IS_DEV") == "true" ||
Deno.env.get("DISABLE_UNDOCUMENTED_FEATURES") == "true"
) {
return;
}
if (lifetimeCommandDataCache[ctx.command.name] == undefined) {
const { data } = await supabase
.from("cmd_analytics")
.select("times")
.eq("command", ctx.command.name)
.eq("ran_on", Date.now());
if (data == undefined || data.length == 0) {
lifetimeCommandDataCache[ctx.command.name] = 0;
await supabase.from("cmd_analytics").insert({
times: lifetimeCommandDataCache[ctx.command.name],
command: ctx.command.name,
});
} else {
lifetimeCommandDataCache[ctx.command.name] = data[0].times;
}
}
lifetimeCommandDataCache[ctx.command.name] =
lifetimeCommandDataCache[ctx.command.name] + 1;
await supabase
.from("cmd_analytics")
.update({
times: lifetimeCommandDataCache[ctx.command.name],
})
.eq("command", ctx.command.name);
});
const nextStatus = async () => {
if (bot.gateway.connected) {
const { type, name } = await getRandomStatus(bot);
try {
bot.setPresence({
activity: {
name,
type,
},
});
} catch {
console.log("status failed to be set");
}
}
};
bot.connect(Deno.env.get("token"), [
GatewayIntents.GUILDS,
GatewayIntents.GUILD_MESSAGES,
GatewayIntents.GUILD_VOICE_STATES,
GatewayIntents.GUILD_PRESENCES,
GatewayIntents.GUILD_MEMBERS,
GatewayIntents.MESSAGE_CONTENT,
GatewayIntents.GUILD_EMOJIS_AND_STICKERS,
GatewayIntents.GUILD_MODERATION,
]);