sync strava data from web ui

This commit is contained in:
Davide Scaini
2026-04-06 12:38:41 +02:00
parent ad2710e759
commit 17f36889f3
5 changed files with 605 additions and 34 deletions
+33 -6
View File
@@ -20,11 +20,17 @@ console = Console()
help="URL of the Astro dev server (for the Back link).")
@click.option("--config", "config_path", default=None,
help="Path to extract_config.yaml (reads output.dir from it).")
@click.option("--strava-client-id", default=None, envvar="STRAVA_CLIENT_ID",
help="Strava API client ID (enables Strava sync in the UI). Also reads STRAVA_CLIENT_ID env var.")
@click.option("--strava-client-secret", default=None, envvar="STRAVA_CLIENT_SECRET",
help="Strava API client secret. Also reads STRAVA_CLIENT_SECRET env var.")
def edit(
data_dir: Optional[str],
port: int,
site_url: str,
config_path: Optional[str],
strava_client_id: Optional[str],
strava_client_secret: Optional[str],
) -> None:
"""Start a local web UI for editing activity sidecar files.
@@ -46,6 +52,13 @@ def edit(
)
data = _resolve_data_dir(data_dir, config_path)
# Fall back to extract_config.yaml for Strava credentials
if not strava_client_id or not strava_client_secret:
cfg_strava = _load_config(config_path).get("import", {}).get("strava", {})
strava_client_id = strava_client_id or str(cfg_strava.get("client_id") or "")
strava_client_secret = strava_client_secret or str(cfg_strava.get("client_secret") or "")
console.print(f"Data dir: [cyan]{data}[/cyan]")
console.print(f"Edit UI: [cyan]http://localhost:{port}/edit/<activity-id>[/cyan]")
console.print(f"Site URL: [cyan]{site_url}[/cyan]")
@@ -54,20 +67,34 @@ def edit(
import bincio.edit.server as srv
srv.data_dir = data
srv.site_url = site_url
srv.strava_client_id = strava_client_id or ""
srv.strava_client_secret = strava_client_secret or ""
if strava_client_id:
console.print(f"Strava sync: [green]enabled[/green] (client {strava_client_id})")
else:
console.print("Strava sync: [yellow]disabled[/yellow] (pass --strava-client-id to enable)")
uvicorn.run(srv.app, host="127.0.0.1", port=port, log_level="warning")
def _load_config(config_path: Optional[str]) -> dict:
"""Load extract_config.yaml — explicit path first, then cwd auto-discovery."""
import yaml
for cfg in filter(None, [config_path and Path(config_path), Path("extract_config.yaml")]):
if Path(cfg).exists():
return yaml.safe_load(Path(cfg).read_text()) or {}
return {}
def _resolve_data_dir(explicit: Optional[str], config_path: Optional[str]) -> Path:
if explicit:
return Path(explicit).expanduser().resolve()
if config_path and Path(config_path).exists():
import yaml
raw = yaml.safe_load(Path(config_path).read_text()) or {}
out = raw.get("output", {}).get("dir")
if out:
return Path(out).expanduser().resolve()
raw = _load_config(config_path)
out = raw.get("output", {}).get("dir")
if out:
return Path(out).expanduser().resolve()
default = Path.cwd() / "bincio_data"
if default.exists():