aboutsummaryrefslogtreecommitdiff
path: root/src/context-menu-commands/user/modlog.ts
blob: 09d9a61ff96c521d37c134cca6e612f1b456bee6 (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
import { ModlogCommand } from '#commands';
import { BushCommandUtil, BushSlashMessage } from '#lib';
import { ContextMenuCommand } from 'discord-akairo';
import { ApplicationCommandType, type ContextMenuCommandInteraction } from 'discord.js';

export default class ModlogContextMenuCommand extends ContextMenuCommand {
	public constructor() {
		super('modlog', {
			name: "Users's Modlogs",
			type: ApplicationCommandType.User,
			category: 'user',
			guilds: ['516977525906341928']
		});
	}

	public override async exec(interaction: ContextMenuCommandInteraction) {
		if (!interaction.inCachedGuild())
			return interaction.reply({
				content: `${util.emojis.error} You can't use this command outside of a server.`,
				ephemeral: true
			});
		if (!interaction.member?.permissions.has('ManageMessages'))
			return interaction.reply({
				content: `${util.emojis.error} You can't use this command because you have the **Manage Messages** permission.`,
				ephemeral: true
			});

		await interaction.deferReply({ ephemeral: true });
		const pseudoMessage = new BushSlashMessage(client, interaction as any);
		pseudoMessage.util = new BushCommandUtil(client.commandHandler, pseudoMessage);

		void new ModlogCommand().exec(pseudoMessage, { search: interaction.targetId, hidden: false });
	}
}