feat: add library module
This commit is contained in:
156
auditui/library.py
Normal file
156
auditui/library.py
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
"""Library helpers for fetching and formatting Audible data."""
|
||||||
|
|
||||||
|
from typing import Callable, List
|
||||||
|
|
||||||
|
import audible
|
||||||
|
|
||||||
|
|
||||||
|
ProgressCallback = Callable[[str], None]
|
||||||
|
|
||||||
|
|
||||||
|
class LibraryClient:
|
||||||
|
"""Helper for interacting with the Audible library."""
|
||||||
|
|
||||||
|
def __init__(self, client: audible.Client) -> None:
|
||||||
|
self.client = client
|
||||||
|
|
||||||
|
def fetch_all_items(self, on_progress: ProgressCallback | None = None) -> list:
|
||||||
|
"""Fetch all library items from the API."""
|
||||||
|
response_groups = (
|
||||||
|
"contributors,media,product_attrs,product_desc,product_details,"
|
||||||
|
"rating,is_finished,listening_status,percent_complete"
|
||||||
|
)
|
||||||
|
return self._fetch_all_pages(response_groups, on_progress)
|
||||||
|
|
||||||
|
def _fetch_all_pages(
|
||||||
|
self, response_groups: str, on_progress: ProgressCallback | None = None
|
||||||
|
) -> list:
|
||||||
|
"""Fetch all pages of library items from the API."""
|
||||||
|
all_items: List[dict] = []
|
||||||
|
page = 1
|
||||||
|
page_size = 50
|
||||||
|
|
||||||
|
while True:
|
||||||
|
library = self.client.get(
|
||||||
|
path="library",
|
||||||
|
num_results=page_size,
|
||||||
|
page=page,
|
||||||
|
response_groups=response_groups,
|
||||||
|
)
|
||||||
|
|
||||||
|
items = list(library.get("items", []))
|
||||||
|
if not items:
|
||||||
|
break
|
||||||
|
|
||||||
|
all_items.extend(items)
|
||||||
|
if on_progress:
|
||||||
|
on_progress(f"Fetched page {page} ({len(items)} items)...")
|
||||||
|
|
||||||
|
if len(items) < page_size:
|
||||||
|
break
|
||||||
|
|
||||||
|
page += 1
|
||||||
|
|
||||||
|
return all_items
|
||||||
|
|
||||||
|
def extract_title(self, item: dict) -> str:
|
||||||
|
"""Extract title from library item."""
|
||||||
|
product = item.get("product", {})
|
||||||
|
return (
|
||||||
|
product.get("title")
|
||||||
|
or item.get("title")
|
||||||
|
or product.get("asin", "Unknown Title")
|
||||||
|
)
|
||||||
|
|
||||||
|
def extract_authors(self, item: dict) -> str:
|
||||||
|
"""Extract author names from library item."""
|
||||||
|
product = item.get("product", {})
|
||||||
|
authors = product.get("authors") or product.get("contributors") or []
|
||||||
|
if not authors and "authors" in item:
|
||||||
|
authors = item.get("authors", [])
|
||||||
|
|
||||||
|
author_names = [a.get("name", "") for a in authors if isinstance(a, dict)]
|
||||||
|
return ", ".join(author_names) or "Unknown"
|
||||||
|
|
||||||
|
def extract_runtime_minutes(self, item: dict) -> int | None:
|
||||||
|
"""Extract runtime in minutes from library item."""
|
||||||
|
product = item.get("product", {})
|
||||||
|
runtime_fields = [
|
||||||
|
"runtime_length_min",
|
||||||
|
"runtime_length",
|
||||||
|
"vLength",
|
||||||
|
"length",
|
||||||
|
"duration",
|
||||||
|
]
|
||||||
|
|
||||||
|
runtime = None
|
||||||
|
for field in runtime_fields:
|
||||||
|
runtime = product.get(field) or item.get(field)
|
||||||
|
if runtime is not None:
|
||||||
|
break
|
||||||
|
|
||||||
|
if runtime is None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
if isinstance(runtime, dict):
|
||||||
|
return int(runtime.get("min", 0))
|
||||||
|
if isinstance(runtime, (int, float)):
|
||||||
|
return int(runtime)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def extract_progress_info(self, item: dict) -> float | None:
|
||||||
|
"""Extract progress percentage from library item."""
|
||||||
|
percent_complete = item.get("percent_complete")
|
||||||
|
listening_status = item.get("listening_status", {})
|
||||||
|
|
||||||
|
if isinstance(listening_status, dict) and percent_complete is None:
|
||||||
|
percent_complete = listening_status.get("percent_complete")
|
||||||
|
|
||||||
|
return float(percent_complete) if percent_complete is not None else None
|
||||||
|
|
||||||
|
def extract_asin(self, item: dict) -> str | None:
|
||||||
|
"""Extract ASIN from library item."""
|
||||||
|
product = item.get("product", {})
|
||||||
|
return item.get("asin") or product.get("asin")
|
||||||
|
|
||||||
|
def is_finished(self, item: dict) -> bool:
|
||||||
|
"""Check if a library item is finished."""
|
||||||
|
is_finished_flag = item.get("is_finished")
|
||||||
|
percent_complete = item.get("percent_complete")
|
||||||
|
listening_status = item.get("listening_status")
|
||||||
|
|
||||||
|
if isinstance(listening_status, dict):
|
||||||
|
is_finished_flag = is_finished_flag or listening_status.get(
|
||||||
|
"is_finished", False
|
||||||
|
)
|
||||||
|
if percent_complete is None:
|
||||||
|
percent_complete = listening_status.get("percent_complete", 0)
|
||||||
|
|
||||||
|
return bool(is_finished_flag) or (
|
||||||
|
isinstance(percent_complete, (int, float)) and percent_complete >= 100
|
||||||
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def format_duration(
|
||||||
|
value: int | None, unit: str = "minutes", default_none: str | None = None
|
||||||
|
) -> str | None:
|
||||||
|
"""Format duration value into human-readable string."""
|
||||||
|
if value is None or value <= 0:
|
||||||
|
return default_none
|
||||||
|
|
||||||
|
if unit == "seconds":
|
||||||
|
total_minutes = int(value) // 60
|
||||||
|
else:
|
||||||
|
total_minutes = int(value)
|
||||||
|
|
||||||
|
if total_minutes < 60:
|
||||||
|
return f"{total_minutes} minute{'s' if total_minutes != 1 else ''}"
|
||||||
|
|
||||||
|
hours = total_minutes // 60
|
||||||
|
mins = total_minutes % 60
|
||||||
|
if mins == 0:
|
||||||
|
return f"{hours} hour{'s' if hours != 1 else ''}"
|
||||||
|
return (
|
||||||
|
f"{hours} hour{'s' if hours != 1 else ''} "
|
||||||
|
f"{mins} minute{'s' if mins != 1 else ''}"
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user