Add Buttons; Remove Unschedule Command (#5)
This commit is contained in:
parent
36066ad3d8
commit
c25197dbe7
4 changed files with 48 additions and 52 deletions
27
app.js
27
app.js
|
@ -6,13 +6,7 @@ import {
|
||||||
verifyKeyMiddleware,
|
verifyKeyMiddleware,
|
||||||
} from "discord-interactions";
|
} from "discord-interactions";
|
||||||
import { Client, GatewayIntentBits, ActivityType } from "discord.js";
|
import { Client, GatewayIntentBits, ActivityType } from "discord.js";
|
||||||
import {
|
import { blep, help, pet, schedule_message } from "./command_impls.js";
|
||||||
blep,
|
|
||||||
help,
|
|
||||||
pet,
|
|
||||||
schedule_message,
|
|
||||||
unschedule_message,
|
|
||||||
} from "./command_impls.js";
|
|
||||||
import { MessageSchedule } from "./message-scheduler.js";
|
import { MessageSchedule } from "./message-scheduler.js";
|
||||||
|
|
||||||
class State {
|
class State {
|
||||||
|
@ -34,9 +28,6 @@ function handle_application_command(state, data, channel_id) {
|
||||||
options[1].value,
|
options[1].value,
|
||||||
);
|
);
|
||||||
|
|
||||||
case "unschedule_message":
|
|
||||||
return unschedule_message(state, options[0].value);
|
|
||||||
|
|
||||||
case "pet":
|
case "pet":
|
||||||
return pet(state);
|
return pet(state);
|
||||||
|
|
||||||
|
@ -52,6 +43,20 @@ function handle_application_command(state, data, channel_id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handle_button_press(state, data) {
|
||||||
|
if (data.custom_id.startsWith("stop-")) {
|
||||||
|
state.schedule.unschedule(data.custom_id.slice(5));
|
||||||
|
|
||||||
|
return state.res.send({
|
||||||
|
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
|
||||||
|
data: {
|
||||||
|
content: "no longer sending this message",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return res.status(400).json({ error: "unknown command" });
|
||||||
|
}
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
const state = new State();
|
const state = new State();
|
||||||
|
|
||||||
|
@ -86,6 +91,8 @@ function main() {
|
||||||
return res.send({ type: InteractionResponseType.PONG });
|
return res.send({ type: InteractionResponseType.PONG });
|
||||||
case InteractionType.APPLICATION_COMMAND:
|
case InteractionType.APPLICATION_COMMAND:
|
||||||
return handle_application_command(state, data, channel_id);
|
return handle_application_command(state, data, channel_id);
|
||||||
|
case InteractionType.MESSAGE_COMPONENT:
|
||||||
|
return handle_button_press(state, data);
|
||||||
default:
|
default:
|
||||||
console.error("unknown interaction type", type);
|
console.error("unknown interaction type", type);
|
||||||
return res
|
return res
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
import { InteractionResponseType } from "discord-interactions";
|
import { InteractionResponseType } from "discord-interactions";
|
||||||
import { Message } from "./message-scheduler.js";
|
import { Message } from "./message-scheduler.js";
|
||||||
|
import { ActionRowBuilder, ButtonBuilder, ButtonStyle } from "discord.js";
|
||||||
|
|
||||||
function send(state, content) {
|
function send(state, data) {
|
||||||
return state.res.send({
|
return state.res.send({
|
||||||
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
|
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
|
||||||
data: {
|
data: data,
|
||||||
content: content,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,40 +14,34 @@ export function schedule_message(state, msg, channel, crontab) {
|
||||||
|
|
||||||
const schedule_valid = state.schedule.schedule(message);
|
const schedule_valid = state.schedule.schedule(message);
|
||||||
|
|
||||||
return send(
|
const cancel = new ButtonBuilder()
|
||||||
state,
|
.setCustomId(`stop-${message.id}`)
|
||||||
schedule_valid
|
.setLabel("Cancel")
|
||||||
? `registered message: "${msg}" with cron: "${crontab}" and id: "${message.id}"`
|
.setStyle(ButtonStyle.Secondary);
|
||||||
|
|
||||||
|
return send(state, {
|
||||||
|
content: schedule_valid
|
||||||
|
? `registered message: "${msg}" with cron: "${crontab}"`
|
||||||
: "invalid cron",
|
: "invalid cron",
|
||||||
);
|
components: [new ActionRowBuilder().addComponents(cancel)],
|
||||||
}
|
});
|
||||||
|
|
||||||
export function unschedule_message(state, id) {
|
|
||||||
const unschedule_valid = state.schedule.unschedule(id);
|
|
||||||
|
|
||||||
return send(
|
|
||||||
state,
|
|
||||||
unschedule_valid ? `stopped job ${id}` : `no such job ${id}`,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function pet(state) {
|
export function pet(state) {
|
||||||
return send(state, "[purring noises]");
|
return send(state, { content: "[purring noises]" });
|
||||||
}
|
}
|
||||||
|
|
||||||
export function help(state) {
|
export function help(state) {
|
||||||
return send(
|
return send(state, {
|
||||||
state,
|
content: `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.
|
- \`/blep\` blep.
|
||||||
- \`/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 *\`. 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 *\`.`,
|
||||||
- \`/unschedule-message <id>\` Stop sending a message with the given id.`,
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function blep(state) {
|
export function blep(state) {
|
||||||
return send(state, `≽^•𐃷•^≼`);
|
return send(state, "≽^•𐃷•^≼");
|
||||||
}
|
}
|
||||||
|
|
15
commands.js
15
commands.js
|
@ -45,21 +45,6 @@ const commands = [
|
||||||
integration_types: [0],
|
integration_types: [0],
|
||||||
contexts: [0],
|
contexts: [0],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "unschedule_message",
|
|
||||||
description: "Stop sending a scheduled message",
|
|
||||||
type: 1,
|
|
||||||
options: [
|
|
||||||
{
|
|
||||||
type: 3,
|
|
||||||
name: "id",
|
|
||||||
description: "the id of the message to stop",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
integration_types: [0],
|
|
||||||
contexts: [0],
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);
|
const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);
|
||||||
|
|
|
@ -2,6 +2,7 @@ import "dotenv/config";
|
||||||
import cron from "node-cron";
|
import cron from "node-cron";
|
||||||
import { v4 as uuidv4 } from "uuid";
|
import { v4 as uuidv4 } from "uuid";
|
||||||
import fs from "node:fs";
|
import fs from "node:fs";
|
||||||
|
import { ActionRowBuilder, ButtonBuilder, ButtonStyle } from "discord.js";
|
||||||
|
|
||||||
export class Message {
|
export class Message {
|
||||||
constructor(message, channel_id, crontab, repeat = true, id = null) {
|
constructor(message, channel_id, crontab, repeat = true, id = null) {
|
||||||
|
@ -49,12 +50,22 @@ export class MessageSchedule {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.jobs[message.id] = message;
|
this.jobs[message.id] = message;
|
||||||
|
|
||||||
|
const stop = new ButtonBuilder()
|
||||||
|
.setCustomId(`stop-${message.id}`)
|
||||||
|
.setLabel("Stop")
|
||||||
|
.setStyle(ButtonStyle.Danger);
|
||||||
|
|
||||||
this.crons[message.id] = cron.schedule(
|
this.crons[message.id] = cron.schedule(
|
||||||
message.crontab,
|
message.crontab,
|
||||||
() => {
|
() => {
|
||||||
this.state.client.channels.cache
|
this.state.client.channels.cache
|
||||||
.get(message.channel_id)
|
.get(message.channel_id)
|
||||||
.send(message.message);
|
.send({
|
||||||
|
content: message.message,
|
||||||
|
components: [
|
||||||
|
new ActionRowBuilder().addComponents(stop),
|
||||||
|
],
|
||||||
|
});
|
||||||
if (!message.repeat) {
|
if (!message.repeat) {
|
||||||
this.unschedule(message.id);
|
this.unschedule(message.id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue