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
|
import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } from '#lib';
import assert from 'assert';
import { ApplicationCommandOptionType, Message, PermissionFlagsBits, type Emoji } from 'discord.js';
export default class RemoveReactionEmojiCommand extends BushCommand {
public constructor() {
super('removeReactionEmoji', {
aliases: ['remove-reaction-emoji', 'rre'],
category: 'moderation',
description: 'Delete all the reactions of a certain emoji from a message.',
usage: ['remove-reaction-emoji <message> <emoji>'],
examples: ['remove-reaction-emoji 791413052347252786 <:omegaclown:782630946435366942>'],
args: [
{
id: 'message',
description: 'The message to remove all the reactions of a certain emoji from.',
type: 'guildMessage',
prompt: 'What message would you like to remove a reaction from?',
retry: '{error} Please pick a valid message.',
slashType: ApplicationCommandOptionType.String
},
{
id: 'emoji',
description: 'The emoji to remove all the reactions of from a message.',
type: util.arg.union('emoji', 'snowflake'),
readableType: 'emoji|snowflake',
match: 'restContent',
prompt: 'What emoji would you like to remove?',
retry: '{error} Please pick a valid emoji.',
slashType: ApplicationCommandOptionType.String
}
],
slash: true,
channel: 'guild',
clientPermissions: (m) =>
util.clientSendAndPermCheck(m, [PermissionFlagsBits.ManageMessages, PermissionFlagsBits.EmbedLinks], true),
userPermissions: [PermissionFlagsBits.ManageMessages, PermissionFlagsBits.ManageEmojisAndStickers] // Can't undo the removal of 1000s of reactions
});
}
public override async exec(
message: BushMessage | BushSlashMessage,
args: { message: ArgType<'guildMessage'> | string; emoji: ArgType<'emoji'> | ArgType<'snowflake'> }
) {
assert(message.channel);
const resolvedMessage = args.message instanceof Message ? args.message : await message.channel.messages.fetch(args.message);
const id = !(['string'] as const).includes(typeof args.emoji);
const emojiID = !id ? `${args.emoji}` : (args.emoji as Emoji).id;
const success = await resolvedMessage.reactions.cache
?.get(emojiID!)
?.remove()
?.catch(() => {});
if (success) {
return await message.util.reply(
`${util.emojis.success} Removed all reactions of \`${id ? emojiID : args.emoji}\` from the message with the id of \`${
resolvedMessage.id
}\`.`
);
} else {
return await message.util.reply(
`${util.emojis.error} There was an error removing all reactions of \`${
id ? emojiID : args.emoji
}\` from the message with the id of \`${resolvedMessage.id}\`.`
);
}
}
}
|