aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moderation/removeReactionEmoji.ts
blob: 5baeffc40f95b70d458d08188eb1c25d3760bef1 (plain)
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
import {
	Arg,
	BotCommand,
	clientSendAndPermCheck,
	emojis,
	format,
	type ArgType,
	type CommandMessage,
	type SlashMessage
} from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType, Message, PermissionFlagsBits } from 'discord.js';

export default class RemoveReactionEmojiCommand extends BotCommand {
	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: Arg.union('message', 'messageLink'),
					readableType: 'message|messageLink',
					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: 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) =>
				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: CommandMessage | SlashMessage,
		args: { message: ArgType<'guildMessage'> | string; emoji: ArgType<'emoji' | 'snowflake'> }
	) {
		assert(message.channel);
		const resolvedMessage = args.message instanceof Message ? args.message : await message.channel.messages.fetch(args.message);

		const emojiID = typeof args.emoji === 'string' ? `${args.emoji}` : args.emoji.id;
		const success = !!(await resolvedMessage.reactions.cache
			?.get(emojiID!)
			?.remove()
			?.catch(() => undefined));

		if (success) {
			return await message.util.reply(
				`${emojis.success} Removed all reactions of ${format.input(emojiID!)} from the message with the id of ${format.input(
					resolvedMessage.id
				)}.`
			);
		} else {
			return await message.util.reply(
				`${emojis.error} There was an error removing all reactions of ${format.input(
					emojiID!
				)} from the message with the id of ${format.input(resolvedMessage.id)}.`
			);
		}
	}
}