Added listener for when member leaves the user and then sends the logs to the modlogs channel (if user has setup modlogs channel in their server)

pull/8/head
sgoudham 4 years ago
parent a22ef89cc6
commit 7f78420e9f

@ -307,7 +307,7 @@ class Moderation(commands.Cog):
@commands.Cog.listener() @commands.Cog.listener()
async def on_raw_bulk_message_delete(self, payload): async def on_raw_bulk_message_delete(self, payload):
"""Storing Bulk Deleted Messages to Modlogs Channel""" """Sending Bulk Deleted Messages to Modlogs Channel"""
# Get the guild within the cache # Get the guild within the cache
guild = get_modlog_for_guild(str(payload.guild_id)) guild = get_modlog_for_guild(str(payload.guild_id))
@ -318,6 +318,7 @@ class Moderation(commands.Cog):
# Send the embed to the modlogs channel # Send the embed to the modlogs channel
else: else:
# Get the modlogs channel and channel that the messages were deleted in
modlogs_channel = self.bot.get_channel(int(guild)) modlogs_channel = self.bot.get_channel(int(guild))
channel = self.bot.get_channel(payload.channel_id) channel = self.bot.get_channel(payload.channel_id)
@ -331,6 +332,31 @@ class Moderation(commands.Cog):
await modlogs_channel.send(embed=embed) await modlogs_channel.send(embed=embed)
@commands.Cog.listener()
async def on_member_remove(self, member):
"""Sending Members that have left to Modlogs Channel"""
# Get the guild within the cache
guild = get_modlog_for_guild(str(member.guild.id))
# When no modlogs channel is returned, do nothing
if guild is None:
pass
# Send the embed to the modlogs channel
else:
# Get the modlogs channel
modlogs_channel = self.bot.get_channel(int(guild))
embed = Embed(description="{} A.K.A {}".format(member.mention, member),
colour=enso_embedmod_colours,
timestamp=datetime.datetime.utcnow())
embed.set_author(name="Member Left", icon_url=member.avatar_url)
embed.set_thumbnail(url=member.avatar_url)
embed.set_footer(text="ID: {}".format(member.id))
await modlogs_channel.send(embed=embed)
def setup(bot): def setup(bot):
bot.add_cog(Moderation(bot)) bot.add_cog(Moderation(bot))

Loading…
Cancel
Save