mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
from typing import List
|
|
from discord.ext.commands import Context
|
|
from discord import Client, Message, Embed
|
|
from Config.Singleton import Singleton
|
|
|
|
|
|
class Cleaner(Singleton):
|
|
def __init__(self, bot: Client = None) -> None:
|
|
if not super().created:
|
|
self.__bot = bot
|
|
self.__clean_str = 'Uploader:'
|
|
|
|
def set_bot(self, bot: Client) -> None:
|
|
self.__bot = bot
|
|
|
|
async def clean_messages(self, ctx: Context, quant: int) -> None:
|
|
if self.__bot is None:
|
|
return
|
|
|
|
last_messages: List[Message] = await ctx.channel.history(limit=quant).flatten()
|
|
|
|
for message in last_messages:
|
|
try:
|
|
if message.author == self.__bot.user:
|
|
if len(message.embeds) > 0:
|
|
embed: Embed = message.embeds[0]
|
|
if len(embed.fields) > 0:
|
|
if embed.fields[0].name == self.__clean_str:
|
|
await message.delete()
|
|
except Exception as e:
|
|
print(f'DEVELOPER NOTE -> Error cleaning messages {e}')
|
|
continue
|