System Gen86 @ 2025-07-24-20:32:00 by jonas@monolith

This commit is contained in:
2025-07-24 20:32:00 +02:00
parent 9a641f55cd
commit 680378e691
3 changed files with 38 additions and 21 deletions

View File

@@ -5,6 +5,7 @@ from typing import List
from os import getenv
from sys import argv
from xdg.BaseDirectory import xdg_cache_home
from json import loads
@dataclass
@@ -13,6 +14,19 @@ class Config:
client_id: str | None = None
client_secret: str | None = None
@staticmethod
def from_file(path: Path):
if not path.exists():
raise FileNotFoundError(f"Configuration file {path} does not exist.")
with open(path, "r") as f:
data = loads(f.read())
return Config(
cache_file=Path(data.get("cacheFile", Config.cache_file)),
client_id=data.get("clientId", Config.client_id),
client_secret=data.get("clientSecret", Config.client_secret),
)
def load_config(args: List[str] = argv[1:]) -> Config:
parser = ArgumentParser(description="Spotify CLI Tool")
@@ -37,14 +51,12 @@ def load_config(args: List[str] = argv[1:]) -> Config:
ns = parser.parse_args(args)
cfg = Config(
cache_file=ns.cache_file,
client_id=ns.client_id,
client_secret=ns.client_secret,
)
cfg = Config()
if (cfg_file := getenv("SPOTIFY_SHORTCUTS_CONFIG", None)) != None:
cfg = Config.from_file(Path(cfg_file))
return Config(
cache_file=Path(getenv("SPOTIFY_SHORTCUTS_CACHE_FILE", cfg.cache_file)),
client_id=getenv("SPOTIFY_SHORTCUTS_CLIENT_ID", cfg.client_id),
client_secret=getenv("SPOTIFY_SHORTCUTS_CLIENT_SECRET", cfg.client_secret),
cache_file=ns.cache_file or cfg.cache_file,
client_id=ns.client_id or cfg.client_id,
client_secret=ns.client_secret or cfg.client_secret,
)