Restructure into backend/ and frontend/ subprojects

- backend/ uses proper Python src layout (src/media_library_viewer_api/)
  with pyproject.toml, hatchling build, and PYTHONPATH=src convention
- frontend/ is a Vite + React + TypeScript SPA
- archive/ preserves the original Streamlit prototype for reference
- Cleaned up root to only contain docs, license, and subproject dirs
- Updated README for the new dual-subproject architecture
This commit is contained in:
2026-04-30 21:48:46 +02:00
parent 3c432473e5
commit 51b10438a9
47 changed files with 127 additions and 130 deletions
@@ -0,0 +1,67 @@
"""Files router — directory listing, ffprobe, stat, path resolution."""
from __future__ import annotations
import json
from typing import Any
from fastapi import APIRouter, Depends, Query, HTTPException
from media_library_viewer_api.dependencies import get_ssh_client
from media_library_viewer_api.clients.ssh import RemoteSSHClient
from media_library_viewer_api.config import get_settings
from media_library_viewer_api.path_utils import resolve_remote_media_path
router = APIRouter(prefix="/api/files", tags=["files"])
@router.get("/list")
def list_directory(
path: str = Query(..., description="Remote directory path to list"),
ssh: RemoteSSHClient = Depends(get_ssh_client),
) -> dict[str, Any]:
"""List a remote directory."""
result = ssh.list_dir(path)
if result.exit_status != 0:
raise HTTPException(status_code=400, detail=result.stderr or result.stdout or "Failed to list directory")
entries = json.loads(result.stdout)
return {
"path": path,
"entries": entries,
"count": len(entries),
}
@router.get("/ffprobe")
def get_ffprobe(
path: str = Query(..., description="Remote file path to probe"),
ssh: RemoteSSHClient = Depends(get_ssh_client),
) -> dict[str, Any]:
"""Run ffprobe on a remote file and return parsed JSON."""
try:
data = ssh.ffprobe_json(path)
except RuntimeError as exc:
raise HTTPException(status_code=400, detail=str(exc))
return data
@router.get("/stat")
def get_stat(
path: str = Query(..., description="Remote path to stat"),
ssh: RemoteSSHClient = Depends(get_ssh_client),
) -> dict[str, str]:
"""Run stat on a remote path."""
result = ssh.stat_path(path)
if result.exit_status != 0:
raise HTTPException(status_code=400, detail=result.stderr or result.stdout or "stat failed")
return {"path": path, "output": result.stdout}
@router.get("/resolve-path")
def resolve_path(
path: str = Query(..., description="Jellyfin path to resolve to SSH path"),
) -> dict[str, str]:
"""Resolve a Jellyfin path to its SSH-visible equivalent."""
settings = get_settings()
resolved = resolve_remote_media_path(path, settings.media_root, settings.path_prefix)
return {"original": path, "resolved": resolved}