2024-09-19 23:58:06 +05:00
|
|
|
const { InteractionType } = require("discord.js");
|
2022-08-04 21:02:45 +05:00
|
|
|
const BaseEvent = require("../base/BaseEvent");
|
2022-07-23 17:14:42 +05:00
|
|
|
|
|
|
|
class CommandHandler extends BaseEvent {
|
|
|
|
constructor() {
|
|
|
|
super({
|
|
|
|
name: "interactionCreate",
|
2022-12-15 21:02:38 +05:00
|
|
|
once: false,
|
2022-07-23 17:14:42 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../base/Client")} client
|
2023-11-06 18:23:02 +05:00
|
|
|
* @param {import("discord.js").CommandInteraction} interaction
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
|
|
|
async execute(client, interaction) {
|
|
|
|
const command = client.commands.get(interaction.commandName);
|
2024-02-09 23:26:57 +05:00
|
|
|
|
2022-07-23 17:14:42 +05:00
|
|
|
const data = [];
|
|
|
|
|
2024-05-24 23:11:03 +05:00
|
|
|
data.user = await client.getUserData(interaction.user.id);
|
2022-07-23 17:14:42 +05:00
|
|
|
|
|
|
|
if (interaction.inGuild()) {
|
2024-05-24 23:11:03 +05:00
|
|
|
data.guild = await client.getGuildData(interaction.guildId);
|
|
|
|
data.member = await client.getMemberData(interaction.member.id, interaction.guildId);
|
2022-07-23 17:14:42 +05:00
|
|
|
}
|
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
interaction.data = data;
|
|
|
|
|
2023-10-31 22:24:40 +05:00
|
|
|
if (interaction.isButton() && interaction.customId === "quote_delete" && interaction.message.deletable) return interaction.message.delete();
|
2024-02-09 23:26:57 +05:00
|
|
|
if (interaction.isAutocomplete()) return await command.autocompleteRun(client, interaction);
|
|
|
|
|
2023-03-24 00:09:26 +05:00
|
|
|
if (interaction.type !== InteractionType.ApplicationCommand && !interaction.isCommand()) return;
|
|
|
|
|
2024-08-14 18:52:46 +05:00
|
|
|
if (command?.dirname.includes("IAT") && interaction.guildId !== "1039187019957555252") return interaction.reply({ content: "IAT only", ephemeral: true });
|
2023-11-06 18:18:16 +05:00
|
|
|
if (command.ownerOnly && interaction.user.id !== client.config.owner.id) return interaction.error("misc:OWNER_ONLY", null, { ephemeral: true });
|
2023-06-17 16:46:31 +05:00
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
if (!interaction.data.user.achievements.firstCommand.achieved) {
|
2023-05-25 22:49:27 +05:00
|
|
|
const args = {
|
2022-10-14 20:40:37 +05:00
|
|
|
content: interaction.user.toString(),
|
2023-07-05 00:58:06 +05:00
|
|
|
files: [
|
|
|
|
{
|
|
|
|
name: "achievement_unlocked2.png",
|
|
|
|
attachment: "./assets/img/achievements/achievement_unlocked2.png",
|
|
|
|
},
|
|
|
|
],
|
2023-05-25 22:49:27 +05:00
|
|
|
};
|
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
interaction.data.user.achievements.firstCommand.progress.now = 1;
|
|
|
|
interaction.data.user.achievements.firstCommand.achieved = true;
|
2023-09-25 21:42:43 +05:00
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
await interaction.data.user.save();
|
2023-05-25 22:49:27 +05:00
|
|
|
|
2024-02-07 20:46:56 +05:00
|
|
|
try {
|
|
|
|
interaction.user.send(args);
|
|
|
|
} catch (e) { /**/ }
|
2022-07-23 17:14:42 +05:00
|
|
|
}
|
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
client.logger.cmd(
|
2024-09-14 19:52:56 +05:00
|
|
|
`[${interaction.guild ? interaction.guild.name : "DM/Private Channel"}]: [${interaction.user.getUsername()}] => /${command.command.name}${
|
2024-02-09 23:26:57 +05:00
|
|
|
interaction.options.data.length > 0
|
2024-07-13 15:05:59 +05:00
|
|
|
? `, args: [${interaction.options.data
|
2024-02-09 23:26:57 +05:00
|
|
|
.map(arg => {
|
|
|
|
return `${arg.name}: ${arg.value}`;
|
2024-07-13 15:05:59 +05:00
|
|
|
})
|
|
|
|
.join(", ")}]`
|
2024-07-09 21:50:35 +05:00
|
|
|
: ""
|
2024-02-09 23:26:57 +05:00
|
|
|
}`,
|
|
|
|
);
|
2022-11-16 14:37:16 +05:00
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
return command.execute(client, interaction);
|
2022-07-23 17:14:42 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 00:58:06 +05:00
|
|
|
module.exports = CommandHandler;
|