aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/command/nsfw.ts
blob: 7f0f3e79c61535e8de7ebf4f3fee921e6f4d942c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { BushInhibitor, type BushCommand, type BushMessage, type BushSlashMessage } from '#lib';
import { type TextChannel } from 'discord.js';

export default class NsfwInhibitor extends BushInhibitor {
	public constructor() {
		super('nsfw', {
			reason: 'notNsfw',
			category: 'command',
			type: 'post',
			priority: 25
		});
	}

	public override async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise<boolean> {
		if (command.onlyNsfw && !(message.channel as TextChannel).nsfw) {
			void client.console.verbose('notNsfw', `Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.`)
			return true;
		}
		return false;
	}
}