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
|
import {
AllowedMentions,
BotCommand,
emojis,
format,
Moderation,
ordinal,
warnResponse,
type ArgType,
type CommandMessage,
type OptArgType,
type SlashMessage,
type WarnResponse
} from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType, type GuildMember } from 'discord.js';
export default class WarnCommand extends BotCommand {
public constructor() {
super('warn', {
aliases: ['warn'],
category: 'moderation',
description: 'Warn a user.',
usage: ['warn <member> [reason]'],
examples: ['warn @Tyman being cool'],
args: [
{
id: 'user',
description: 'The user to warn.',
type: 'user',
prompt: 'What user would you like to warn?',
retry: '{error} Choose a valid user to warn.',
slashType: ApplicationCommandOptionType.User
},
{
id: 'reason',
description: 'The reason for the warn.',
match: 'rest',
prompt: 'Why should this user be warned?',
retry: '{error} Choose a valid warn reason.',
slashType: ApplicationCommandOptionType.String,
optional: true
},
{
id: 'force',
description: 'Override permission checks.',
flag: '--force',
match: 'flag',
optional: true,
slashType: false,
only: 'text',
ownerOnly: true
}
],
slash: true,
channel: 'guild',
clientPermissions: [],
userPermissions: ['ManageMessages']
});
}
public override async exec(
message: CommandMessage | SlashMessage,
{ user, reason, force = false }: { user: ArgType<'user'>; reason: OptArgType<'string'>; force?: ArgType<'flag'> }
) {
assert(message.inGuild());
assert(message.member);
const member = message.guild.members.cache.get(user.id);
if (!member) return message.util.reply(`${emojis.error} I cannot warn users that are not in the server.`);
const useForce = force && message.author.isOwner();
const canModerateResponse = await Moderation.permissionCheck(message.member, member, Moderation.Action.Warn, true, useForce);
if (canModerateResponse !== true) {
return message.util.reply(canModerateResponse);
}
const { result: responseCode, caseNum } = await member.customWarn({
reason,
moderator: message.member
});
return await message.util.reply({
content: WarnCommand.formatCode(caseNum, member, responseCode),
allowedMentions: AllowedMentions.none()
});
}
public static formatCode(caseNum: number | null, member: GuildMember, code: WarnResponse): string {
const victim = format.input(member.user.tag);
switch (code) {
case warnResponse.MODLOG_ERROR:
return `${emojis.error} While warning ${victim}, there was an error creating a modlog entry, please report this to my developers.`;
case warnResponse.ACTION_ERROR:
case warnResponse.DM_ERROR:
return `${emojis.warn} ${victim} has been warned for the ${ordinal(
caseNum ?? 0
)} time, however I could not send them a dm.`;
case warnResponse.SUCCESS:
return `${emojis.success} Successfully warned ${victim} for the ${ordinal(caseNum ?? 0)} time.`;
default:
return `${emojis.error} An error occurred: ${format.input(code)}}`;
}
}
}
|