-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
269 lines (246 loc) Β· 8.05 KB
/
main.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
import { Duration } from "durationjs";
import type {
APIInteractionResponseDeferredChannelMessageWithSource,
AppSchema,
} from "@discord-applications/app";
import {
ApplicationCommandOptionType,
createApp,
DiscordAPI,
InteractionResponseType,
MessageFlags,
} from "@discord-applications/app";
import type { ShorterOptions } from "#/lib/shorter/mod.ts";
import { shorter } from "#/lib/shorter/mod.ts";
import { addTTLMessage, makeTTLMessageListener } from "#/lib/queues/mod.ts";
import {
DISCORD_CLIENT_ID,
DISCORD_PUBLIC_KEY,
DISCORD_ROLE_ID,
DISCORD_TOKEN,
GITHUB_TOKEN,
PORT,
} from "#/env.ts";
const INVITE_URL =
`https://discord.com/api/oauth2/authorize?client_id=${DISCORD_CLIENT_ID}&scope=applications.commands`;
const APPLICATION_URL =
`https://discord.com/developers/applications/${DISCORD_CLIENT_ID}/bot`;
const discordAPI = new DiscordAPI({
applicationID: DISCORD_CLIENT_ID,
token: DISCORD_TOKEN,
publicKey: DISCORD_PUBLIC_KEY,
});
export const shorterSchema = {
chatInput: {
name: "shorter",
description: "Manage shortlinks.",
subcommands: {
add: {
description: "Add a shortlink.",
options: {
alias: {
type: ApplicationCommandOptionType.String,
description: "The alias of the shortlink",
required: true,
},
destination: {
type: ApplicationCommandOptionType.String,
description: "The destination of the shortlink",
required: true,
},
force: {
type: ApplicationCommandOptionType.Boolean,
description: "Whether to overwrite an existing shortlink",
},
ttl: {
type: ApplicationCommandOptionType.String,
description: "The time-to-live of the shortlink",
},
},
},
remove: {
description: "Remove a shortlink.",
options: {
alias: {
type: ApplicationCommandOptionType.String,
description: "The alias of the shortlink",
required: true,
},
},
},
},
},
} as const satisfies AppSchema;
if (import.meta.main) {
await main();
}
/**
* main is the entrypoint for the Shorter application command.
*/
export async function main() {
// Set up queue listener.
const kv = await Deno.openKv();
const ttlMessageListener = makeTTLMessageListener(GITHUB_TOKEN);
kv.listenQueue(async (message) => {
await ttlMessageListener(message);
});
// Create the Discord application.
const shorterApp = await createApp(
{
schema: shorterSchema,
applicationID: DISCORD_CLIENT_ID,
publicKey: DISCORD_PUBLIC_KEY,
token: DISCORD_TOKEN,
register: true,
},
{
add(interaction) {
if (!interaction.member?.user) {
throw new Error("Invalid request");
}
if (
!interaction.member.roles.some((role) =>
DISCORD_ROLE_ID.includes(role)
)
) {
return {
type: InteractionResponseType.ChannelMessageWithSource,
data: {
flags: MessageFlags.Ephemeral,
content: "You do not have permission to use this command.",
},
};
}
// Make shorter options.
const shorterOptions: ShorterOptions = {
githubPAT: GITHUB_TOKEN,
actor: {
tag: interaction.member.user.username,
nick: interaction.member.nick || undefined,
},
data: {
alias: interaction.data.parsedOptions.alias,
destination: interaction.data.parsedOptions.destination,
force: interaction.data.parsedOptions.force,
},
};
// Invoke the Shorter operation.
shorter(shorterOptions)
.then(async (result) => {
// Parse the TTL duration.
const ttlDuration = interaction.data.parsedOptions.ttl &&
Duration.fromString(interaction.data.parsedOptions.ttl);
// Compose the commit message.
const shortlinkText = `acmcsuf.com/${shorterOptions.data.alias}`;
const commitText = result.sha.slice(0, 7);
const commitURL = `https://acmcsuf.com/code/commit/${result.sha}`;
let content =
`Created shortlink [${shortlinkText}](https://${shortlinkText}) in commit [\`${commitText}\`](${commitURL})!`;
if (ttlDuration) {
// Render to Discord timestamp format.
// https://gist.github.com/LeviSnoot/d9147767abeef2f770e9ddcd91eb85aa
const discordTimestamp = toDiscordTimestamp(
(Date.now() + ttlDuration.raw) * 0.001,
);
content += `\n\nThis shortlink will expire ${discordTimestamp}.`;
}
// Send the success message.
await discordAPI.editOriginalInteractionResponse({
interactionToken: interaction.token,
content,
});
// Enqueue the delete operation if TTL is set.
if (!ttlDuration) {
return;
}
await addTTLMessage(
kv,
{
alias: shorterOptions.data.alias,
actor: shorterOptions.actor,
},
ttlDuration.raw,
);
})
.catch((error) => {
if (error instanceof Error) {
discordAPI.editOriginalInteractionResponse({
interactionToken: interaction.token,
content: `Error: ${error.message}`,
});
}
console.error(error);
});
// Acknowledge the interaction.
return {
type: InteractionResponseType.DeferredChannelMessageWithSource,
} satisfies APIInteractionResponseDeferredChannelMessageWithSource;
},
remove(interaction) {
if (!interaction.member?.user) {
throw new Error("Invalid request");
}
if (
!interaction.member.roles
.some((role) => DISCORD_ROLE_ID.includes(role))
) {
return {
type: InteractionResponseType.ChannelMessageWithSource,
data: {
flags: MessageFlags.Ephemeral,
content: "You do not have permission to use this command.",
},
};
}
// Make shorter options.
const shorterOptions: ShorterOptions = {
githubPAT: GITHUB_TOKEN,
actor: {
tag: interaction.member.user.username,
nick: interaction.member.nick || undefined,
},
data: { alias: interaction.data.parsedOptions.alias },
};
// Invoke the Shorter operation.
shorter(shorterOptions)
.then(async (result) => {
// Send the success message.
await discordAPI.editOriginalInteractionResponse({
interactionToken: interaction.token,
content:
`Removed \`${interaction.data.parsedOptions.alias}\` in commit [${result.message}](https://acmcsuf.com/code/commit/${result.sha}).`,
});
})
.catch((error) => {
if (error instanceof Error) {
discordAPI.editOriginalInteractionResponse({
interactionToken: interaction.token,
content: `Error: ${error.message}`,
});
}
console.error(error);
});
// Acknowledge the interaction.
return {
type: InteractionResponseType.DeferredChannelMessageWithSource,
} satisfies APIInteractionResponseDeferredChannelMessageWithSource;
},
},
);
// Start the server.
Deno.serve(
{
port: PORT,
onListen() {
// Log the invite URL.
console.log("Invite Shorter to a server:", INVITE_URL);
// Log the application information.
console.log("Discord application information:", APPLICATION_URL);
},
},
shorterApp,
);
}
function toDiscordTimestamp(timestamp: number) {
return `<t:${~~timestamp}:R>`;
}