aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/blacklist/userGuildBlacklist.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 10:25:46 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 10:25:46 -0400
commitd1724227abfb8f0fcd9e573f7e9772cf0be8257a (patch)
tree52c9dbae1fbbbd3c777d9c16ab643c477141ae21 /src/inhibitors/blacklist/userGuildBlacklist.ts
parent53d2b18f7f73d5696fb7cd86d1c164a790dfdcc3 (diff)
downloadtanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.tar.gz
tanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.tar.bz2
tanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.zip
honestly no idea what I did at this point
Diffstat (limited to 'src/inhibitors/blacklist/userGuildBlacklist.ts')
-rw-r--r--src/inhibitors/blacklist/userGuildBlacklist.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/inhibitors/blacklist/userGuildBlacklist.ts b/src/inhibitors/blacklist/userGuildBlacklist.ts
new file mode 100644
index 0000000..02a3762
--- /dev/null
+++ b/src/inhibitors/blacklist/userGuildBlacklist.ts
@@ -0,0 +1,25 @@
+import { BushInhibitor, BushMessage, BushSlashMessage } from '@lib';
+
+export default class UserGuildBlacklistInhibitor extends BushInhibitor {
+ public constructor() {
+ super('userGuildBlacklist', {
+ reason: 'userGuildBlacklist',
+ category: 'blacklist',
+ type: 'all'
+ });
+ }
+
+ public async exec(message: BushMessage | BushSlashMessage): Promise<boolean> {
+ if (!message.author || !message.guild) return false;
+ if (
+ this.client.isOwner(message.author) ||
+ this.client.isSuperUser(message.author) ||
+ this.client.user.id === message.author.id
+ )
+ return false;
+ if ((await message.guild.getSetting('blacklistedUsers'))?.includes(message.author.id)) {
+ this.client.console.debug(`userGuildBlacklist blocked message.`);
+ return true;
+ }
+ }
+}