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
|
import {
AllowedMentions,
BushCommand,
clientSendAndPermCheck,
emojis,
format,
Moderation,
unblockResponse,
userGuildPermCheck,
type ArgType,
type CommandMessage,
type OptArgType,
type SlashMessage,
type UnblockResponse
} from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType, PermissionFlagsBits, type GuildMember } from 'discord.js';
export default class UnblockCommand extends BushCommand {
public constructor() {
super('unblock', {
aliases: ['unblock'],
category: 'moderation',
description: 'Allows a user to use a channel.',
usage: ['unblock <member> [reason]'],
examples: ['unblock IRONM00N nvm your jokes are funny'],
args: [
{
id: 'user',
description: 'The user to unblock.',
type: 'user',
prompt: 'What user would you like to unblock?',
retry: '{error} Choose a valid user to unblock.',
slashType: ApplicationCommandOptionType.User
},
{
id: 'reason',
description: 'The reason and duration of the unblock.',
type: 'string',
match: 'rest',
prompt: 'Why should this user be blocked and for how long?',
retry: '{error} Choose a valid block reason and duration.',
optional: true,
slashType: ApplicationCommandOptionType.String
},
{
id: 'force',
description: 'Override permission checks.',
flag: '--force',
match: 'flag',
optional: true,
slashType: false,
only: 'text',
ownerOnly: true
}
],
slash: true,
channel: 'guild',
clientPermissions: (m) => clientSendAndPermCheck(m, [PermissionFlagsBits.ManageChannels]),
userPermissions: (m) => userGuildPermCheck(m, [PermissionFlagsBits.ManageMessages])
});
}
public override async exec(
message: CommandMessage | SlashMessage,
args: { user: ArgType<'user'>; reason: OptArgType<'string'>; force?: ArgType<'flag'> }
) {
assert(message.inGuild());
assert(message.member);
assert(message.channel);
if (!message.channel.isTextBased())
return message.util.send(`${emojis.error} This command can only be used in text based channels.`);
const member = await message.guild.members.fetch(args.user.id).catch(() => null);
if (!member)
return await message.util.reply(`${emojis.error} The user you selected is not in the server or is not a valid user.`);
const useForce = args.force && message.author.isOwner();
const canModerateResponse = await Moderation.permissionCheck(message.member, member, 'unblock', true, useForce);
if (canModerateResponse !== true) {
return message.util.reply(canModerateResponse);
}
const responseCode = await member.bushUnblock({
reason: args.reason ?? '',
moderator: message.member,
channel: message.channel
});
return await message.util.reply({
content: UnblockCommand.formatCode(member, responseCode),
allowedMentions: AllowedMentions.none()
});
}
public static formatCode(member: GuildMember, code: UnblockResponse): string {
const victim = format.input(member.user.tag);
switch (code) {
case unblockResponse.MISSING_PERMISSIONS:
return `${emojis.error} Could not unblock ${victim} because I am missing the **Manage Channel** permission.`;
case unblockResponse.INVALID_CHANNEL:
return `${emojis.error} Could not unblock ${victim}, you can only unblock users in text or thread channels.`;
case unblockResponse.ACTION_ERROR:
return `${emojis.error} An unknown error occurred while trying to unblock ${victim}.`;
case unblockResponse.MODLOG_ERROR:
return `${emojis.error} There was an error creating a modlog entry, please report this to my developers.`;
case unblockResponse.PUNISHMENT_ENTRY_REMOVE_ERROR:
return `${emojis.error} There was an error creating a punishment entry, please report this to my developers.`;
case unblockResponse.DM_ERROR:
return `${emojis.warn} Unblocked ${victim} however I could not send them a dm.`;
case unblockResponse.SUCCESS:
return `${emojis.success} Successfully unblocked ${victim}.`;
default:
return `${emojis.error} An error occurred: ${format.input(code)}}`;
}
}
}
|