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
|
import { BushCommand, BushGuildMember, BushMessage, BushSlashMessage, BushUser } from '@lib';
export default class WarnCommand extends BushCommand {
public constructor() {
super('warn', {
aliases: ['warn'],
category: 'moderation',
description: {
content: 'Warn a user.',
usage: 'warn <member> [reason]',
examples: ['warn @Tyman being cool']
},
args: [
{
id: 'user',
type: 'user',
prompt: {
start: 'What user would you like to warn?',
retry: '{error} Choose a valid user to warn.'
}
},
{
id: 'reason',
type: 'content',
match: 'rest',
prompt: {
start: 'Why should this user be warned?',
retry: '{error} Choose a valid warn reason.',
optional: true
}
}
],
slash: true,
slashOptions: [
{
type: 'USER',
name: 'user',
description: 'What user would you like to warn?',
required: true
},
{
type: 'STRING',
name: 'reason',
description: 'Why should this user be warned?',
required: false
}
],
channel: 'guild',
clientPermissions: ['SEND_MESSAGES'],
userPermissions: ['MANAGE_MESSAGES']
});
}
public async exec(
message: BushMessage | BushSlashMessage,
{ user, reason }: { user: BushUser; reason: string }
): Promise<unknown> {
const member = message.guild.members.cache.get(user.id) as BushGuildMember;
const canModerateResponse = this.client.util.moderationPermissionCheck(message.member, member, 'warn');
const victimBoldTag = `**${member.user.tag}**`;
if (typeof canModerateResponse !== 'boolean') {
return message.util.reply(canModerateResponse);
}
const { result: response, caseNum } = await member.warn({
reason,
moderator: message.author
});
switch (response) {
case 'error creating modlog entry':
return message.util.reply(
`${this.client.util.emojis.error} While warning ${victimBoldTag}, there was an error creating a modlog entry, please report this to my developers.`
);
case 'failed to dm':
return message.util.reply(
`${this.client.util.emojis.warn} **${member.user.tag}** has been warned for the ${this.client.util.ordinal(
caseNum
)} time, however I could not send them a dm.`
);
case 'success':
return message.util.reply(
`${this.client.util.emojis.success} Successfully warned **${member.user.tag}** for the ${this.client.util.ordinal(
caseNum
)} time.`
);
}
}
}
|