-
Notifications
You must be signed in to change notification settings - Fork 0
/
ban.js
72 lines (64 loc) · 2.71 KB
/
ban.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const Interaction = require('../../Structures/Interaction.js')
const { ActionRowBuilder, ButtonBuilder, Permissions } = require("discord.js")
module.exports = class BanInteraction extends Interaction {
constructor() {
super("Ban author", {
type: 3,
defaultPermission: true,
channelTypes: ["GUILD_TEXT"]
})
}
async execute({ interaction }) {
const message = interaction.options.resolved.messages?.first()
const aSerBanido = interaction.member.guild.members.cache.get(message.author.id)
if (!message || !aSerBanido) return interaction.reply({ content: 'Houve algum erro na hora de pegar o author da mensagem', ephemeral: true })
if (aSerBanido.user.id === interaction.guild.ownerId) {
return interaction.reply({ content: 'Não seja idiota! O poder dele é muito maior do que o de nós', ephemeral: true })
} else if (!interaction.member.permissions.has(Permissions.FLAGS.BAN_MEMBERS)) {
return interaction.reply({ content: 'Você não tem permissão para banir membros!', ephemeral: true })
} else if (!interaction.member.guild.me.permissions.has(Permissions.FLAGS.BAN_MEMBERS)) {
return interaction.reply({ content: 'Eu não tenho permissão para banir membros!', ephemeral: true })
} else if (!aSerBanido.bannable) {
return interaction.reply({ content: 'Meu cargo é inferior ao membro que você quer banir!', ephemeral: true })
}
let row = new ActionRowBuilder({
components:
[
new ButtonBuilder({
customId: "ban-sim",
label: "Sim",
styles: "SUCCES",
emoji: "✅"
}),
new ButtonBuilder({
customId: "ban-não",
label: "Não",
styles: "DANGER",
emoji: "❌"
})
]
})
const i = await interaction.reply({ ephemeral: true, content: `Quer mesmo banir **${aSerBanido.user.username}** (${aSerBanido.user.id})?`, components: [row] })
const filter = (interactionE) => (interactionE.customId === 'ban-sim' || interactionE.customId === 'ban-não') && interactionE.user.id === interaction.user.id
let channel = interaction.channel
const collector = channel?.createMessageComponentCollector({
filter, max: 1
})
collector.on('collect', async i => {
if (i.customId === 'ban-sim') {
await i.update({
content: "Banido com sucesso!",
components: []
})
collector.stop()
return await aSerBanido.ban({ reason: "Banido sem motivo" })
} else if (i.customId === 'ban-não') {
collector.stop()
return await i.update({
content: "Cancelado :x:",
components: []
})
}
})
}
}