1 |
import BaseEvent from '../../utils/structures/BaseEvent'; |
2 |
import { GuildMember, Interaction, Message, MessageEmbed } from 'discord.js'; |
3 |
import DiscordClient from '../../client/Client'; |
4 |
import CommandOptions from '../../types/CommandOptions'; |
5 |
import InteractionOptions from '../../types/InteractionOptions'; |
6 |
|
7 |
export default class InteractionCreateEvent extends BaseEvent { |
8 |
constructor() { |
9 |
super('interactionCreate'); |
10 |
} |
11 |
|
12 |
async run(client: DiscordClient, interaction: Interaction) { |
13 |
if (interaction.isCommand()) { |
14 |
await client.setMessage(interaction); |
15 |
|
16 |
const { commandName } = interaction; |
17 |
|
18 |
const command = await client.commands.get(commandName); |
19 |
|
20 |
if (command && command.supportsInteractions) { |
21 |
const allowed = await client.auth.verify(interaction.member! as GuildMember, command); |
22 |
|
23 |
if (!allowed) { |
24 |
await interaction.reply({ |
25 |
embeds: [ |
26 |
new MessageEmbed() |
27 |
.setColor('#f14a60') |
28 |
.setDescription(":x: You don't have permission to run this command.") |
29 |
], |
30 |
ephemeral: true |
31 |
}); |
32 |
|
33 |
return; |
34 |
} |
35 |
|
36 |
const options = { |
37 |
cmdName: commandName, |
38 |
options: interaction.options, |
39 |
isInteraction: true |
40 |
} as InteractionOptions; |
41 |
|
42 |
if (!await client.cooldown.start(interaction, options)) |
43 |
return; |
44 |
|
45 |
await command.run(client, interaction, options); |
46 |
} |
47 |
} |
48 |
} |
49 |
} |