add blep command (#4)

This commit is contained in:
jacob janzen 2024-12-11 20:28:09 -06:00 committed by GitHub
parent 78541dcecf
commit 36066ad3d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 1 deletions

4
app.js
View file

@ -7,6 +7,7 @@ import {
} from "discord-interactions"; } from "discord-interactions";
import { Client, GatewayIntentBits, ActivityType } from "discord.js"; import { Client, GatewayIntentBits, ActivityType } from "discord.js";
import { import {
blep,
help, help,
pet, pet,
schedule_message, schedule_message,
@ -42,6 +43,9 @@ function handle_application_command(state, data, channel_id) {
case "help": case "help":
return help(state); return help(state);
case "blep":
return blep(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

@ -41,8 +41,14 @@ export function help(state) {
state, state,
`Hi, I'm sily-bot! `Hi, I'm sily-bot!
Here are the available commands and their descriptions: Here are the available commands and their descriptions:
- \`/blep\` blep.
- \`/help\` Show this message.
- \`/pet\` You can pet sily-bot. - \`/pet\` You can pet sily-bot.
- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a * instead of a number. For instance, to run a job every minute on January 4th, you might use 0 * * 4 January *. The bot replies with a UUID that can be used to cancel the cron job later. - \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a \`*\` instead of a number. For instance, to run a job every minute on January 4th, you might use \`0 * * 4 January *\`. The bot replies with a UUID that can be used to cancel the cron job later.
- \`/unschedule-message <id>\` Stop sending a message with the given id.`, - \`/unschedule-message <id>\` Stop sending a message with the given id.`,
); );
} }
export function blep(state) {
return send(state, `≽^•𐃷•^≼`);
}

View file

@ -3,6 +3,13 @@ import "dotenv/config";
import { REST, Routes } from "discord.js"; import { REST, Routes } from "discord.js";
const commands = [ const commands = [
{
name: "blep",
description: "blep",
type: 1,
integration_types: [0],
contexts: [0],
},
{ {
name: "help", name: "help",
description: "get help", description: "get help",