aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moderation/hideCase.ts
blob: 2ed788a0571a44086261a6917572f1b0a0a01faa (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
import { BushCommand, BushMessage, BushSlashMessage, ModLog } from '@lib';

export default class HideCaseCommand extends BushCommand {
	public constructor() {
		super('hideCase', {
			aliases: ['hide-case', 'hide_case', 'showcase', 'show_case', 'cover-up-mod-abuse', 'cover_up_mod_abuse'],
			category: 'moderation',
			description: {
				content: 'Hide a particular modlog case from the modlog command unless the `--hidden` flag is specified',
				usage: 'hideCase <case_id>',
				examples: ['hideCase 9210b1ea-91f5-4ea2-801b-02b394469c77']
			},
			args: [
				{
					id: 'case_id',
					type: 'string',
					prompt: {
						start: 'What modlog case would you like to hide?',
						retry: '{error} Choose a valid case id.'
					}
				}
			],
			userPermissions: (message) => {
				return message.member?.permissions.has('MANAGE_MESSAGES') ? null : ['MANAGE_MESSAGES'];
			},
			clientPermissions: ['SEND_MESSAGES'],
			slash: true,
			slashOptions: [
				{
					name: 'case_id',
					description: 'What modlog case would you like to hide?',
					type: 'STRING',
					required: true
				}
			],
			channel: 'guild'
		});
	}

	public override async exec(
		message: BushMessage | BushSlashMessage,
		{ case_id: caseID }: { case_id: string }
	): Promise<unknown> {
		if (message.author.id === '496409778822709251')
			return await message.util.reply(`${util.emojis.error} This command is Bestower proof.`);
		const entry = await ModLog.findByPk(caseID);
		if (!entry || entry.pseudo) return message.util.send(`${util.emojis.error} Invalid entry.`);
		if (entry.guild !== message.guild!.id)
			return message.util.reply(`${util.emojis.error} This modlog is from another server.`);
		const action = entry.hidden ? 'no longer hidden' : 'now hidden';
		const oldEntry = entry.hidden;
		entry.hidden = !entry.hidden;
		await entry.save();

		client.emit('bushUpdateModlog', message.member!, entry.id, 'hidden', oldEntry, entry.hidden);

		return await message.util.reply(`${util.emojis.success} CaseID \`${caseID}\` is ${action}.`);
	}
}