2024-05-03 19:57:20 +03:00
|
|
|
import os
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
|
|
class Config:
|
|
|
|
|
|
|
|
def __init__(self) -> None:
|
|
|
|
|
|
|
|
self.host = os.getenv('HOST') or '0.0.0.0'
|
|
|
|
self.port = int(os.getenv('PORT') or 4009)
|
2024-05-04 09:27:57 +03:00
|
|
|
|
|
|
|
# This directory will be searched for <site>.txt (e.g. yandex.txt)
|
|
|
|
# Cookies are in Netscape CSV format, see yt-dlp docs
|
2024-05-03 19:57:20 +03:00
|
|
|
self.cookies_dir = Path(os.getenv('COOKIES_DIR') or 'cookies')
|
|
|
|
|
2024-05-04 09:27:57 +03:00
|
|
|
self.tmpl = os.path.join(
|
|
|
|
# `artists.0` instead of `artist`, because the latter can contain "feat. ..."
|
|
|
|
os.getenv('ALBUM_PATH_TMPL') or 'music/%(artists.0)s/%(album)s',
|
|
|
|
os.getenv('TRACK_FILE_TMPL') or '%(track)s.%(ext)s',
|
|
|
|
)
|
|
|
|
|
|
|
|
# Proxy URL for yt_proxied downloader (can be used for geo-restricted content)
|
|
|
|
self.yt_proxy = os.getenv('YT_PROXY') or 'http://127.0.0.1:1080'
|
|
|
|
|
2024-05-03 19:57:20 +03:00
|
|
|
|
|
|
|
_config: Config | None = None
|
|
|
|
|
|
|
|
|
|
|
|
def get() -> Config:
|
|
|
|
global _config
|
|
|
|
if _config is None:
|
|
|
|
_config = Config()
|
|
|
|
return _config
|