Files
home-automation/app/config.py
T

64 lines
1.8 KiB
Python
Raw Normal View History

2026-04-19 20:19:58 +02:00
from functools import lru_cache
from pathlib import Path
from pydantic import computed_field
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
app_name: str = "Home Automation Backend (Python)"
app_env: str = "development"
app_debug: bool = False
app_host: str = "0.0.0.0"
app_port: int = 8000
location_database_url: str = "sqlite:///./data/locationRecorder.db"
poo_database_url: str = "sqlite:///./data/pooRecorder.db"
2026-04-19 20:19:58 +02:00
ticktick_client_id: str = ""
ticktick_client_secret: str = ""
ticktick_redirect_uri: str = ""
ticktick_token: str = ""
home_assistant_base_url: str = ""
home_assistant_auth_token: str = ""
2026-04-20 10:11:02 +02:00
home_assistant_timeout_seconds: float = 1.0
2026-04-19 20:19:58 +02:00
home_assistant_action_task_project_id: str = ""
poo_webhook_id: str = ""
poo_sensor_entity_name: str = "sensor.test_poo_status"
poo_sensor_friendly_name: str = "Poo Status"
2026-04-19 20:19:58 +02:00
model_config = SettingsConfigDict(
env_file=".env",
env_file_encoding="utf-8",
case_sensitive=False,
)
@computed_field
@property
def is_development(self) -> bool:
return self.app_env.lower() == "development"
@staticmethod
def _sqlite_path_from_url(database_url: str) -> Path | None:
2026-04-19 20:19:58 +02:00
prefix = "sqlite:///"
if not database_url.startswith(prefix):
2026-04-19 20:19:58 +02:00
return None
raw_path = database_url[len(prefix) :]
2026-04-19 20:19:58 +02:00
return Path(raw_path)
@computed_field
@property
def location_sqlite_path(self) -> Path | None:
return self._sqlite_path_from_url(self.location_database_url)
@computed_field
@property
def poo_sqlite_path(self) -> Path | None:
return self._sqlite_path_from_url(self.poo_database_url)
2026-04-19 20:19:58 +02:00
@lru_cache
def get_settings() -> Settings:
return Settings()