This commit is contained in:
Jacob Janzen 2024-12-30 21:15:14 -06:00
parent 128f3d63ea
commit af4278b2ee
3 changed files with 31 additions and 2 deletions

12
app.js
View file

@ -6,7 +6,14 @@ import {
verifyKeyMiddleware, verifyKeyMiddleware,
} from "discord-interactions"; } from "discord-interactions";
import { Client, GatewayIntentBits, ActivityType } from "discord.js"; import { Client, GatewayIntentBits, ActivityType } from "discord.js";
import { blep, help, pet, schedule_message, catfact } from "./command_impls.js"; import {
blep,
help,
pet,
schedule_message,
catfact,
fomx,
} from "./command_impls.js";
import { MessageSchedule } from "./message-scheduler.js"; import { MessageSchedule } from "./message-scheduler.js";
class State { class State {
@ -40,6 +47,9 @@ function handle_application_command(state, data, channel_id) {
case "catfact": case "catfact":
return catfact(state); return catfact(state);
case "fomx":
return fomx(state);
default: default:
console.error(`unknown command: ${name}`); console.error(`unknown command: ${name}`);
return res.status(400).json({ error: "unknown command" }); return res.status(400).json({ error: "unknown command" });

View file

@ -50,7 +50,6 @@ export function blep(state) {
export function catfact(state) { export function catfact(state) {
get("https://meowfacts.herokuapp.com/", (res) => { get("https://meowfacts.herokuapp.com/", (res) => {
res.on("data", (d) => { res.on("data", (d) => {
process.stdout.write(d);
const obj = JSON.parse(d); const obj = JSON.parse(d);
const fact = obj.data[0]; const fact = obj.data[0];
return send(state, { content: fact }); return send(state, { content: fact });
@ -60,3 +59,16 @@ export function catfact(state) {
return send(state, { content: "failed to request fact" }); return send(state, { content: "failed to request fact" });
}); });
} }
export function fomx(state) {
get("https://randomfox.ca/floof/", (res) => {
res.on("data", (d) => {
const obj = JSON.parse(d);
const fomx = obj.image;
return send(state, { content: fomx });
});
}).on("error", (e) => {
console.error(e);
return send(state, { content: "failed to get fomx" });
});
}

View file

@ -31,6 +31,13 @@ const commands = [
integration_types: [0], integration_types: [0],
contexts: [0], contexts: [0],
}, },
{
name: "fomx",
description: "get a fomx picture",
type: 1,
integration_types: [0],
contexts: [0],
},
{ {
name: "schedule_message", name: "schedule_message",
description: "Register a message to run as a cron job", description: "Register a message to run as a cron job",