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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
import { AutoRouter } from "itty-router";
import { InteractionResponseType, InteractionType } from "discord-interactions";
import {
HOT_COMMAND,
ROLEPLAY_COMMAND,
NSFW_COMMAND,
TOP_COMMAND,
COMPLAIN_COMMAND,
COLOURS_COMMAND,
} from "./discord/commands.ts";
import {
getCutePost,
getRoleplayPost,
getNSFWPost,
getTopPost,
} from "./reddit.ts";
import type { TimePeriod } from "./discord/types.ts";
import type { Environment, DiscordEmbed } from "./discord/interfaces.ts";
import {
createPostEmbed,
createComplaintEmbed,
createRoleDistributionEmbed,
} from "./discord/embeds.ts";
import { JSONResponse } from "./discord/responses.ts";
import { verifyDiscordRequest } from "./discord/verification.ts";
const router = AutoRouter();
const COMPLAINT_CHANNEL_ID = "1415868433714778204";
const GUILD_ID = "1406422617724026901";
const COLOR_ROLE_IDS = [
"1407075059830624406", // Nice Nature Red
"1407075160250650664", // Taiki Shuttle Green
"1407075256904187997", // Mejiro McQueen Purple
"1407075372427640952", // Gold Ship Grey
"1407075670177091664", // Grass Wonder Gold
"1407078154555752589", // Agnes Tachyon Dark Purple
"1407345006108475476", // Special Week Salmon
"1408246546708959403", // Biwahaya Hide Linen
"1408247166413176943", // Symboli Rudolf Celeste
"1411128003924332764", // King Halo Dark Blue
"1413582797284708474", // Matikanetannhauser Lemon
"1414435043761324042", // Silence Suzuka Sea Green
"1414454914138116158", // Haru Urara Pink
"1414455824524247161", // TM Opera O Orange
"1414456352167825490", // Oguri Cap Buttermilk
"1414541675396862012", // Kitasan Black Sable
"1415083621152460832", // Tokai Teio Royal Blue
"1415520343690575883", // Aston Machan Sienna
"1415539100315942962", // Super Creek Baby Blue
"1415539544232824913", // Sakura Bakushin O Lilac
"1415567915578818723", // El Condor Pasa Biscotti
"1415592658906124338", // Still in Love Crimson
"1415593126273224795", // Mayano Top Gun Navy Blue
"1415797242845200475", // Mr. C.B. Forest Green
];
const sendComplaintToChannel = async (
environment: Environment,
embed: DiscordEmbed,
): Promise<boolean> => {
const url = `https://discord.com/api/v10/channels/${COMPLAINT_CHANNEL_ID}/messages`;
try {
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bot ${environment.DISCORD_TOKEN}`,
},
body: JSON.stringify({
embeds: [embed],
}),
});
return response.ok;
} catch (error) {
console.error("Error sending complaint to channel:", error);
return false;
}
};
const fetchRoleDistribution = async (
environment: Environment,
guildID: string,
): Promise<Array<{ name: string; count: number }>> => {
const roleData: Array<{ name: string; count: number }> = [];
try {
const guildResponse = await fetch(
`https://discord.com/api/v10/guilds/${guildID}`,
{
headers: {
Authorization: `Bot ${environment.DISCORD_TOKEN}`,
},
},
);
if (!guildResponse.ok) {
console.error(
"Failed to fetch guild data:",
guildResponse.status,
guildResponse.statusText,
);
const errorText = await guildResponse.text();
console.error("Error details:", errorText);
return roleData;
}
const guild = await guildResponse.json();
for (const roleID of COLOR_ROLE_IDS) {
const role = guild.roles?.find((r: any) => r.id === roleID);
if (role) {
roleData.push({
name: role.name,
count: 0,
});
} else {
console.log(`Role not found: ${roleID}`);
}
}
let after = "";
let hasMore = true;
let batchCount = 0;
const maxBatches = 10;
while (hasMore && batchCount < maxBatches) {
const membersResponse = await fetch(
`https://discord.com/api/v10/guilds/${guildID}/members?limit=1000${after ? `&after=${after}` : ""}`,
{
headers: {
Authorization: `Bot ${environment.DISCORD_TOKEN}`,
},
},
);
if (membersResponse.status === 429) {
const retryAfter = membersResponse.headers.get("Retry-After");
const resetAfter = membersResponse.headers.get(
"X-RateLimit-Reset-After",
);
const scope = membersResponse.headers.get("X-RateLimit-Scope");
console.log(
`Rate limited! Scope: ${scope}, Retry-After: ${retryAfter}, Reset-After: ${resetAfter}`,
);
const delayMs = Math.max(
retryAfter ? parseFloat(retryAfter) * 1000 : 0,
resetAfter ? parseFloat(resetAfter) * 1000 : 0,
);
if (delayMs > 0) {
console.log(`Waiting ${delayMs}ms before retry ...`);
await new Promise((resolve) => setTimeout(resolve, delayMs));
continue;
}
}
if (!membersResponse.ok) {
console.error(
"Failed to fetch members:",
membersResponse.status,
membersResponse.statusText,
);
const errorText = await membersResponse.text();
console.error("Members error details:", errorText);
break;
}
const remaining = membersResponse.headers.get("X-RateLimit-Remaining");
const resetAfter = membersResponse.headers.get("X-RateLimit-Reset-After");
if (remaining === "0" && resetAfter) {
console.log(`Rate limit bucket empty, waiting ${resetAfter}s...`);
await new Promise((resolve) =>
setTimeout(resolve, parseFloat(resetAfter) * 1000),
);
}
const members = await membersResponse.json();
for (const member of members)
for (const roleId of member.roles || []) {
const roleIndex = COLOR_ROLE_IDS.indexOf(roleId);
if (roleIndex !== -1) roleData[roleIndex].count++;
}
hasMore = members.length === 1000;
if (hasMore && members.length > 0)
after = members[members.length - 1].user.id;
batchCount += 1;
}
roleData.sort((a, b) => b.count - a.count);
} catch (error) {
console.error("Error fetching role distribution:", error);
}
return roleData;
};
router.get("/", (_request: Request, environment: Environment) => {
return new Response(`👋 ${environment.DISCORD_APPLICATION_ID}`);
});
router.post("/", async (request: Request, environment: Environment) => {
const { isValid, interaction } = await server.verifyDiscordRequest(
request,
environment,
);
if (!isValid || !interaction)
return new Response("Bad request signature.", { status: 401 });
if (interaction.type === InteractionType.PING)
return new JSONResponse({
type: InteractionResponseType.PONG,
});
if (interaction.type === InteractionType.APPLICATION_COMMAND) {
switch (interaction.data.name.toLowerCase()) {
case HOT_COMMAND.name.toLowerCase(): {
try {
const post = await getCutePost();
const embed = createPostEmbed(post);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
embeds: [embed],
},
});
} catch (error) {
console.error("Error in hot command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ No posts found. Try again later!",
flags: 64,
},
});
}
}
case ROLEPLAY_COMMAND.name.toLowerCase(): {
try {
const post = await getRoleplayPost();
const embed = createPostEmbed(post);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
embeds: [embed],
},
});
} catch (error) {
console.error("Error in roleplay command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ No roleplay posts found. Try again later!",
flags: 64,
},
});
}
}
case NSFW_COMMAND.name.toLowerCase(): {
if (!interaction.channel_id || !interaction.channel?.nsfw) {
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ This command can only be used in NSFW channels.",
flags: 64,
},
});
}
try {
const post = await getNSFWPost();
const embed = createPostEmbed(post);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
embeds: [embed],
},
});
} catch (error) {
console.error("Error in NSFW command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ No NSFW posts found. Try again later!",
flags: 64,
},
});
}
}
case TOP_COMMAND.name.toLowerCase(): {
try {
const time =
(interaction.data.options?.[0]?.value as TimePeriod) || "day";
const post = await getTopPost(time);
const embed = createPostEmbed(post);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
embeds: [embed],
},
});
} catch (error) {
console.error("Error in top command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ No top posts found. Try again later!",
flags: 64,
},
});
}
}
case COMPLAIN_COMMAND.name.toLowerCase(): {
try {
const complaintMessage = interaction.data.options?.[0]
?.value as string;
if (!complaintMessage)
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ Please provide a message for your complaint.",
flags: 64,
},
});
const complainant = {
username:
interaction.member?.user?.username ||
interaction.user?.username ||
"Unknown",
id:
interaction.member?.user?.id || interaction.user?.id || "Unknown",
avatar:
interaction.member?.user?.avatar || interaction.user?.avatar,
};
const isDM = !interaction.guild_id;
const complaintEmbed = createComplaintEmbed(
complaintMessage,
complainant,
Date.now(),
isDM,
);
const success = await sendComplaintToChannel(
environment,
complaintEmbed,
);
if (success) {
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "✅ Your complaint has been submitted successfully!",
flags: 64,
},
});
} else {
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content:
"❌ Failed to submit your complaint. Please try again later.",
flags: 64,
},
});
}
} catch (error) {
console.error("Error in complain command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ An error occurred while processing your complaint.",
flags: 64,
},
});
}
}
case COLOURS_COMMAND.name.toLowerCase(): {
try {
if (!interaction.guild_id)
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ This command can only be used in server channels.",
flags: 64,
},
});
const roleDistribution = await fetchRoleDistribution(
environment,
GUILD_ID,
);
if (roleDistribution.length === 0)
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content:
"❌ Unable to fetch role distribution data. The bot may not have permission to read member lists or the server may not be accessible.",
flags: 64,
},
});
const embed = createRoleDistributionEmbed(roleDistribution);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
embeds: [embed],
},
});
} catch (error) {
console.error("Error in colours command:", error);
return new JSONResponse({
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "❌ An error occurred while fetching role distribution.",
flags: 64,
},
});
}
}
default:
return new JSONResponse({ error: "Unknown Type" }, { status: 400 });
}
}
console.error("Unknown Type");
return new JSONResponse({ error: "Unknown Type" }, { status: 400 });
});
router.all("*", () => new Response("Not Found.", { status: 404 }));
const server = {
verifyDiscordRequest,
fetch: router.fetch,
};
export default server;
|