factcheck basic impl

This commit is contained in:
jjanzen 2025-01-16 23:55:00 -06:00
parent 7f600c39ca
commit 78c115a807
2 changed files with 10 additions and 0 deletions

5
app.js
View file

@ -13,6 +13,7 @@ import {
schedule_message, schedule_message,
catfact, catfact,
fomx, fomx,
factcheck,
} from "./command_impls.js"; } from "./command_impls.js";
import { MessageSchedule } from "./message-scheduler.js"; import { MessageSchedule } from "./message-scheduler.js";
@ -50,6 +51,10 @@ function handle_application_command(state, data, channel_id) {
case "fomx": case "fomx":
return fomx(state); return fomx(state);
case "factcheck":
if (options.length >= 1) return factcheck(state, options[0].value);
else return factcheck(state, True);
default: default:
console.error(`unknown command: ${name}`); console.error(`unknown command: ${name}`);
return state.res.status(400).json({ error: "unknown command" }); return state.res.status(400).json({ error: "unknown command" });

View file

@ -74,3 +74,8 @@ export function fomx(state) {
return send(state, { content: "failed to get fomx" }); return send(state, { content: "failed to get fomx" });
}); });
} }
export function factcheck(state, truth) {
if (truth) return send(state, { content: "true" });
else return send(state, { content: "false" });
}