roboluke-tasks/app/utils/config.py

75 lines
2.1 KiB
Python
Raw Permalink Normal View History

"""Configuration module."""
2023-04-05 21:57:31 +02:00
import os
from app.utils.helpers import validate_email_syntax
2023-04-05 21:57:31 +02:00
class Config:
"""Configuration module."""
2023-04-05 21:57:31 +02:00
def __init__(self) -> None:
"""Configuration module."""
@property
def environment(self) -> str:
"""Returns the current app lifecycle."""
return os.environ.get("APP_LIFECYCLE", "DEV").upper()
2024-04-21 17:52:55 +02:00
@property
def version(self) -> str:
"""Returns the current app version."""
return os.environ["APP_VERSION"]
2024-04-21 17:52:55 +02:00
2023-04-05 21:57:31 +02:00
@property
def bot_name(self) -> str:
"""Returns the bot name."""
return os.environ["BOT_NAME"]
2023-04-05 21:57:31 +02:00
@property
def webex_token(self) -> str:
"""Returns the Webex API key."""
return os.environ["WEBEX_API_KEY"]
2023-04-05 21:57:31 +02:00
@property
def admin_first_name(self) -> str:
"""Returns the first name of the bot admin."""
return os.environ["ADMIN_FIRST_NAME"]
2023-04-05 21:57:31 +02:00
@property
def admin_emails(self) -> list:
"""Returns a list of admin email addresses."""
return os.environ["ADMIN_EMAIL"].split(",")
2023-04-05 21:57:31 +02:00
@property
def n8n_webhook_url(self) -> str:
"""Returns the n8n webhook URL."""
return os.environ["N8N_WEBHOOK_URL"]
@property
def approved_users(self) -> list:
"""Returns a list of approved users."""
_emails: list[str] = os.environ.get("APPROVED_USERS", "").split(",")
_emails: list[str] = [i.strip() for i in _emails if i]
if not _emails:
return []
emails = [i for i in _emails if validate_email_syntax(i)]
return emails
@property
def approved_rooms(self) -> list:
"""Returns a list of approved rooms."""
_rooms: list[str] = os.environ.get("APPROVED_ROOMS", "").split(",")
rooms: list[str] = [i.strip() for i in _rooms if i]
return rooms
@property
def approved_domains(self) -> list:
"""Returns a list of approved domains."""
_domains: list[str] = os.environ.get("APPROVED_DOMAINS", "").split(",")
domains: list[str] = [i.strip() for i in _domains if i]
return domains
2023-04-05 21:57:31 +02:00
config: Config = Config()