nyx/events/interactionCreate.js

221 lines
8.4 KiB
JavaScript
Raw Normal View History

const client = require("../");
const cooldown = require("../models/cooldown");
2021-09-06 12:38:25 +02:00
const utils = require("../util/functions/function");
2022-10-26 12:38:28 +02:00
const { EmbedBuilder } = require("discord.js");
2021-09-06 12:38:25 +02:00
client.on("interactionCreate", async interaction => {
if (interaction.isCommand()) {
await interaction.deferReply({ ephemeral: false }).catch(() => {});
const cmd = client.slashCommands.get(interaction.commandName);
if (!cmd) return;
const args = [];
for (const option of interaction.options.data) {
if (option.type === "SUB_COMMAND_GROUP") {
if (option.name) args.push(option.name);
option.options?.forEach(x => {
2022-02-03 11:57:59 +01:00
if (x.type === 1) {
if (x.name) args.push(x.name);
x.options?.forEach(y => {
if (y.value) args.push(y.value);
});
} else if (x.value) {
args.push(x.value);
}
if (x.value) args.push(x.value);
});
}
2022-02-04 13:09:24 +01:00
if (option.type === "SUB_COMMAND") {
2021-09-06 12:38:25 +02:00
if (option.name) args.push(option.name);
option.options?.forEach(x => {
if (x.value) args.push(x.value);
});
} else if (option.value) {
args.push(option.value);
}
2021-09-06 12:38:25 +02:00
}
interaction.member = interaction.guild.members.cache.get(
interaction.user.id
);
2021-09-21 01:51:56 +02:00
const data = {};
const guildDB = await client.data.getGuild(interaction.guild.id);
2021-09-21 01:51:56 +02:00
if (!guildDB) return;
const userDB = await client.data.getUser(interaction.user.id);
2021-09-21 01:51:56 +02:00
if (!userDB) return;
// const userEconDB = await client.data.getUserEcon(interaction.user.id);
2021-09-21 01:51:56 +02:00
data.Guild = guildDB;
data.User = userDB;
// data.UserEcon = userEconDB;
2021-09-21 01:51:56 +02:00
if (!guildDB) await client.data.CreateGuild(interaction.guild.id);
//if (!userEconDB) await client.createProfile(interaction.user.id);
if (data.User) {
if (data.User.Blacklist) {
return interaction.followUp({
content:
"You have been blacklisted from the bot, please contact the developers to appeal",
});
2021-09-21 01:51:56 +02:00
}
}
if (cmd.Owner) {
if (!client.owners.includes(interaction.user.id)) return;
}
if (cmd.Premium) {
if (!data.User.Premium) {
return interaction.followUp({
embeds: [
2022-10-26 12:38:28 +02:00
new EmbedBuilder()
.setURL(client.web)
.setAuthor({
name: interaction.user.tag,
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
})
.setColor(client.color)
.setDescription(
`You aren't a premium user. You can either boost support server or subscribe to developer's team [Ko-fi](https://ko-fi.com/cathteam) or gift a nitro to one of the developer team to be premium user`
)
.setTimestamp()
.setFooter({
text: `Made by ${client.author}`,
iconURL: client.user.displayAvatarURL(),
}),
],
});
2021-09-21 01:51:56 +02:00
}
}
if (cmd.Level) {
if (!data.Guild.Level) return;
}
2022-03-24 20:36:31 +01:00
2022-10-26 12:38:28 +02:00
// if (!interaction.guild.me.permissions.has(cmd.BotPerms || [])) {
// return interaction.followUp({
// content: `You can't use this command. I need to have ${cmd.BotPerms} permission to use this command.`,
// });
// }
// if (!interaction.member.permissions.has(cmd.UserPerms || [])) {
// return interaction.followUp({
// content: `You can't use this command. I need to have ${cmd.UserPerms} permission to use this command.`,
// });
// }
if (data.Guild) {
if (data.Guild.Category) {
if (data.Guild.Category.includes(cmd.directory)) {
2021-09-21 01:51:56 +02:00
return interaction.followUp({
content: "This command has been disabled in this server",
2021-09-21 01:51:56 +02:00
});
}
}
if (data.Guild.Commands) {
if (data.Guild.Commands.includes(cmd.name)) {
return interaction.followUp({
content: "This command has been disabled in this server",
});
}
2021-09-21 01:51:56 +02:00
}
}
const random = utils.rndint(3, 6);
2022-03-24 20:36:31 +01:00
if (cmd.name == "nsfw" && !data.Guild?.NSFW) {
interaction.followUp({
content: "NSFW commands have been disabled in this server",
});
return;
}
2022-02-02 23:46:57 +01:00
if (cmd.timeout) {
const current_time = Date.now();
const cooldown_amount = cmd.timeout;
cooldown.findOne(
{ User: interaction.user.id, CMD: cmd.name },
async (er, d) => {
if (d) {
const expiration_time = d.Time + cooldown_amount;
if (current_time < expiration_time) {
if (data.Guild.Tips) utils.tips(interaction, client);
utils.cooldown(d.Time, cooldown_amount, interaction);
} else {
if (data.Guild.Tips) utils.tips(interaction, client);
2022-02-02 23:46:57 +01:00
await cooldown.findOneAndUpdate(
{ User: interaction.user.id, CMD: cmd.name },
{ Time: current_time }
);
cmd
.run(client, interaction, args, utils, data)
2022-10-26 12:38:28 +02:00
.catch(e => sendE(e, interaction));
// client.addcmdsused(interaction.user.id);
client.channels.cache.get(client.config.CMDLog).send({
content: `\`${interaction.user.tag}(${interaction.user.id})\`\n has used \n**${cmd.name}**\n command in \n\`${interaction.guild.name}(${interaction.guild.id})\``,
});
// await client.addXP(interaction.user.id, random, interaction);
}
2022-02-02 23:46:57 +01:00
} else {
if (data.Guild.Tips) utils.tips(interaction, client);
cmd
.run(client, interaction, args, utils, data)
2022-10-26 12:38:28 +02:00
.catch(e => sendE(e, interaction));
2022-02-02 23:46:57 +01:00
client.channels.cache.get(client.config.CMDLog).send({
content: `\`${interaction.user.tag}(${interaction.user.id})\`\n has used \n**${cmd.name}**\n command in \n\`${interaction.guild.name}(${interaction.guild.id})\``,
});
2022-10-26 12:38:28 +02:00
// client.addcmdsused(interaction.user.id);
2022-02-02 23:46:57 +01:00
// await client.addXP(interaction.user.id, random, interaction);
new cooldown({
User: interaction.user.id,
CMD: cmd.name,
Time: current_time,
Cooldown: cmd.timeout,
}).save();
}
2022-02-02 23:46:57 +01:00
}
);
} else {
if (data.Guild.Tips) utils.tips(interaction, client);
2022-10-26 12:38:28 +02:00
cmd
.run(client, interaction, args, utils, data)
.catch(e => sendE(e, interaction));
2022-02-02 23:46:57 +01:00
client.channels.cache.get(client.config.CMDLog).send({
content: `\`${interaction.user.tag}(${interaction.user.id})\`\n has used \n**${cmd.name}**\n command in \n\`${interaction.guild.name}(${interaction.guild.id})\``,
});
2022-10-26 12:38:28 +02:00
// client.addcmdsused(interaction.user.id);
2022-02-02 23:46:57 +01:00
// await client.addXP(interaction.user.id, random, interaction);
2021-09-06 12:38:25 +02:00
}
}
2022-10-26 12:38:28 +02:00
if (interaction.isContextMenuCommand()) {
2021-09-06 12:38:25 +02:00
await interaction.deferReply({ ephemeral: false });
const command = client.slashCommands.get(interaction.commandName);
if (command) command.run(client, interaction);
}
});
client.on("interactionCreate", async interaction => {
if (interaction.isCommand()) {
await interaction.deferReply({ ephemeral: false }).catch(() => {});
const ownercmd = client.hide.get(interaction.commandName);
if (!ownercmd) return;
const args = [];
for (const option of interaction.options.data) {
2022-02-03 11:57:59 +01:00
if (option.type === 1) {
2021-09-06 12:38:25 +02:00
if (option.name) args.push(option.name);
option.options?.forEach(x => {
if (x.value) args.push(x.value);
});
} else if (option.value) {
args.push(option.value);
}
2021-09-06 12:38:25 +02:00
}
interaction.member = interaction.guild.members.cache.get(
interaction.user.id
);
2022-10-26 12:38:28 +02:00
ownercmd
.run(client, interaction, args, utils)
.catch(e => sendE(e, interaction));
2022-02-02 23:46:57 +01:00
client.channels.cache.get(client.config.CMDLog).send({
content: `\`${interaction.user.tag}(${interaction.user.id})\`\n has used \n**${ownercmd.name}**\n command in \n\`${interaction.guild.name}(${interaction.guild.id})\``,
});
2022-10-26 12:38:28 +02:00
//client.addcmdsused(interaction.user.id);
2021-09-06 12:38:25 +02:00
}
});
2022-10-26 12:38:28 +02:00
function sendE(e, i) {
const embed = new EmbedBuilder()
2022-02-02 23:46:57 +01:00
.setTitle("Command Error")
.setDescription(`\`\`\`yaml\n${e.stack}\`\`\``)
.setTimestamp()
.setColor(client.color)
.setFooter({ text: client.user.username });
2022-10-26 12:38:28 +02:00
i.channel.send({ embeds: [embed] });
2022-02-02 23:46:57 +01:00
client.channels.cache.get(client.config.ErrorLog).send({ embeds: [embed] });
}