mirror of https://github.com/clickscodes/nucleus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
7.6 KiB
152 lines
7.6 KiB
import Discord, { CommandInteraction, GuildMember, MessageActionRow } from "discord.js";
|
|
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
|
|
import { WrappedCheck } from "jshaiku";
|
|
import confirmationMessage from "../../utils/confirmationMessage.js";
|
|
import EmojiEmbed from "../../utils/generateEmojiEmbed.js";
|
|
import keyValueList from "../../utils/generateKeyValueList.js";
|
|
|
|
const command = (builder: SlashCommandSubcommandBuilder) =>
|
|
builder
|
|
.setName("warn")
|
|
.setDescription("Warns a user")
|
|
.addUserOption(option => option.setName("user").setDescription("The user to warn").setRequired(true))
|
|
.addStringOption(option => option.setName("reason").setDescription("The reason for the warn").setRequired(false))
|
|
.addStringOption(option => option.setName("notify").setDescription("If the user should get a message when they are warned | Default yes").setRequired(false)
|
|
.addChoices([["Yes", "yes"], ["No", "no"]])
|
|
)
|
|
|
|
const callback = async (interaction: CommandInteraction) => {
|
|
// TODO:[Modals] Replace this with a modal
|
|
if (await new confirmationMessage(interaction)
|
|
.setEmoji("PUNISH.WARN.RED")
|
|
.setTitle("Warn")
|
|
.setDescription(keyValueList({
|
|
"user": `<@!${(interaction.options.getMember("user") as GuildMember).id}> (${(interaction.options.getMember("user") as GuildMember).user.username})`,
|
|
"reason": `\n> ${interaction.options.getString("reason") ? interaction.options.getString("reason") : "*No reason provided*"}`
|
|
})
|
|
+ `The user **will${interaction.options.getString("notify") === "no" ? ' not' : ''}** be notified\n\n`)
|
|
.setColor("Danger")
|
|
// pluralize("day", interaction.options.getInteger("delete"))
|
|
// const pluralize = (word: string, count: number) => { return count === 1 ? word : word + "s" }
|
|
.send()) {
|
|
let dmd = false
|
|
try {
|
|
if (interaction.options.getString("notify") != "no") {
|
|
await (interaction.options.getMember("user") as GuildMember).send({
|
|
embeds: [new EmojiEmbed()
|
|
.setEmoji("PUNISH.WARN.RED")
|
|
.setTitle("Warned")
|
|
.setDescription(`You have been warned in ${interaction.guild.name}` +
|
|
(interaction.options.getString("reason") ? ` for:\n> ${interaction.options.getString("reason")}` : " with no reason provided."))
|
|
.setStatus("Danger")
|
|
]
|
|
})
|
|
dmd = true
|
|
}
|
|
} catch {
|
|
await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji("PUNISH.WARN.RED")
|
|
.setTitle(`Warn`)
|
|
.setDescription("Something went wrong and the user was not warned")
|
|
.setStatus("Danger")
|
|
], components: []})
|
|
}
|
|
let failed = (dmd == false && interaction.options.getString("notify") != "no")
|
|
if (!failed) {
|
|
await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.GREEN`)
|
|
.setTitle(`Warn`)
|
|
.setDescription("The user was warned")
|
|
.setStatus("Success")
|
|
], components: []})
|
|
} else {
|
|
let m = await interaction.editReply({
|
|
embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.RED`)
|
|
.setTitle(`Warn`)
|
|
.setDescription("The user's DMs are not open\n\nWhat would you like to do?")
|
|
.setStatus("Danger")
|
|
], components: [
|
|
new MessageActionRow().addComponents([
|
|
new Discord.MessageButton()
|
|
.setCustomId("log")
|
|
.setLabel("Ignore and log")
|
|
.setStyle("SECONDARY"),
|
|
new Discord.MessageButton()
|
|
.setCustomId("here")
|
|
.setLabel("Warn here")
|
|
.setStyle("SECONDARY")
|
|
.setDisabled((interaction.options.getMember("user") as GuildMember).permissionsIn(interaction.channel as Discord.TextChannel).has("VIEW_CHANNEL") === false),
|
|
])
|
|
],
|
|
})
|
|
let component;
|
|
try {
|
|
component = await (m as Discord.Message).awaitMessageComponent({filter: (m) => m.user.id === interaction.user.id, time: 2.5 * 60 * 1000});
|
|
} catch (e) {
|
|
return await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.GREEN`)
|
|
.setTitle(`Warn`)
|
|
.setDescription("No changes were made")
|
|
.setStatus("Success")
|
|
], components: []})
|
|
}
|
|
if ( component.customId == "here" ) {
|
|
await interaction.channel.send({
|
|
embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.RED`)
|
|
.setTitle(`Warn`)
|
|
.setDescription(`You have been warned` +
|
|
(interaction.options.getString("reason") ? ` for:\n> ${interaction.options.getString("reason")}` : " with no reason provided."))
|
|
.setStatus("Danger")
|
|
],
|
|
content: `<@!${(interaction.options.getMember("user") as GuildMember).id}>`,
|
|
allowedMentions: {users: [(interaction.options.getMember("user") as GuildMember).id]}
|
|
})
|
|
return await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.GREEN`)
|
|
.setTitle(`Warn`)
|
|
.setDescription("The user was warned")
|
|
.setStatus("Success")
|
|
], components: []})
|
|
} else {
|
|
await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji(`PUNISH.WARN.GREEN`)
|
|
.setTitle(`Warn`)
|
|
.setDescription("The warn was logged")
|
|
.setStatus("Success")
|
|
], components: []})
|
|
}
|
|
}
|
|
} else {
|
|
await interaction.editReply({embeds: [new EmojiEmbed()
|
|
.setEmoji("PUNISH.WARN.GREEN")
|
|
.setTitle(`Warn`)
|
|
.setDescription("No changes were made")
|
|
.setStatus("Success")
|
|
], components: []})
|
|
}
|
|
}
|
|
|
|
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
|
|
return true
|
|
let member = (interaction.member as GuildMember)
|
|
let me = (interaction.guild.me as GuildMember)
|
|
let apply = (interaction.options.getMember("user") as GuildMember)
|
|
if (member == null || me == null || apply == null) throw "That member is not in the server"
|
|
let memberPos = member.roles ? member.roles.highest.position : 0
|
|
let mePos = me.roles ? me.roles.highest.position : 0
|
|
let applyPos = apply.roles ? apply.roles.highest.position : 0
|
|
// Do not allow warning bots
|
|
if ((interaction.member as GuildMember).user.bot) throw "I cannot warn bots"
|
|
// Allow the owner to warn anyone
|
|
if ((interaction.member as GuildMember).id == interaction.guild.ownerId) return true
|
|
// Check if the user has moderate_members permission
|
|
if (! (interaction.member as GuildMember).permissions.has("MODERATE_MEMBERS")) throw "You do not have the `moderate_members` permission";
|
|
// Check if the user is below on the role list
|
|
if (! (memberPos > applyPos)) throw "You do not have a role higher than that member"
|
|
// Allow warn
|
|
return true
|
|
}
|
|
|
|
export { command, callback, check }; |