blob: 6725068a6dd32027ba513e5fe1c0a0bba197e398 (
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
|
import { BushInhibitor, type BushCommand, type BushMessage, type BushSlashMessage } from '@lib';
export default class ChannelGuildBlacklistInhibitor extends BushInhibitor {
public constructor() {
super('channelGuildBlacklist', {
reason: 'channelGuildBlacklist',
category: 'blacklist',
type: 'post',
priority: 499
});
}
public override async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise<boolean> {
if (!message.author || !message.guild) return false;
if (client.isOwner(message.author) || /* client.isSuperUser(message.author) || */ client.user!.id === message.author.id)
return false;
if (
(await message.guild.getSetting('bypassChannelBlacklist'))?.includes(message.author.id) &&
!command.bypassChannelBlacklist
) {
return false;
}
if (
(await message.guild.getSetting('blacklistedChannels'))?.includes(message.channel!.id) &&
!command.bypassChannelBlacklist
) {
return true;
}
return false;
}
}
|