import { Events, Interaction } from 'discord.js'; import { ExtendedClient } from '../structures/ExtendedClient.js'; import { Event } from '../types/EventTypes.js'; import { approveFact, deleteFact } from '../db/db.js'; export default { name: Events.InteractionCreate, execute: async (interaction: Interaction) => { if (interaction.isCommand()) { const client = interaction.client as ExtendedClient; const command = client.commands.get(interaction.commandName); if (!command) { console.error( `No command matching ${interaction.commandName} was found.`, ); return; } try { await command.execute(interaction); } catch (error: any) { console.error(`Error executing ${interaction.commandName}`); console.error(error); const isUnknownInteractionError = error.code === 10062 || (error.message && error.message.includes('Unknown interaction')); if (!isUnknownInteractionError) { try { if (interaction.replied || interaction.deferred) { await interaction .followUp({ content: 'There was an error while executing this command!', flags: ['Ephemeral'], }) .catch((e) => console.error('Failed to send error followup:', e), ); } else { await interaction .reply({ content: 'There was an error while executing this command!', flags: ['Ephemeral'], }) .catch((e) => console.error('Failed to send error reply:', e)); } } catch (replyError) { console.error('Failed to respond with error message:', replyError); } } else { console.warn( 'Interaction expired before response could be sent (code 10062)', ); } } } else if (interaction.isButton()) { const { customId } = interaction; if (customId.startsWith('approve_fact_')) { if (!interaction.memberPermissions?.has('ModerateMembers')) { await interaction.reply({ content: 'You do not have permission to approve facts.', ephemeral: true, }); return; } const factId = parseInt(customId.replace('approve_fact_', ''), 10); await approveFact(factId); await interaction.update({ content: `✅ Fact #${factId} has been approved by <@${interaction.user.id}>`, components: [], }); } else if (customId.startsWith('reject_fact_')) { if (!interaction.memberPermissions?.has('ModerateMembers')) { await interaction.reply({ content: 'You do not have permission to reject facts.', ephemeral: true, }); return; } const factId = parseInt(customId.replace('reject_fact_', ''), 10); await deleteFact(factId); await interaction.update({ content: `❌ Fact #${factId} has been rejected by <@${interaction.user.id}>`, components: [], }); } } else { console.warn('Unhandled interaction type:', interaction); return; } }, } as Event;