Compare commits

..

10 commits

Author SHA1 Message Date
jjanzen
eed31a99d2
Merge pull request #8 from drkitt/main
formatting and typo fix
2025-01-19 09:22:49 -06:00
Zoey Kitt
56945f2ac4 Use monospace style for the cron syntax template 2025-01-18 16:57:24 -06:00
Zoey Kitt
4907fc28ac Minor spelling mistake I win 2025-01-18 16:56:49 -06:00
ad10e53d0c clean up readme 2025-01-18 15:25:09 -06:00
bcaa230abd update help and readme 2025-01-18 15:14:30 -06:00
f0eb74dcfa fact checking boar now uses advanced ai algorithms 2025-01-17 12:18:41 -06:00
4035f68fb6 send image urls 2025-01-17 00:14:10 -06:00
b4f1a11774 fix typo 2025-01-16 23:57:23 -06:00
0e8086b612 fix crash 2025-01-16 23:56:33 -06:00
78c115a807 factcheck basic impl 2025-01-16 23:55:00 -06:00
4 changed files with 24 additions and 14 deletions

View file

@ -4,14 +4,14 @@ A bot that automates silliness.
## How to run ## How to run
1. Create a new bot at https://discord.com/developers/applications/ 1. Create a new bot at <https://discord.com/developers/applications/>
2. Set your Interactions Endpoint URL here: https://discord.com/developers/applications/<id\>/information 2. Set your Interactions Endpoint URL here: https://discord.com/developers/applications/<id\>/information
3. Clone the latest version of `sily-bot` with `git clone https://git.jjanzen.ca/index.cgi/sily-bot.git` 3. Clone the latest version of `sily-bot` with `git clone https://git.jjanzen.ca/index.cgi/sily-bot.git`
4. Populate your `.env` file 4. Populate your `.env` file
* APP_ID and PUBLIC_KEY are found at https://discord.com/developers/applications/<id\>/information * `APP_ID` and `PUBLIC_KEY` are found at https://discord.com/developers/applications/<id\>/information
* DISCORD_TOKEN is found by reseting the token at https://discord.com/developers/applications/<id\>/bot * `DISCORD_TOKEN` is found by reseting the token at https://discord.com/developers/applications/<id\>/bot
* TIMEZONE is base on the [IANA time zone database](https://www.iana.org/time-zones) e.g. `America/Winnipeg` * TIMEZONE is base on the [IANA time zone database](https://www.iana.org/time-zones) e.g. `America/Winnipeg`
* PORT is the port that the application should run on. This value is optional and defaults to 3000. * `PORT` is the port that the application should run on. This value is optional and defaults to 3000.
5. Install dependencies with `npm install` 5. Install dependencies with `npm install`
6. Register the bot commands with `npm run register` 6. Register the bot commands with `npm run register`
7. Run the bot with `npm run start` 7. Run the bot with `npm run start`
@ -46,7 +46,8 @@ This bot requires that there be a publicly accessible interactions endpoint URL.
|---|---| |---|---|
|`/blep`|blep.| |`/blep`|blep.|
|`/catfact`|Get a fact about cats| |`/catfact`|Get a fact about cats|
|`/factcheck`|Commune with the sacred boar at the centre of the world to check a fact|
|`/fomx`|Get an image of a fox| |`/fomx`|Get an image of a fox|
|`/help`|Show a help message| |`/help`|Show a help 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 *`.| |`/schedule-message <message> <cron>`|Schedule a message to be sent 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 *`.|

4
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,9 @@ function handle_application_command(state, data, channel_id) {
case "fomx": case "fomx":
return fomx(state); return fomx(state);
case "factcheck":
return factcheck(state);
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

@ -38,10 +38,11 @@ export function help(state) {
Here are the available commands and their descriptions: Here are the available commands and their descriptions:
- \`/blep\` blep. - \`/blep\` blep.
- \`/catfact\` Get a fact about cats. - \`/catfact\` Get a fact about cats.
- \`/factcheck\` Commune with the sacred boar at the centre of the world to check a fact.
- \`/fomx\` Get an image of a fox. - \`/fomx\` Get an image of a fox.
- \`/help\` Show this message. - \`/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 *\`.`, - \`/schedule-message <message> <cron>\` Schedule a message to be sent 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 *\`.`,
}); });
} }
@ -74,3 +75,15 @@ export function fomx(state) {
return send(state, { content: "failed to get fomx" }); return send(state, { content: "failed to get fomx" });
}); });
} }
export function factcheck(state) {
const truth = Math.random() > 0.5 ? true : false;
if (truth)
return send(state, {
content: "https://jjanzen.ca/images/true-boar.png",
});
else
return send(state, {
content: "https://jjanzen.ca/images/false-boar.png",
});
}

View file

@ -42,14 +42,6 @@ const commands = [
name: "factcheck", name: "factcheck",
description: "check a fact", description: "check a fact",
type: 1, type: 1,
options: [
{
type: 5,
name: "true",
description: "truth value of fact check",
required: false,
},
],
integration_types: [0], integration_types: [0],
contexts: [0], contexts: [0],
}, },