JaBa/events/CommandHandler.js

76 lines
2.3 KiB
JavaScript
Raw Normal View History

const { InteractionType } = require("discord.js");
2022-08-04 21:02:45 +05:00
const BaseEvent = require("../base/BaseEvent");
class CommandHandler extends BaseEvent {
constructor() {
super({
name: "interactionCreate",
once: false,
});
}
/**
*
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
*/
async execute(client, interaction) {
const command = client.commands.get(interaction.commandName);
2024-02-09 23:26:57 +05:00
const data = [];
data.user = await client.getUserData(interaction.user.id);
if (interaction.inGuild()) {
data.guild = await client.getGuildData(interaction.guildId);
data.member = await client.getMemberData(interaction.member.id, interaction.guildId);
}
2024-02-09 23:26:57 +05:00
interaction.data = data;
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);
if (interaction.type !== InteractionType.ApplicationCommand && !interaction.isCommand()) return;
2024-02-09 23:26:57 +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 });
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 = {
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;
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) { /**/ }
}
2024-02-09 23:26:57 +05:00
client.logger.cmd(
`User ${interaction.user.getUsername()} used ${command.command.name} in ${interaction.guild ? interaction.guild.name : "DM"} with arguments: ${
interaction.options.data.length > 0
? interaction.options.data
.map(arg => {
return `${arg.name}: ${arg.value}`;
}).join(", ")
: "no args"
}`,
);
2024-02-09 23:26:57 +05:00
return command.execute(client, interaction);
}
}
2023-07-05 00:58:06 +05:00
module.exports = CommandHandler;