aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-26 16:12:06 +0000
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-26 16:12:06 +0000
commit00ad00734ddb2c2fce8de8efcc010181c9ce1821 (patch)
treee6b79047fd2cfbef4733cfbd488ee4cb47d600d5 /src/inhibitors
parent1d6e64d5c43e4398e7c0488f114acba2c8a55164 (diff)
downloadtanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.tar.gz
tanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.tar.bz2
tanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.zip
feat: use Time enum
Diffstat (limited to 'src/inhibitors')
-rw-r--r--src/inhibitors/blacklist/channelGlobalBlacklist.ts5
-rw-r--r--src/inhibitors/blacklist/channelGuildBlacklist.ts5
-rw-r--r--src/inhibitors/blacklist/guildBlacklist.ts8
-rw-r--r--src/inhibitors/blacklist/userGlobalBlacklist.ts2
-rw-r--r--src/inhibitors/blacklist/userGuildBlacklist.ts5
-rw-r--r--src/inhibitors/checks/fatal.ts2
6 files changed, 10 insertions, 17 deletions
diff --git a/src/inhibitors/blacklist/channelGlobalBlacklist.ts b/src/inhibitors/blacklist/channelGlobalBlacklist.ts
index b9d7240..9023dc2 100644
--- a/src/inhibitors/blacklist/channelGlobalBlacklist.ts
+++ b/src/inhibitors/blacklist/channelGlobalBlacklist.ts
@@ -11,9 +11,8 @@ export default class UserGlobalBlacklistInhibitor extends BushInhibitor {
}
public override exec(message: BushMessage | BushSlashMessage, command: BushCommand): 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 (!message.inGuild()) return false;
+ if (message.author.isOwner() || client.user!.id === message.author.id) return false;
if (client.cache.global.blacklistedChannels.includes(message.channel!.id) && !command.bypassChannelBlacklist) {
void client.console.verbose(
'channelGlobalBlacklist',
diff --git a/src/inhibitors/blacklist/channelGuildBlacklist.ts b/src/inhibitors/blacklist/channelGuildBlacklist.ts
index e881ebb..aa5b2d9 100644
--- a/src/inhibitors/blacklist/channelGuildBlacklist.ts
+++ b/src/inhibitors/blacklist/channelGuildBlacklist.ts
@@ -11,9 +11,8 @@ export default class ChannelGuildBlacklistInhibitor extends BushInhibitor {
}
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 (!message.inGuild()) return false;
+ if (message.author.isOwner() || client.user!.id === message.author.id) return false;
if (
(await message.guild.getSetting('bypassChannelBlacklist'))?.includes(message.author.id) &&
!command.bypassChannelBlacklist
diff --git a/src/inhibitors/blacklist/guildBlacklist.ts b/src/inhibitors/blacklist/guildBlacklist.ts
index b319475..9949c22 100644
--- a/src/inhibitors/blacklist/guildBlacklist.ts
+++ b/src/inhibitors/blacklist/guildBlacklist.ts
@@ -11,12 +11,8 @@ export default class GuildBlacklistInhibitor extends BushInhibitor {
}
public override exec(message: BushMessage | BushSlashMessage): boolean {
- if (!message.guild) return false;
- if (
- message.author &&
- (client.isOwner(message.author) || client.isSuperUser(message.author) || client.user!.id === message.author.id)
- )
- return false;
+ if (!message.inGuild()) return false;
+ if (message.author.isOwner() || message.author.isSuperUser() || client.user!.id === message.author.id) return false;
if (client.cache.global.blacklistedGuilds.includes(message.guild.id)) {
void client.console.verbose(
'guildBlacklist',
diff --git a/src/inhibitors/blacklist/userGlobalBlacklist.ts b/src/inhibitors/blacklist/userGlobalBlacklist.ts
index ad906f8..d0f9a9f 100644
--- a/src/inhibitors/blacklist/userGlobalBlacklist.ts
+++ b/src/inhibitors/blacklist/userGlobalBlacklist.ts
@@ -12,7 +12,7 @@ export default class UserGlobalBlacklistInhibitor extends BushInhibitor {
public override exec(message: BushMessage | BushSlashMessage): boolean {
if (!message.author) return false;
- if (client.isOwner(message.author) || client.user!.id === message.author.id) return false;
+ if (message.author.isOwner() || client.user!.id === message.author.id) return false;
if (client.cache.global.blacklistedUsers.includes(message.author.id)) {
void client.console.verbose(
'userGlobalBlacklist',
diff --git a/src/inhibitors/blacklist/userGuildBlacklist.ts b/src/inhibitors/blacklist/userGuildBlacklist.ts
index a87e47c..61f670e 100644
--- a/src/inhibitors/blacklist/userGuildBlacklist.ts
+++ b/src/inhibitors/blacklist/userGuildBlacklist.ts
@@ -11,9 +11,8 @@ export default class UserGuildBlacklistInhibitor extends BushInhibitor {
}
public override async exec(message: BushMessage | BushSlashMessage): 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 (!message.inGuild()) return false;
+ if (message.author.isOwner() || message.author.isSuperUser() || client.user!.id === message.author.id) return false;
if ((await message.guild.getSetting('blacklistedUsers'))?.includes(message.author.id)) {
void client.console.verbose(
'userGuildBlacklist',
diff --git a/src/inhibitors/checks/fatal.ts b/src/inhibitors/checks/fatal.ts
index 2521b2f..411357c 100644
--- a/src/inhibitors/checks/fatal.ts
+++ b/src/inhibitors/checks/fatal.ts
@@ -11,7 +11,7 @@ export default class FatalInhibitor extends BushInhibitor {
}
public override async exec(message: BushMessage | BushSlashMessage): Promise<boolean> {
- if (client.isOwner(message.author)) return false;
+ if (message.author.isOwner()) return false;
for (const property in client.cache.global) {
if (!client.cache.global[property as keyof typeof client.cache.global]) {
void client.console.verbose(