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
109
110
111
112
113
114
115
116
117
118
119
120
|
import { BotCommand } from '../../lib/extensions/BotCommand';
import { Guild, Modlog, ModlogType } from '../../lib/models';
import { GuildMember, Message } from 'discord.js';
import { ApplicationCommandOptionType } from 'discord-api-types';
import { CommandInteraction } from 'discord.js';
export default class KickCommand extends BotCommand {
constructor() {
super('kick', {
aliases: ['kick'],
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']
},
slashCommandOptions: [
{
type: ApplicationCommandOptionType.USER,
name: 'user',
description: 'The user to kick',
required: true
},
{
type: ApplicationCommandOptionType.STRING,
name: 'reason',
description: 'The reason to show in modlogs and audit log',
required: false
}
]
});
}
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) {
console.error(e);
yield '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 'Error sending message to user';
}
try {
await user.kick(
`Kicked by ${
message instanceof Message ? message.author.tag : message.user.tag
} with ${reason ? `reason ${reason}` : 'no reason'}`
);
} catch {
yield 'Error kicking :/';
await modlogEnry.destroy();
return;
}
yield `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: CommandInteraction,
{ user, reason }: { user: GuildMember; reason?: string }
): Promise<void> {
for await (const response of this.genResponses(message, user, reason)) {
await message.reply(response);
}
}
}
|