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
|
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',
match: 'rest',
prompt: {
start: 'Why should this user be warned?',
retry: '{error} Choose a valid warn reason.',
optional: true
}
},
{
id: 'force',
flag: '--force',
match: 'flag'
}
],
slash: true,
slashOptions: [
{
name: 'user',
description: 'What user would you like to warn?',
type: 'USER',
required: true
},
{
name: 'reason',
description: 'Why should this user be warned?',
type: 'STRING',
required: false
}
],
channel: 'guild',
clientPermissions: ['SEND_MESSAGES'],
userPermissions: ['MANAGE_MESSAGES']
});
}
public async exec(
message: BushMessage | BushSlashMessage,
{ user, reason, force }: { user: BushUser; reason: string; force: boolean }
): Promise<unknown> {
const member = message.guild.members.cache.get(user.id) as BushGuildMember;
const useForce = force && message.author.isOwner();
const canModerateResponse = util.moderationPermissionCheck(message.member, member, 'warn', true, useForce);
const victimBoldTag = `**${member.user.tag}**`;
if (canModerateResponse !== true) {
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(
`${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(
`${util.emojis.warn} **${member.user.tag}** has been warned for the ${util.ordinal(
caseNum
)} time, however I could not send them a dm.`
);
case 'success':
return message.util.reply(
`${util.emojis.success} Successfully warned **${member.user.tag}** for the ${util.ordinal(caseNum)} time.`
);
}
}
}
|