add fomx
This commit is contained in:
parent
128f3d63ea
commit
af4278b2ee
3 changed files with 31 additions and 2 deletions
12
app.js
12
app.js
|
@ -6,7 +6,14 @@ import {
|
|||
verifyKeyMiddleware,
|
||||
} from "discord-interactions";
|
||||
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";
|
||||
|
||||
class State {
|
||||
|
@ -40,6 +47,9 @@ function handle_application_command(state, data, channel_id) {
|
|||
case "catfact":
|
||||
return catfact(state);
|
||||
|
||||
case "fomx":
|
||||
return fomx(state);
|
||||
|
||||
default:
|
||||
console.error(`unknown command: ${name}`);
|
||||
return res.status(400).json({ error: "unknown command" });
|
||||
|
|
|
@ -50,7 +50,6 @@ export function blep(state) {
|
|||
export function catfact(state) {
|
||||
get("https://meowfacts.herokuapp.com/", (res) => {
|
||||
res.on("data", (d) => {
|
||||
process.stdout.write(d);
|
||||
const obj = JSON.parse(d);
|
||||
const fact = obj.data[0];
|
||||
return send(state, { content: fact });
|
||||
|
@ -60,3 +59,16 @@ export function catfact(state) {
|
|||
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" });
|
||||
});
|
||||
}
|
||||
|
|
|
@ -31,6 +31,13 @@ const commands = [
|
|||
integration_types: [0],
|
||||
contexts: [0],
|
||||
},
|
||||
{
|
||||
name: "fomx",
|
||||
description: "get a fomx picture",
|
||||
type: 1,
|
||||
integration_types: [0],
|
||||
contexts: [0],
|
||||
},
|
||||
{
|
||||
name: "schedule_message",
|
||||
description: "Register a message to run as a cron job",
|
||||
|
|
Loading…
Add table
Reference in a new issue