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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
import { CommandInteraction, GuildMember, Message } from 'discord.js';
import { BushCommand } from '../../lib/extensions/BushCommand';
import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage';
import { Guild, Modlog, ModlogType } from '../../lib/models';
export default class KickCommand extends BushCommand {
constructor() {
super('kick', {
aliases: ['kick'],
category: 'moderation',
args: [
{
id: 'user',
type: 'member',
prompt: {
start: 'What user would you like to kick?',
retry: 'Invalid response. What user would you like to kick?'
}
},
{
id: 'reason'
}
],
clientPermissions: ['KICK_MEMBERS'],
userPermissions: ['KICK_MEMBERS'],
description: {
content: 'Kick a member and log it in modlogs',
usage: 'kick <member> <reason>',
examples: ['kick @Tyman being cool']
},
slashOptions: [
{
type: 'USER',
name: 'user',
description: 'The user to kick',
required: true
},
{
type: 'STRING',
name: 'reason',
description: 'The reason to show in modlogs and audit log',
required: false
}
],
slash: true
});
}
private async *genResponses(
message: Message | CommandInteraction,
user: GuildMember,
reason?: string
): AsyncIterable<string> {
let modlogEnry: Modlog;
// Create guild entry so postgres doesn't get mad when I try and add a modlog entry
await Guild.findOrCreate({
where: {
id: message.guild.id
},
defaults: {
id: message.guild.id
}
});
try {
modlogEnry = Modlog.build({
user: user.id,
guild: message.guild.id,
moderator: message instanceof Message ? message.author.id : message.user.id,
type: ModlogType.KICK,
reason
});
await modlogEnry.save();
} catch (e) {
this.client.console.error(`BanCommand`, `Error saving to database. ${e?.stack}`);
yield `${this.client.util.emojis.error} Error saving to database. Please report this to a developer.`;
return;
}
try {
await user.send(`You were kicked in ${message.guild.name} with reason \`${reason || 'No reason given'}\``);
} catch (e) {
yield `${this.client.util.emojis.warn} Unable to dm user`;
}
try {
await user.kick(
`Kicked by ${message instanceof Message ? message.author.tag : message.user.tag} with ${
reason ? `reason ${reason}` : 'no reason'
}`
);
} catch {
yield `${this.client.util.emojis.error} Error kicking :/`;
await modlogEnry.destroy();
return;
}
yield `${this.client.util.emojis.success} Kicked <@!${user.id}> with reason \`${reason || 'No reason given'}\``;
}
async exec(message: Message, { user, reason }: { user: GuildMember; reason?: string }): Promise<void> {
for await (const response of this.genResponses(message, user, reason)) {
await message.util.send(response);
}
}
async execSlash(message: BushInteractionMessage, { user, reason }: { user: GuildMember; reason?: string }): Promise<void> {
for await (const response of this.genResponses(message.interaction, user, reason)) {
await message.interaction.reply(response);
}
}
}
|