Discord/cogs/logger.py

99 lines
3.3 KiB
Python
Raw Normal View History

2024-12-27 21:16:30 +02:00
import logging
from typing import Dict, Any
2024-12-27 21:16:30 +02:00
from discord import Member, Message, TextChannel, MessageType
2023-05-06 18:08:35 +03:00
from discord import utils as ds_utils
from discord.ext import commands
2024-12-26 20:12:50 +02:00
from libbot.utils import config_get
2023-05-06 18:08:35 +03:00
2024-12-17 23:14:06 +02:00
from classes.holo_bot import HoloBot
2023-05-06 18:08:35 +03:00
from modules.database import col_users
2024-12-27 21:16:30 +02:00
logger = logging.getLogger(__name__)
2023-05-06 18:08:35 +03:00
class Logger(commands.Cog):
2024-12-17 23:14:06 +02:00
def __init__(self, client: HoloBot):
self.client: HoloBot = client
2023-05-06 18:08:35 +03:00
@commands.Cog.listener()
async def on_message(self, message: Message):
"""Message listener. All actions on messages remain here for now."""
if (
(message.author != self.client.user)
2024-12-16 00:21:41 +02:00
and (message.author.bot is False)
and (message.author.system is False)
):
2024-12-16 17:25:35 +02:00
if (await col_users.find_one({"user": message.author.id})) is None:
user: Dict[str, Any] = {}
defaults: Dict[str, Any] = await config_get("user", "defaults")
2023-05-06 18:08:35 +03:00
user["user"] = message.author.id
for key in defaults:
user[key] = defaults[key]
2024-12-16 17:25:35 +02:00
await col_users.insert_one(document=user)
2023-05-06 18:08:35 +03:00
2024-12-27 21:16:30 +02:00
if (
(message.type == MessageType.thread_created)
and (message.channel is not None)
and (
await col_users.count_documents({"customchannel": message.channel.id})
> 0
)
):
try:
logger.info(
"Deleting the thread creation message in a custom channel %s",
message.channel.id,
)
await message.delete()
except Exception as exc:
logger.warning(
"Could not delete the thread creation message in a custom channel %s due to %s",
message.channel.id,
exc,
)
2024-12-27 21:16:30 +02:00
2023-05-06 18:08:35 +03:00
@commands.Cog.listener()
async def on_member_join(self, member: Member) -> None:
"""Member join handler. All actions on member join remain here for now."""
welcome_chan: TextChannel | None = ds_utils.get(
self.client.get_guild(await config_get("guild")).channels,
id=await config_get("welcome", "channels", "text"),
)
rules_chan: TextChannel | None = ds_utils.get(
self.client.get_guild(await config_get("guild")).channels,
id=await config_get("rules", "channels", "text"),
)
2024-12-27 21:16:30 +02:00
if welcome_chan is None:
logger.warning("Could not find a welcome channel by its id")
if (
(member != self.client.user)
2024-12-16 00:21:41 +02:00
and (member.bot is False)
and (member.system is False)
):
await welcome_chan.send(
content=(await config_get("welcome", "messages")).format(
mention=member.mention, rules=rules_chan.mention
)
)
2023-05-06 18:08:35 +03:00
2024-12-16 17:25:35 +02:00
if (await col_users.find_one({"user": member.id})) is None:
user: Dict[str, Any] = {}
defaults: Dict[str, Any] = await config_get("user", "defaults")
2023-05-06 18:08:35 +03:00
user["user"] = member.id
for key in defaults:
2023-05-06 19:31:23 +03:00
user[key] = defaults[key]
2024-12-16 17:25:35 +02:00
await col_users.insert_one(document=user)
2024-06-23 13:05:03 +03:00
2024-12-17 23:14:06 +02:00
def setup(client: HoloBot) -> None:
2024-06-23 13:05:03 +03:00
client.add_cog(Logger(client))