feat(moderation): do not run tasks or catch events for guilds that have the cog disabled
This commit is contained in:
parent
1c247636d1
commit
3d2960b37a
1 changed files with 64 additions and 60 deletions
|
@ -11,7 +11,7 @@ from redbot.core.app_commands import Choice
|
||||||
|
|
||||||
|
|
||||||
class Moderation(commands.Cog):
|
class Moderation(commands.Cog):
|
||||||
"""Custom cog moderation cog, meant to copy GalacticBot.
|
"""Custom moderation cog.
|
||||||
Developed by SeaswimmerTheFsh."""
|
Developed by SeaswimmerTheFsh."""
|
||||||
|
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
|
@ -45,7 +45,8 @@ class Moderation(commands.Cog):
|
||||||
guilds: list[discord.Guild] = self.bot.guilds
|
guilds: list[discord.Guild] = self.bot.guilds
|
||||||
try:
|
try:
|
||||||
for guild in guilds:
|
for guild in guilds:
|
||||||
await self.create_guild_table(guild)
|
if not await self.bot.cog_disabled_in_guild(self, guild):
|
||||||
|
await self.create_guild_table(guild)
|
||||||
except ConnectionRefusedError:
|
except ConnectionRefusedError:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -55,52 +56,54 @@ class Moderation(commands.Cog):
|
||||||
@commands.Cog.listener('on_guild_join')
|
@commands.Cog.listener('on_guild_join')
|
||||||
async def db_generate_guild_join(self, guild: discord.Guild):
|
async def db_generate_guild_join(self, guild: discord.Guild):
|
||||||
"""This method prepares the database schema whenever the bot joins a guild."""
|
"""This method prepares the database schema whenever the bot joins a guild."""
|
||||||
conf = await self.check_conf([
|
if not await self.bot.cog_disabled_in_guild(self, guild):
|
||||||
'mysql_address',
|
conf = await self.check_conf([
|
||||||
'mysql_database',
|
'mysql_address',
|
||||||
'mysql_username',
|
'mysql_database',
|
||||||
'mysql_password'
|
'mysql_username',
|
||||||
])
|
'mysql_password'
|
||||||
if conf:
|
])
|
||||||
self.logger.error("Failed to create a table for %s, due to MySQL connection configuration being unset.", guild.id)
|
if conf:
|
||||||
return
|
self.logger.error("Failed to create a table for %s, due to MySQL connection configuration being unset.", guild.id)
|
||||||
try:
|
return
|
||||||
await self.create_guild_table(guild)
|
try:
|
||||||
except ConnectionRefusedError:
|
await self.create_guild_table(guild)
|
||||||
return
|
except ConnectionRefusedError:
|
||||||
|
return
|
||||||
|
|
||||||
@commands.Cog.listener('on_audit_log_entry_create')
|
@commands.Cog.listener('on_audit_log_entry_create')
|
||||||
async def autologger(self, entry: discord.AuditLogEntry):
|
async def autologger(self, entry: discord.AuditLogEntry):
|
||||||
"""This method automatically logs moderations done by users manually ("right clicks")."""
|
"""This method automatically logs moderations done by users manually ("right clicks")."""
|
||||||
if await self.config.guild(entry.guild.id).ignore_other_bots() is True:
|
if not await self.bot.cog_disabled_in_guild(self, entry.guild):
|
||||||
if entry.user.bot or entry.target.bot:
|
if await self.config.guild(entry.guild.id).ignore_other_bots() is True:
|
||||||
return
|
if entry.user.bot or entry.target.bot:
|
||||||
else:
|
return
|
||||||
if entry.user.id == self.bot.user.id:
|
|
||||||
return
|
|
||||||
duration = "NULL"
|
|
||||||
if entry.reason:
|
|
||||||
reason = entry.reason + " (This action was performed without the bot.)"
|
|
||||||
else:
|
|
||||||
reason = "This action was performed without the bot."
|
|
||||||
if entry.action == discord.AuditLogAction.kick:
|
|
||||||
moderation_type = 'KICK'
|
|
||||||
elif entry.action == discord.AuditLogAction.ban:
|
|
||||||
moderation_type = 'BAN'
|
|
||||||
elif entry.action == discord.AuditLogAction.unban:
|
|
||||||
moderation_type = 'UNBAN'
|
|
||||||
elif entry.action == discord.AuditLogAction.member_update:
|
|
||||||
if entry.after.timed_out_until is not None:
|
|
||||||
timed_out_until_aware = entry.after.timed_out_until.replace(tzinfo=timezone.utc)
|
|
||||||
duration_datetime = timed_out_until_aware - datetime.now(tz=timezone.utc)
|
|
||||||
minutes = round(duration_datetime.total_seconds() / 60)
|
|
||||||
duration = timedelta(minutes=minutes)
|
|
||||||
moderation_type = 'MUTE'
|
|
||||||
else:
|
else:
|
||||||
moderation_type = 'UNMUTE'
|
if entry.user.id == self.bot.user.id:
|
||||||
else:
|
return
|
||||||
return
|
duration = "NULL"
|
||||||
await self.mysql_log(entry.guild.id, entry.user.id, moderation_type, entry.target.id, duration, reason)
|
if entry.reason:
|
||||||
|
reason = entry.reason + " (This action was performed without the bot.)"
|
||||||
|
else:
|
||||||
|
reason = "This action was performed without the bot."
|
||||||
|
if entry.action == discord.AuditLogAction.kick:
|
||||||
|
moderation_type = 'KICK'
|
||||||
|
elif entry.action == discord.AuditLogAction.ban:
|
||||||
|
moderation_type = 'BAN'
|
||||||
|
elif entry.action == discord.AuditLogAction.unban:
|
||||||
|
moderation_type = 'UNBAN'
|
||||||
|
elif entry.action == discord.AuditLogAction.member_update:
|
||||||
|
if entry.after.timed_out_until is not None:
|
||||||
|
timed_out_until_aware = entry.after.timed_out_until.replace(tzinfo=timezone.utc)
|
||||||
|
duration_datetime = timed_out_until_aware - datetime.now(tz=timezone.utc)
|
||||||
|
minutes = round(duration_datetime.total_seconds() / 60)
|
||||||
|
duration = timedelta(minutes=minutes)
|
||||||
|
moderation_type = 'MUTE'
|
||||||
|
else:
|
||||||
|
moderation_type = 'UNMUTE'
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
await self.mysql_log(entry.guild.id, entry.user.id, moderation_type, entry.target.id, duration, reason)
|
||||||
|
|
||||||
async def connect(self):
|
async def connect(self):
|
||||||
"""Connects to the MySQL database, and returns a connection object."""
|
"""Connects to the MySQL database, and returns a connection object."""
|
||||||
|
@ -679,24 +682,25 @@ class Moderation(commands.Cog):
|
||||||
db = await self.config.mysql_database()
|
db = await self.config.mysql_database()
|
||||||
guilds: list[discord.Guild] = self.bot.guilds
|
guilds: list[discord.Guild] = self.bot.guilds
|
||||||
for guild in guilds:
|
for guild in guilds:
|
||||||
tempban_query = f"SELECT target_id, moderation_id FROM moderation_{guild.id} WHERE end_timestamp != 0 AND end_timestamp <= %s AND moderation_type = 'TEMPBAN' AND expired = 0"
|
if not await self.bot.cog_disabled_in_guild(self, guild):
|
||||||
try:
|
tempban_query = f"SELECT target_id, moderation_id FROM moderation_{guild.id} WHERE end_timestamp != 0 AND end_timestamp <= %s AND moderation_type = 'TEMPBAN' AND expired = 0"
|
||||||
cursor.execute(tempban_query, (time.time(),))
|
|
||||||
result = cursor.fetchall()
|
|
||||||
except mysql.connector.errors.ProgrammingError:
|
|
||||||
continue
|
|
||||||
target_ids = [row[0] for row in result]
|
|
||||||
moderation_ids = [row[1] for row in result]
|
|
||||||
for target_id, moderation_id in zip(target_ids, moderation_ids):
|
|
||||||
user: discord.User = await self.bot.fetch_user(target_id)
|
|
||||||
await guild.unban(user, reason=f"Automatic unban from case #{moderation_id}")
|
|
||||||
embed = await self.embed_factory('message', guild, f'Automatic unban from case #{moderation_id}', 'unbanned')
|
|
||||||
try:
|
try:
|
||||||
await user.send(embed=embed)
|
cursor.execute(tempban_query, (time.time(),))
|
||||||
except discord.errors.HTTPException:
|
result = cursor.fetchall()
|
||||||
pass
|
except mysql.connector.errors.ProgrammingError:
|
||||||
expiry_query = f"UPDATE `{db}`.`moderation_{guild.id}` SET expired = 1 WHERE (end_timestamp != 0 AND end_timestamp <= %s AND expired = 0) OR (expired = 0 AND resolved = 1)"
|
continue
|
||||||
cursor.execute(expiry_query, (time.time(),))
|
target_ids = [row[0] for row in result]
|
||||||
|
moderation_ids = [row[1] for row in result]
|
||||||
|
for target_id, moderation_id in zip(target_ids, moderation_ids):
|
||||||
|
user: discord.User = await self.bot.fetch_user(target_id)
|
||||||
|
await guild.unban(user, reason=f"Automatic unban from case #{moderation_id}")
|
||||||
|
embed = await self.embed_factory('message', guild, f'Automatic unban from case #{moderation_id}', 'unbanned')
|
||||||
|
try:
|
||||||
|
await user.send(embed=embed)
|
||||||
|
except discord.errors.HTTPException:
|
||||||
|
pass
|
||||||
|
expiry_query = f"UPDATE `{db}`.`moderation_{guild.id}` SET expired = 1 WHERE (end_timestamp != 0 AND end_timestamp <= %s AND expired = 0) OR (expired = 0 AND resolved = 1)"
|
||||||
|
cursor.execute(expiry_query, (time.time(),))
|
||||||
database.commit()
|
database.commit()
|
||||||
cursor.close()
|
cursor.close()
|
||||||
database.close()
|
database.close()
|
||||||
|
|
Loading…
Reference in a new issue