Compare commits

..

No commits in common. "eed31a99d2be9b15a484061c06c12ccbc13f1451" and "7f600c39ca945ba0264deb7a68b905e6e0e12327" have entirely different histories.

4 changed files with 14 additions and 24 deletions

View file

@ -4,14 +4,14 @@ A bot that automates silliness.
## 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
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
* `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
* 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
* 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`
6. Register the bot commands with `npm run register`
7. Run the bot with `npm run start`
@ -46,8 +46,7 @@ This bot requires that there be a publicly accessible interactions endpoint URL.
|---|---|
|`/blep`|blep.|
|`/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|
|`/help`|Show a help message|
|`/pet`|You can pet sily-bot.|
|`/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 *`.|
|`/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 *`.|

4
app.js
View file

@ -13,7 +13,6 @@ import {
schedule_message,
catfact,
fomx,
factcheck,
} from "./command_impls.js";
import { MessageSchedule } from "./message-scheduler.js";
@ -51,9 +50,6 @@ function handle_application_command(state, data, channel_id) {
case "fomx":
return fomx(state);
case "factcheck":
return factcheck(state);
default:
console.error(`unknown command: ${name}`);
return state.res.status(400).json({ error: "unknown command" });

View file

@ -38,11 +38,10 @@ export function help(state) {
Here are the available commands and their descriptions:
- \`/blep\` blep.
- \`/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.
- \`/help\` Show this message.
- \`/pet\` You can pet sily-bot.
- \`/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 *\`.`,
- \`/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 *\`.`,
});
}
@ -75,15 +74,3 @@ export function fomx(state) {
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,6 +42,14 @@ const commands = [
name: "factcheck",
description: "check a fact",
type: 1,
options: [
{
type: 5,
name: "true",
description: "truth value of fact check",
required: false,
},
],
integration_types: [0],
contexts: [0],
},