feat: new slash commands and bug fixes #23

Merged
naomi merged 5 commits from feat/commands-two into main 2026-03-12 23:47:46 -07:00
3 changed files with 79 additions and 0 deletions
Showing only changes of commit f61ea3b3cb - Show all commits
+13
View File
@@ -61,6 +61,19 @@
} }
] ]
}, },
{
"name": "remind",
"type": 1,
"description": "Sends a meeting reminder notification to the specified user.",
"options": [
{
"name": "user",
"description": "The user to send the meeting reminder to.",
"type": 6,
"required": true
}
]
},
{ {
"name": "Forward to Naomi", "name": "Forward to Naomi",
"type": 3 "type": 3
+61
View File
@@ -0,0 +1,61 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { MessageFlags, type ChatInputCommandInteraction } from "discord.js";
import { ids } from "../config/ids.js";
import { logger } from "../utils/logger.js";
import type { Amari } from "../interfaces/amari.js";
/**
* Sends a meeting reminder notification to the general channel for the given user.
* @param amari - The Amari instance.
* @param interaction - The Discord slash command interaction.
*/
export const remind = async(
amari: Amari,
interaction: ChatInputCommandInteraction,
): Promise<void> => {
if (interaction.user.id !== ids.users.naomi) {
await interaction.reply({
content: "This command is restricted to Naomi.",
flags: [ MessageFlags.Ephemeral ],
});
return;
}
const targetUser = interaction.options.getUser("user", true);
await interaction.deferReply({ flags: [ MessageFlags.Ephemeral ] });
try {
const channel
= amari.discord.channels.cache.get(ids.channels.general)
?? await amari.discord.channels.fetch(ids.channels.general);
if (channel?.isSendable() !== true) {
await interaction.editReply({
content: "Could not send the meeting reminder.",
});
return;
}
await channel.send({
content: `Heya <@${targetUser.id}>~!\n\nIt looks like you have a meeting scheduled with Naomi soon. Whenever you are ready, please wait in <#1396976351201726484>. Naomi should be available around the time your meeting starts. Once she is prepared, she will drag you into her <#1396976542856384652> where just the two of you will be.`,
});
await logger.metric("meeting_reminder_sent", 1, { user: targetUser.id });
await interaction.editReply({
content: `✅ Meeting reminder sent to **${targetUser.username}**!`,
});
} catch (error) {
await logger.error("remind command", error instanceof Error
? error
: new Error(String(error)));
await interaction.editReply({
content: `❌ Failed to send meeting reminder: ${String(error)}`,
});
}
};
+5
View File
@@ -12,6 +12,7 @@ import {
import { createTicket } from "../commands/createTicket.js"; import { createTicket } from "../commands/createTicket.js";
import { forwardToOwner } from "../commands/forwardToOwner.js"; import { forwardToOwner } from "../commands/forwardToOwner.js";
import { onboardMentee } from "../commands/onboardMentee.js"; import { onboardMentee } from "../commands/onboardMentee.js";
import { remind } from "../commands/remind.js";
import { ids } from "../config/ids.js"; import { ids } from "../config/ids.js";
import type { Amari } from "../interfaces/amari.js"; import type { Amari } from "../interfaces/amari.js";
@@ -31,6 +32,10 @@ const handleChatInputCommand = (
} }
if (commandName === "create-ticket") { if (commandName === "create-ticket") {
void createTicket(amari, interaction); void createTicket(amari, interaction);
return;
}
if (commandName === "remind") {
void remind(amari, interaction);
} }
}; };