1 |
import { BanOptions, CommandInteraction, GuildMember, Interaction, Message, User } from 'discord.js'; |
import { BanOptions, CommandInteraction, GuildMember, Interaction, Message, User, Permissions } from 'discord.js'; |
2 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
import BaseCommand from '../../utils/structures/BaseCommand'; |
3 |
import DiscordClient from '../../client/Client'; |
import DiscordClient from '../../client/Client'; |
4 |
import CommandOptions from '../../types/CommandOptions'; |
import CommandOptions from '../../types/CommandOptions'; |
9 |
import { fetchEmoji } from '../../utils/Emoji'; |
import { fetchEmoji } from '../../utils/Emoji'; |
10 |
import Punishment from '../../models/Punishment'; |
import Punishment from '../../models/Punishment'; |
11 |
import PunishmentType from '../../types/PunishmentType'; |
import PunishmentType from '../../types/PunishmentType'; |
12 |
|
import { hasPermission, shouldNotModerate } from '../../utils/util'; |
13 |
|
|
14 |
export default class MassBanCommand extends BaseCommand { |
export default class MassBanCommand extends BaseCommand { |
15 |
supportsInteractions: boolean = true; |
supportsInteractions: boolean = true; |
16 |
|
|
17 |
|
permissions = [Permissions.FLAGS.BAN_MEMBERS]; |
18 |
|
|
19 |
constructor() { |
constructor() { |
20 |
super('massban', 'moderation', []); |
super('massban', 'moderation', []); |
102 |
try { |
try { |
103 |
console.log(banOptions.reason); |
console.log(banOptions.reason); |
104 |
|
|
105 |
|
try { |
106 |
|
const member = await msg.guild?.members.fetch(user.id); |
107 |
|
|
108 |
|
if (member && !(await hasPermission(client, member, msg, null, "You don't have permission to ban " + user.tag + "."))) |
109 |
|
break; |
110 |
|
|
111 |
|
if (member && shouldNotModerate(client, member)) { |
112 |
|
await msg.reply({ |
113 |
|
embeds: [ |
114 |
|
new MessageEmbed() |
115 |
|
.setColor('#f14a60') |
116 |
|
.setDescription('The user ' + user.tag + ' is not bannable.') |
117 |
|
] |
118 |
|
}); |
119 |
|
|
120 |
|
return; |
121 |
|
} |
122 |
|
} |
123 |
|
catch (e) { |
124 |
|
console.log(e); |
125 |
|
} |
126 |
|
|
127 |
await Punishment.create({ |
await Punishment.create({ |
128 |
type: PunishmentType.BAN, |
type: PunishmentType.BAN, |
129 |
user_id: user.id, |
user_id: user.id, |
169 |
] |
] |
170 |
}); |
}); |
171 |
} |
} |
|
} |
|
172 |
|
} |