mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 20:54:58 +05:00
134 lines
3.9 KiB
JavaScript
134 lines
3.9 KiB
JavaScript
const { ContextMenuCommandBuilder, ModalBuilder, ActionRowBuilder, TextInputBuilder, ApplicationCommandType, PermissionsBitField, TextInputStyle, InteractionContextType, ApplicationIntegrationType } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class WarnContext extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
*/
|
|
constructor() {
|
|
super({
|
|
command: new ContextMenuCommandBuilder()
|
|
.setName("Give Warn")
|
|
.setType(ApplicationCommandType.User)
|
|
.setIntegrationTypes([ApplicationIntegrationType.GuildInstall])
|
|
.setContexts([InteractionContextType.Guild])
|
|
.setDefaultMemberPermissions(PermissionsBitField.Flags.ManageMessages),
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").UserContextMenuCommandInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
const member = interaction.targetMember,
|
|
memberPosition = member.roles.highest.position,
|
|
moderationPosition = interaction.member.roles.highest.position;
|
|
|
|
if (member.user.bot) return interaction.error("misc:BOT_USER", null, { ephemeral: true });
|
|
if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF", null, { ephemeral: true });
|
|
if (interaction.guild.ownerId !== interaction.member.id && !(moderationPosition > memberPosition)) return interaction.error("moderation/warn:SUPERIOR", null, { ephemeral: true });
|
|
|
|
const memberData = await client.getMemberData(member.id, interaction.guildId);
|
|
|
|
const modal = new ModalBuilder()
|
|
.setCustomId("warn_modal")
|
|
.setTitle(interaction.translate("moderation/warn:MODAL_TITLE", {
|
|
nickname: member.user.getUsername(),
|
|
}).normalize("NFKD"));
|
|
|
|
const reasonInput = new TextInputBuilder()
|
|
.setCustomId("warn_reason")
|
|
.setLabel(interaction.translate("moderation/warn:MODAL_REASON"))
|
|
.setMinLength(5)
|
|
.setMaxLength(200)
|
|
.setRequired(true)
|
|
.setStyle(TextInputStyle.Short);
|
|
|
|
modal.addComponents(new ActionRowBuilder().addComponents(reasonInput));
|
|
|
|
await interaction.showModal(modal);
|
|
|
|
const submitted = await interaction
|
|
.awaitModalSubmit({
|
|
time: 2 * 60 * 1000,
|
|
filter: i => i.user.id === interaction.member.id && i.customId === "warn_modal",
|
|
})
|
|
.catch(() => {
|
|
interaction.followUp({
|
|
content: interaction.translate("misc:TIMED_OUT"),
|
|
ephemeral: true,
|
|
});
|
|
});
|
|
|
|
if (submitted) {
|
|
const reason = submitted.fields.getTextInputValue("warn_reason");
|
|
const caseInfo = {
|
|
moderator: interaction.member.id,
|
|
date: Date.now(),
|
|
type: "warn",
|
|
reason,
|
|
};
|
|
|
|
const embed = client.embed({
|
|
author: interaction.translate("moderation/warn:WARN"),
|
|
fields: [
|
|
{
|
|
name: interaction.translate("common:USER"),
|
|
value: member.user.toString(),
|
|
},
|
|
{
|
|
name: interaction.translate("common:MODERATOR"),
|
|
value: interaction.user.toString(),
|
|
},
|
|
{
|
|
name: interaction.translate("common:REASON"),
|
|
value: reason,
|
|
inline: true,
|
|
},
|
|
],
|
|
});
|
|
|
|
try {
|
|
await member.send({
|
|
content: interaction.translate("moderation/warn:WARNED_DM", {
|
|
user: member.toString(),
|
|
server: interaction.guild.name,
|
|
moderator: interaction.user.toString(),
|
|
reason,
|
|
}),
|
|
});
|
|
} catch (e) {
|
|
interaction.followUp({ content: interaction.translate("misc:CANT_DM"), ephemeral: true });
|
|
}
|
|
|
|
memberData.sanctions.push(caseInfo);
|
|
|
|
await memberData.save();
|
|
|
|
const guildData = interaction.data.guild;
|
|
|
|
if (guildData.plugins.modlogs) {
|
|
const channel = interaction.guild.channels.cache.get(guildData.plugins.modlogs);
|
|
if (!channel) return;
|
|
|
|
channel.send({
|
|
embeds: [embed],
|
|
});
|
|
}
|
|
|
|
return submitted.reply({
|
|
content: interaction.translate("moderation/warn:WARNED", {
|
|
user: member.toString(),
|
|
reason,
|
|
}),
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = WarnContext;
|