blob: 20ebc305f38b45ccb0767fde9265cc9ac02a9f7e [file] [log] [blame]
import Discord, { CommandInteraction, GuildMember, MessageActionRow } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
import generateEmojiEmbed from "../../utils/generateEmojiEmbed.js";
import getEmojiByName from "../../utils/getEmojiByName.js";
import confirmationMessage from "../../utils/confirmationMessage.js";
import keyValueList from "../../utils/generateKeyValueList.js";
import humanizeDuration from "humanize-duration";
import { create, areTicketsEnabled } from "../../automations/createModActionTicket.js";
import readConfig from '../../utils/readConfig.js'
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("unnamed")
.setDescription("Gives a user a role")
.addUserOption(option => option.setName("user").setDescription("The user to UNNAMED").setRequired(true)) // TODO
.addIntegerOption(option => option.setName("days").setDescription("The number of days to UNNAMED the user for | Default 0").setMinValue(0).setMaxValue(27).setRequired(false))
.addIntegerOption(option => option.setName("hours").setDescription("The number of hours to UNNAMED the user for | Default 0").setMinValue(0).setMaxValue(23).setRequired(false))
.addIntegerOption(option => option.setName("minutes").setDescription("The number of minutes to UNNAMED the user for | Default 0").setMinValue(0).setMaxValue(59).setRequired(false))
.addIntegerOption(option => option.setName("seconds").setDescription("The number of seconds to UNNAMED the user for | Default 0").setMinValue(0).setMaxValue(59).setRequired(false))
.addStringOption(option => option.setName("reason").setDescription("The reason for the UNNAMED").setRequired(false))
.addStringOption(option => option.setName("notify").setDescription("If the user should get a message when they are UNNAMED | Default yes").setRequired(false)
.addChoices([["Yes", "yes"], ["No", "no"]]))
const callback = async (interaction: CommandInteraction) => {
// @ts-ignore
const { log, NucleusColors, renderUser, entry } = interaction.client.logger
let config = await readConfig(interaction.guild.id);
const user = interaction.options.getMember("user") as GuildMember
const reason = interaction.options.getString("reason")
const time = {
days: interaction.options.getInteger("days") || 0,
hours: interaction.options.getInteger("hours") || 0,
minutes: interaction.options.getInteger("minutes") || 0,
seconds: interaction.options.getInteger("seconds") || 0
}
let muteTime = (time.days * 24 * 60 * 60) + (time.hours * 60 * 60) + (time.minutes * 60) + time.seconds
if (muteTime == 0) {
let m = await interaction.reply({embeds: [
new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.GREEN") // TODO
.setTitle("UNNAMED")
.setDescription("How long should the user be UNNAMED")
.setStatus("Success")
], components: [
new MessageActionRow().addComponents([
new Discord.MessageButton()
.setCustomId("1m")
.setLabel("1 Minute")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("10m")
.setLabel("10 Minutes")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("30m")
.setLabel("30 Minutes")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("1h")
.setLabel("1 Hour")
.setStyle("SECONDARY")
]),
new MessageActionRow().addComponents([
new Discord.MessageButton()
.setCustomId("6h")
.setLabel("6 Hours")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("12h")
.setLabel("12 Hours")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("1d")
.setLabel("1 Day")
.setStyle("SECONDARY"),
new Discord.MessageButton()
.setCustomId("1w")
.setLabel("1 Week")
.setStyle("SECONDARY")
]),
new MessageActionRow().addComponents([
new Discord.MessageButton()
.setCustomId("cancel")
.setLabel("Cancel")
.setStyle("DANGER")
.setEmoji(getEmojiByName("CONTROL.CROSS", "id"))
])
], ephemeral: true, fetchReply: true})
let component;
try {
component = await (m as Discord.Message).awaitMessageComponent({filter: (m) => m.user.id === interaction.user.id, time: 2.5 * 60 * 1000});
} catch { return }
component.deferUpdate();
if (component.customId == "cancel") return interaction.editReply({embeds: [new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.RED") // TODO
.setTitle("UNNAMED")
.setDescription("UNNAMED cancelled")
.setStatus("Danger")
]})
switch (component.customId) {
case "1m": { muteTime = 60; break; }
case "10m": { muteTime = 60 * 10; break; }
case "30m": { muteTime = 60 * 30; break; }
case "1h": { muteTime = 60 * 60; break; }
case "6h": { muteTime = 60 * 60 * 6; break; }
case "12h": { muteTime = 60 * 60 * 12; break; }
case "1d": { muteTime = 60 * 60 * 24; break; }
case "1w": { muteTime = 60 * 60 * 24 * 7; break; }
}
} else {
await interaction.reply({embeds: [
new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.GREEN") // TODO
.setTitle("UNNAMED")
.setDescription("Loading...")
.setStatus("Success")
], ephemeral: true, fetchReply: true})
}
// TODO:[Modals] Replace this with a modal
let confirmation = await new confirmationMessage(interaction)
.setEmoji("PUNISH.MUTE.RED") // TODO
.setTitle("UNNAMED")
.setDescription(keyValueList({
"user": `<@!${user.id}> (${user.user.username})`,
"time": `${humanizeDuration(muteTime * 1000, {round: true})}`,
"reason": `\n> ${reason ? reason : "*No reason provided*"}`
})
+ `The user **will${interaction.options.getString("notify") === "no" ? ' not' : ''}** be notified\n\n`
+ `Are you sure you want to mute <@!${(interaction.options.getMember("user") as GuildMember).id}>?`) // TODO
.setColor("Danger")
.addCustomCallback(
"Create appeal ticket", !(await areTicketsEnabled(interaction.guild.id)),
() => { create(interaction.guild, interaction.options.getUser("user"), interaction.client)},
"An appeal ticket was created")
// pluralize("day", interaction.options.getInteger("delete"))
// const pluralize = (word: string, count: number) => { return count === 1 ? word : word + "s" }
.send()
if (confirmation.success) {
let dmd = false
let dm;
try {
if (interaction.options.getString("notify") != "no") {
dm = await (interaction.options.getMember("user") as GuildMember).send({
embeds: [new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.RED") // TODO
.setTitle("UNNAMED")
.setDescription(`You have been muted in ${interaction.guild.name}` + // TODO
(interaction.options.getString("reason") ? ` for:\n> ${interaction.options.getString("reason")}` : ".\n\n" +
`You will be unmuted at: <t:${Math.round((new Date).getTime() / 1000) + muteTime}:D> at <t:${Math.round((new Date).getTime() / 1000) + muteTime}:T> (<t:${Math.round((new Date).getTime() / 1000) + muteTime}:R>)`)) // TODO
.setStatus("Danger")
]
})
dmd = true
}
} catch {}
try {
await ((interaction.options.getMember("user") as GuildMember).roles.add(interaction.guild.roles.cache.find((r) => r.id === config.moderation.role.role)))
// TODO: Store when to remove the role
} catch {
await interaction.editReply({embeds: [new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.RED")
.setTitle(`Mute`)
.setDescription("Something went wrong and the user was not UNNAMED")
.setStatus("Danger")
], components: []})
if (dmd) await dm.delete()
return
}
let failed = (dmd == false && interaction.options.getString("notify") != "no")
await interaction.editReply({embeds: [new generateEmojiEmbed()
.setEmoji(`PUNISH.MUTE.${failed ? "YELLOW" : "GREEN"}`) // TODO
.setTitle(`Mute`) // TODO
.setDescription("The member was muted" + (failed ? ", but could not be notified" : "")) // TODO
.setStatus(failed ? "Warning" : "Success")
], components: []})
let data = {
meta:{
type: 'memberMute', // TODO
displayName: 'Member Muted', // TODO
calculateType: 'guildMemberPunish',
color: NucleusColors.yellow,
emoji: 'PUNISH.WARN.YELLOW', // TODO
timestamp: new Date().getTime()
},
list: {
user: entry((interaction.options.getMember("user") as GuildMember).user.id, renderUser((interaction.options.getMember("user") as GuildMember).user)),
mutedBy: entry(interaction.member.user.id, renderUser(interaction.member.user)), // TODO
time: entry(muteTime, `${humanizeDuration(muteTime * 1000, {round: true})}`),
reason: (interaction.options.getString("reason") ? `\n> ${interaction.options.getString("reason")}` : "No reason provided")
},
hidden: {
guild: interaction.guild.id
}
}
log(data, interaction.client);
} else {
await interaction.editReply({embeds: [new generateEmojiEmbed()
.setEmoji("PUNISH.MUTE.GREEN") // TODO
.setTitle(`Mute`) // TODO
.setDescription("No changes were made")
.setStatus("Success")
], components: []})
}
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
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
// Check if Nucleus can UNNAMED the member
if (! (mePos > applyPos)) throw "I do not have a role higher than that member"
// Check if Nucleus has permission to UNNAMED
if (! me.permissions.has("MANAGE_ROLES")) throw "I do not have the `manage_roles` permission";
// Do not allow the user to have admin or be the owner
if (apply.permissions.has("ADMINISTRATOR") || apply.id == interaction.guild.ownerId) throw "You cannot mute an admin or the owner"
// Do not allow muting Nucleus
if (member.id == me.id) throw "I cannot UNNAMED myself"
// Allow the owner to UNNAMED anyone
if (member.id == interaction.guild.ownerId) return true
// Check if the user has moderate_members permission
if (! member.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 UNNAMED
return true
}
export { command, callback, check };