1 |
import { BanOptions, CommandInteraction, GuildMember, Interaction, Message, User } from 'discord.js'; |
import { BanOptions, CommandInteraction, ContextMenuInteraction, GuildMember, Interaction, Message, Permissions, User } 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'; |
7 |
import getUser from '../../utils/getUser'; |
import getUser from '../../utils/getUser'; |
8 |
import getMember from '../../utils/getMember'; |
import getMember from '../../utils/getMember'; |
9 |
import History from '../../automod/History'; |
import History from '../../automod/History'; |
10 |
|
import Punishment from '../../models/Punishment'; |
11 |
|
import PunishmentType from '../../types/PunishmentType'; |
12 |
|
import { hasPermission, shouldNotModerate } from '../../utils/util'; |
13 |
|
|
14 |
export default class KickCommand extends BaseCommand { |
export default class KickCommand extends BaseCommand { |
15 |
supportsInteractions: boolean = true; |
supportsInteractions: boolean = true; |
16 |
|
supportsContextMenu: boolean = true; |
17 |
|
|
18 |
|
permissions = [Permissions.FLAGS.KICK_MEMBERS]; |
19 |
|
|
20 |
constructor() { |
constructor() { |
21 |
super('kick', 'moderation', []); |
super('kick', 'moderation', ['Kick']); |
22 |
} |
} |
23 |
|
|
24 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) { |
25 |
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
26 |
await msg.reply({ |
await msg.reply({ |
27 |
embeds: [ |
embeds: [ |
38 |
let reason: string | undefined; |
let reason: string | undefined; |
39 |
|
|
40 |
if (options.isInteraction) { |
if (options.isInteraction) { |
41 |
user = await <GuildMember> options.options.getMember('member'); |
user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member')); |
42 |
|
|
43 |
if (!user) { |
if (!user) { |
44 |
await msg.reply({ |
await msg.reply({ |
88 |
} |
} |
89 |
|
|
90 |
try { |
try { |
91 |
if (!user.kickable) |
if (!(await hasPermission(client, user, msg, null, "You don't have permission to kick this user."))) { |
92 |
|
return; |
93 |
|
} |
94 |
|
|
95 |
|
if (!user.kickable || shouldNotModerate(client, user)) |
96 |
throw new Error('User not kickable'); |
throw new Error('User not kickable'); |
97 |
|
|
98 |
await user.kick(reason); |
await user.kick(reason); |
99 |
await History.create(user.id, msg.guild!, 'kick', msg.member!.user.id, typeof reason === 'undefined' ? null : reason); |
|
100 |
|
await Punishment.create({ |
101 |
|
type: PunishmentType.KICK, |
102 |
|
user_id: user.id, |
103 |
|
guild_id: msg.guild!.id, |
104 |
|
mod_id: msg.member!.user.id, |
105 |
|
mod_tag: (msg.member!.user as User).tag, |
106 |
|
reason |
107 |
|
}); |
108 |
|
|
109 |
|
// await History.create(user.id, msg.guild!, 'kick', msg.member!.user.id, typeof reason === 'undefined' ? null : reason); |
110 |
} |
} |
111 |
catch (e) { |
catch (e) { |
112 |
await msg.reply({ |
await msg.reply({ |
141 |
] |
] |
142 |
}); |
}); |
143 |
} |
} |
|
} |
|
144 |
|
} |