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
|
import { AutoRouter } from 'itty-router';
import {
InteractionResponseType,
InteractionType,
verifyKey,
} from 'discord-interactions';
import {
HOT_COMMAND,
ROLEPLAY_COMMAND,
NSFW_COMMAND,
TOP_COMMAND,
} from './commands.ts';
import {
getCutePost,
getRoleplayPost,
getNSFWPost,
getTopPost,
type RedditPost,
} from './reddit.ts';
import type { TimePeriod } from './commands.ts';
interface Environment {
DISCORD_APPLICATION_ID: string;
DISCORD_PUBLIC_KEY: string;
DISCORD_TOKEN: string;
}
interface DiscordInteraction {
type: number;
data: {
name: string;
options?: Array<{
name: string;
value: string;
}>;
};
channel_id?: string;
channel?: {
nsfw: boolean;
};
}
interface DiscordEmbed {
title: string;
description: string;
url: string;
color: number;
author: {
name: string;
url: string;
};
fields: Array<{
name: string;
value: string;
inline: boolean;
}>;
timestamp: string;
footer: {
text: string;
};
video?: { url: string };
image?: { url: string };
}
interface DiscordResponse {
type: number;
data?: {
content?: string;
embeds?: DiscordEmbed[];
flags?: number;
};
}
class JSONResponse extends Response {
constructor(body: DiscordResponse | { error: string }, init?: ResponseInit) {
const jsonBody = JSON.stringify(body);
init = init || {
headers: {
'content-type': 'application/json;charset=UTF-8',
},
};
super(jsonBody, init);
}
}
const router = AutoRouter();
function createPostEmbed(post: RedditPost): DiscordEmbed {
const mediaUrl =
post.media?.reddit_video?.fallback_url ||
post.secure_media?.reddit_video?.fallback_url ||
post.url;
let description = post.selftext || '';
if (description.length > 1000)
description = description.substring(0, 997).trim() + ' ...';
const embed: DiscordEmbed = {
title: post.title,
description: description,
url: `https://reddit.com${post.permalink}`,
color: 0xff4500,
author: {
name: `u/${post.author}`,
url: `https://reddit.com/u/${post.author}`,
},
fields: [
{
name: 'Score',
value: `${post.score} ⬆️`,
inline: true,
},
{
name: 'Comments',
value: `${post.num_comments} 💬`,
inline: true,
},
],
timestamp: new Date(post.created_utc * 1000).toISOString(),
footer: {
text: 'r/okbuddyumamusume',
},
};
if (mediaUrl) {
if (post.media?.reddit_video || post.secure_media?.reddit_video) {
embed.video = { url: mediaUrl };
} else {
embed.image = { url: mediaUrl };
}
}
return embed;
}
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,
},
});
}
}
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 }));
async function verifyDiscordRequest(
request: Request,
environment: Environment,
): Promise<{ isValid: boolean; interaction?: DiscordInteraction }> {
const signature = request.headers.get('x-signature-ed25519');
const timestamp = request.headers.get('x-signature-timestamp');
const body = await request.text();
const isValidRequest =
signature &&
timestamp &&
(await verifyKey(
body,
signature,
timestamp,
environment.DISCORD_PUBLIC_KEY,
));
if (!isValidRequest) return { isValid: false };
return { interaction: JSON.parse(body) as DiscordInteraction, isValid: true };
}
const server = {
verifyDiscordRequest,
fetch: router.fetch,
};
export default server;
|