Enhance bot command handling with new leveling, economy, and utility features
- Integrated leveling and economy commands, including XP management and shop interactions. - Added context menu support for utility commands, improving user interaction options. - Updated command registration to include new commands and context menus, enhancing overall functionality. - Improved logging to track the registration of commands and context menus. - Refactored interaction handling to accommodate new command types and ensure smooth execution.
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
import { REST, Routes, type ChatInputCommandInteraction } from 'discord.js';
|
||||
import {
|
||||
REST,
|
||||
Routes,
|
||||
type ChatInputCommandInteraction,
|
||||
type MessageContextMenuCommandInteraction
|
||||
} from 'discord.js';
|
||||
import { t } from '@nexumi/shared';
|
||||
import { env } from './env.js';
|
||||
import { logger } from './logger.js';
|
||||
@@ -7,22 +12,37 @@ import { moderationCommands } from './modules/moderation/commands.js';
|
||||
import { automodCommands } from './modules/automod/commands.js';
|
||||
import { welcomeCommands } from './modules/welcome/commands.js';
|
||||
import { verificationCommands } from './modules/verification/commands.js';
|
||||
import { levelingCommands } from './modules/leveling/commands.js';
|
||||
import { economyCommands } from './modules/economy/commands.js';
|
||||
import { utilityCommands, utilityContextMenus } from './modules/utility/index.js';
|
||||
import { funCommands } from './modules/fun/index.js';
|
||||
import type { BotContext, SlashCommand } from './types.js';
|
||||
|
||||
const commands: SlashCommand[] = [
|
||||
...moderationCommands,
|
||||
...automodCommands,
|
||||
...welcomeCommands,
|
||||
...verificationCommands
|
||||
...verificationCommands,
|
||||
...levelingCommands,
|
||||
...economyCommands,
|
||||
...utilityCommands,
|
||||
...funCommands
|
||||
];
|
||||
const map = new Map(commands.map((c) => [c.data.name, c]));
|
||||
const contextMenuMap = new Map(utilityContextMenus.map((c) => [c.data.name, c]));
|
||||
|
||||
export async function registerCommands() {
|
||||
const rest = new REST({ version: '10' }).setToken(env.BOT_TOKEN);
|
||||
await rest.put(Routes.applicationCommands(env.BOT_CLIENT_ID), {
|
||||
body: commands.map((c) => c.data.toJSON())
|
||||
body: [
|
||||
...commands.map((c) => c.data.toJSON()),
|
||||
...utilityContextMenus.map((c) => c.data.toJSON())
|
||||
]
|
||||
});
|
||||
logger.info({ count: commands.length }, 'Registered application commands');
|
||||
logger.info(
|
||||
{ count: commands.length, contextMenus: utilityContextMenus.length },
|
||||
'Registered application commands'
|
||||
);
|
||||
}
|
||||
|
||||
export async function routeCommand(interaction: ChatInputCommandInteraction, context: BotContext) {
|
||||
@@ -34,3 +54,16 @@ export async function routeCommand(interaction: ChatInputCommandInteraction, con
|
||||
}
|
||||
await command.execute(interaction, context);
|
||||
}
|
||||
|
||||
export async function routeContextMenu(
|
||||
interaction: MessageContextMenuCommandInteraction,
|
||||
context: BotContext
|
||||
) {
|
||||
const command = contextMenuMap.get(interaction.commandName);
|
||||
const locale = await getGuildLocale(context.prisma, interaction.guildId);
|
||||
if (!command) {
|
||||
await interaction.reply({ content: t(locale, 'generic.unknownCommand'), ephemeral: true });
|
||||
return;
|
||||
}
|
||||
await command.execute(interaction, context);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import { env } from './env.js';
|
||||
import { logger } from './logger.js';
|
||||
import { prisma } from './db.js';
|
||||
import { redis } from './redis.js';
|
||||
import { registerCommands, routeCommand } from './commands.js';
|
||||
import { registerCommands, routeCommand, routeContextMenu } from './commands.js';
|
||||
import { ensureRecurringJobs, startWorkers } from './jobs.js';
|
||||
import type { BotContext } from './types.js';
|
||||
import { startHealthServer } from './health.js';
|
||||
@@ -26,6 +26,19 @@ import { registerWelcomeEvents } from './modules/welcome/events.js';
|
||||
import { registerVerificationEvents } from './modules/verification/events.js';
|
||||
import { handleVerificationButton } from './modules/verification/handlers.js';
|
||||
import { isVerificationButton } from './modules/verification/service.js';
|
||||
import { registerLevelingEvents } from './modules/leveling/events.js';
|
||||
import {
|
||||
handleBlackjackButton,
|
||||
isBlackjackButton
|
||||
} from './modules/economy/blackjack-buttons.js';
|
||||
import {
|
||||
handleEmbedModal,
|
||||
handlePollButton,
|
||||
isEmbedModal,
|
||||
isPollButton,
|
||||
registerUtilityEvents
|
||||
} from './modules/utility/index.js';
|
||||
import { handleFunButton, isFunButton } from './modules/fun/index.js';
|
||||
|
||||
const isShard = process.argv.includes('--shard');
|
||||
|
||||
@@ -59,6 +72,8 @@ if (!isShard) {
|
||||
registerLoggingEvents(context);
|
||||
registerWelcomeEvents(context);
|
||||
registerVerificationEvents(context);
|
||||
registerLevelingEvents(context);
|
||||
registerUtilityEvents(context);
|
||||
|
||||
client.on(Events.ClientReady, async () => {
|
||||
logger.info({ tag: client.user?.tag }, 'Bot ready');
|
||||
@@ -80,6 +95,11 @@ if (!isShard) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isMessageContextMenuCommand()) {
|
||||
await routeContextMenu(interaction, context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isButton() && isModerationConfirmation(interaction.customId)) {
|
||||
await handleModerationConfirmation(interaction, context);
|
||||
return;
|
||||
@@ -89,6 +109,26 @@ if (!isShard) {
|
||||
await handleVerificationButton(interaction, context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isButton() && isBlackjackButton(interaction.customId)) {
|
||||
await handleBlackjackButton(interaction, context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isButton() && isPollButton(interaction.customId)) {
|
||||
await handlePollButton(interaction, context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isButton() && isFunButton(interaction.customId)) {
|
||||
await handleFunButton(interaction, context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (interaction.isModalSubmit() && isEmbedModal(interaction.customId)) {
|
||||
await handleEmbedModal(interaction, context);
|
||||
return;
|
||||
}
|
||||
} catch (error) {
|
||||
logger.error({ error }, 'Interaction handling failed');
|
||||
const locale = await getGuildLocale(context.prisma, interaction.guildId);
|
||||
|
||||
@@ -17,7 +17,6 @@ import {
|
||||
backupQueue,
|
||||
backupQueueName,
|
||||
moderationQueueName,
|
||||
reminderQueue,
|
||||
reminderQueueName,
|
||||
verificationQueueName
|
||||
} from './queues.js';
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import {
|
||||
SlashCommandBuilder,
|
||||
type SlashCommandAttachmentOption,
|
||||
type SlashCommandBooleanOption,
|
||||
type SlashCommandChannelOption,
|
||||
type SlashCommandRoleOption,
|
||||
type SlashCommandStringOption,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ContextMenuCommandBuilder, ApplicationCommandType } from 'discord.js';
|
||||
import { t } from '@nexumi/shared';
|
||||
import type { BotContext, ContextMenuCommand } from '../../types.js';
|
||||
import type { ContextMenuCommand } from '../../types.js';
|
||||
import { getGuildLocale } from '../../i18n.js';
|
||||
|
||||
async function translateText(text: string, targetLang: string): Promise<string | null> {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { EmbedBuilder, type Message, type PartialMessage } from 'discord.js';
|
||||
import { t, tf } from '@nexumi/shared';
|
||||
import type { BotContext } from '../../types.js';
|
||||
import { getGuildLocale } from '../../i18n.js';
|
||||
|
||||
const SNIPE_TTL_SECONDS = 3600;
|
||||
const DELETE_KEY_PREFIX = 'util:snipe:delete:';
|
||||
|
||||
Reference in New Issue
Block a user