olgram/settings.py

36 lines
761 B
Python
Raw Normal View History

2021-06-11 21:56:03 +03:00
from abc import ABC
from dotenv import load_dotenv
import os
load_dotenv()
class _Settings(ABC):
@classmethod
def _get_env(cls, parameter: str) -> str:
parameter = os.getenv(parameter, None)
if not parameter:
raise ValueError(f"{parameter} not defined in ENV")
return parameter
class BotSettings(_Settings):
@classmethod
def token(cls) -> str:
return cls._get_env("BOT_TOKEN")
class DatabaseSettings(_Settings):
@classmethod
def user(cls) -> str:
return cls._get_env("POSTGRES_USER")
@classmethod
def password(cls) -> str:
return cls._get_env("POSTGRES_PASSWORD")
@classmethod
def database_name(cls) -> str:
return cls._get_env("POSTGRES_DB")