1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Administrator-py/extensions/purge.py

83 lines
2.8 KiB
Python
Raw Normal View History

2020-04-08 18:18:04 +02:00
from asyncio import sleep
from discord.ext import commands
from discord import Embed, RawReactionActionEvent
from administrator.check import is_enabled
from administrator.logger import logger
from administrator.utils import event_is_enabled
2020-04-08 18:18:04 +02:00
extension_name = "purge"
logger = logger.getChild(extension_name)
class Purge(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
self.purges = {}
def description(self):
return "Purge all messages between the command and the next add reaction"
2020-04-08 18:18:04 +02:00
@commands.group("purge", pass_context=True)
@is_enabled()
2020-04-08 18:18:04 +02:00
@commands.guild_only()
2020-07-23 21:30:42 +02:00
@commands.has_permissions(manage_messages=True)
2020-04-08 18:18:04 +02:00
async def purge(self, ctx: commands.Context):
if ctx.invoked_subcommand is None:
2020-07-23 21:30:42 +02:00
self.purges[ctx.message.author.id] = ctx.message
await ctx.message.add_reaction("\U0001f44d")
await sleep(2*60)
try:
if self.purges[ctx.message.author.id] == ctx.message:
await ctx.message.clear_reactions()
del self.purges[ctx.message.author.id]
except:
pass
2020-04-08 18:18:04 +02:00
@purge.group("help", pass_context=True)
@commands.guild_only()
async def purge_help(self, ctx: commands.Context):
2020-04-08 18:46:18 +02:00
embed = Embed(title="Purge help")
embed.add_field(name="purge", value="Purge all message delimited by the command to your next reaction",
2020-04-08 18:18:04 +02:00
inline=False)
await ctx.send(embed=embed)
@commands.Cog.listener()
async def on_raw_reaction_add(self, payload: RawReactionActionEvent):
2020-07-23 21:32:43 +02:00
if payload.guild_id:
if not event_is_enabled(self.qualified_name, payload.guild_id):
return
2020-07-23 21:32:43 +02:00
user = self.bot.get_user(payload.user_id)
message = await self.bot.get_guild(payload.guild_id).get_channel(payload.channel_id)\
.fetch_message(payload.message_id)
if user.id in self.purges:
if message.channel == self.purges[user.id].channel:
async with message.channel.typing():
await message.channel.purge(before=self.purges[user.id], after=message,
limit=None)
await self.purges[user.id].delete()
await message.delete()
del self.purges[user.id]
2020-04-08 18:18:04 +02:00
def setup(bot):
logger.info(f"Loading...")
try:
bot.add_cog(Purge(bot))
except Exception as e:
logger.error(f"Error loading: {e}")
else:
logger.info(f"Load successful")
def teardown(bot):
logger.info(f"Unloading...")
try:
bot.remove_cog("Purge")
2020-04-08 18:18:04 +02:00
except Exception as e:
logger.error(f"Error unloading: {e}")
else:
logger.info(f"Unload successful")