Implemented basic guild config, improved PycordUser and PycordGuild, fixed PycordBut, added stubs for events

This commit is contained in:
2025-04-18 18:17:35 +02:00
parent 691dd1c958
commit f7fd81f299
5 changed files with 297 additions and 19 deletions

View File

@@ -1,17 +1,20 @@
import logging
from logging import Logger
from typing import Any
from discord import User
from discord import User, Guild
from libbot.cache.classes import CacheMemcached, CacheRedis
from libbot.cache.manager import create_cache_client
from libbot.pycord.classes import PycordBot as LibPycordBot
from classes import PycordUser
from classes import PycordUser, PycordGuild
from modules.logging_utils import get_logger
logger: Logger = logging.getLogger(__name__)
logger: Logger = get_logger(__name__)
class PycordBot(LibPycordBot):
cache: CacheMemcached | CacheRedis | None = None
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
@@ -24,6 +27,10 @@ class PycordBot(LibPycordBot):
# i18n formats than provided by libbot
self._ = self._modified_string_getter
def _set_cache_engine(self) -> None:
if "cache" in self.config and self.config["cache"]["type"] is not None:
self.cache = create_cache_client(self.config, self.config["cache"]["type"])
def _modified_string_getter(self, key: str, *args: str, locale: str | None = None) -> Any:
"""This method exists because of the different i18n formats than provided by libbot.
It splits "-" and takes the first part of the provided locale to make complex language codes
@@ -53,6 +60,24 @@ class PycordBot(LibPycordBot):
else await PycordUser.from_id(user.id, cache=self.cache)
)
async def find_guild(self, guild: int | Guild) -> PycordGuild:
"""Find Guild by its ID or Guild object.
Args:
guild (int | Guild): ID or User object to extract ID from
Returns:
PycordGuild: Guild object
Raises:
GuildNotFoundException: Guild was not found and creation was not allowed
"""
return (
await PycordGuild.from_id(guild, cache=self.cache)
if isinstance(guild, int)
else await PycordGuild.from_id(guild.id, cache=self.cache)
)
async def start(self, *args: Any, **kwargs: Any) -> None:
await super().start(*args, **kwargs)