- FastAPI-Backend mit vollständiger ABS v2.x API-Kompatibilität - SQLAlchemy-Models: User, Library, LibraryItem, BookFile, Chapter, Podcast, PodcastEpisode, MediaProgress, Bookmark, PlaybackSession - Auth: JWT-Login (/login, /logout, /api/authorize) - Library + Items Endpoints inkl. camelCase ABS-Response-Format - HLS-Streaming via FFmpeg (POST /api/items/:id/play, Session-Sync) - Me/Progress Endpoints + Lesezeichen - User-Management + Server-Settings (Admin) - Library-Scanner (MP3/WAV Discovery, Hintergrund-Task) - File Watcher (watchdog, 30s Debounce) - Matching-Skelett (MusicBrainz, OpenLibrary, Google Books – Phase 5) - Docker-Setup: backend (Python 3.12+FFmpeg), frontend (React/Vite), nginx Reverse-Proxy auf Port 3000 - setup.sh: Installiert Docker auf Debian/Ubuntu, richtet .env ein Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
"""Google Books-Matching — Phase 5."""
|
|
import httpx
|
|
from .base import MatchResult
|
|
|
|
GB_BASE = "https://www.googleapis.com/books/v1"
|
|
|
|
|
|
async def search_google_books(title: str, author: str | None = None) -> list[MatchResult]:
|
|
q = f'intitle:"{title}"'
|
|
if author:
|
|
q += f' inauthor:"{author}"'
|
|
|
|
async with httpx.AsyncClient(timeout=10) as client:
|
|
resp = await client.get(f"{GB_BASE}/volumes", params={"q": q, "maxResults": 5, "langRestrict": "de"})
|
|
resp.raise_for_status()
|
|
data = resp.json()
|
|
|
|
results = []
|
|
for item in data.get("items", []):
|
|
vol = item.get("volumeInfo", {})
|
|
authors = vol.get("authors", [])
|
|
results.append(
|
|
MatchResult(
|
|
source="google_books",
|
|
source_id=item.get("id", ""),
|
|
title=vol.get("title", title),
|
|
author=authors[0] if authors else None,
|
|
description=vol.get("description"),
|
|
publisher=vol.get("publisher"),
|
|
publish_year=int(vol.get("publishedDate", "0")[:4]) if vol.get("publishedDate") else None,
|
|
language=vol.get("language"),
|
|
confidence=0.5,
|
|
)
|
|
)
|
|
return results
|