1
0
Fork 0
mirror of https://code.lenaisten.de/Lenaisten/lenaverse-bot.git synced 2024-11-22 15:03:01 +00:00
lenaverse-bot/lenaverse_bot/core/config.py

52 lines
1 KiB
Python
Raw Normal View History

2023-11-19 15:41:19 +00:00
import os
import tomllib
from typing import Self
2023-11-19 16:32:12 +00:00
import discord
2023-11-19 15:41:19 +00:00
from pydantic import BaseModel
2023-11-19 18:01:06 +00:00
2023-11-19 18:36:29 +00:00
class Post(BaseModel):
2023-11-19 23:26:23 +00:00
# users authorized to posts
2023-11-19 18:36:29 +00:00
users: list[int]
2023-11-19 23:26:23 +00:00
# where to put posts
channel: int
2023-11-19 15:41:19 +00:00
2023-11-19 18:36:29 +00:00
def get_channel(
self,
client: discord.Client,
) -> discord.Thread | discord.TextChannel:
2023-11-19 16:32:12 +00:00
"""
Zielkanal für Posts finden
"""
2023-11-19 18:36:29 +00:00
channel = client.get_channel(self.channel)
assert isinstance(channel, discord.Thread | discord.TextChannel)
2023-11-19 16:32:12 +00:00
2023-11-19 18:36:29 +00:00
return channel
2023-11-19 16:32:12 +00:00
2023-11-19 23:26:23 +00:00
class ClubInfo(BaseModel):
linktree: str = ""
join_file: str = "Aufnahmeantrag.pdf"
join_message: str = ""
2023-11-19 15:41:19 +00:00
class Config(BaseModel):
discord_token: str
2023-11-19 16:32:12 +00:00
post: Post
2023-11-19 23:26:23 +00:00
ev_info: ClubInfo
2023-11-19 15:41:19 +00:00
@classmethod
def get(cls) -> Self:
cfg_path = os.getenv(
key="CONFIG_PATH",
default="/usr/local/etc/lenaverse-bot/lenaverse-bot.toml",
)
with open(cfg_path, "rb") as cfg_file:
return cls.model_validate(tomllib.load(cfg_file))
CONFIG = Config.get()