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
import { example1 } from "https://esm.town/v/stevekrouse/example1";
import process from "node:process";
import { verify_discord_signature } from "https://esm.town/v/malloc/verify_discord_signature?v=8";
export let examplebot_endpoint = (
req: express.Request,
res: express.Response,
) => {
console.log(res);
if (!req.get("X-Signature-Timestamp") || !req.get("X-Signature-Ed25519")) {
res.status(400);
res.end("Signature headers missing");
}
verify_discord_signature(
process.env.discord_pubkey,
JSON.stringify(req.body),
req.get("X-Signature-Ed25519"),
req.get("X-Signature-Timestamp"),
).then((verified) => {
if (!verified) {
res.status(401);
res.end("signature invalid");
return;
}
res.set("Content-type", "application/json");
switch (req.body.type) {
case 1: // PING
res.json({ type: 1 }); // PONG
break;
case 2: // APPLICATION_COMMAND
// TODO: Probably don't use a nested switch here
switch (req.body.data.name) {
case "ping":
res.json({
type: 4,
data: {
content:
`Hello World! example1 is: ${example1}`,
},
});
break;
default:
res.json({
type: 4,
data: {
content: "Unknown command.",
flags: 64, // 1 << 6, EPHEMERAL
},
});
break;
}
break;
default:
res.status(400);
res.end("bad request");
break;
}
});
};
// Forked from @malloc.examplebot_endpoint
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023