Season selection is now switchable via a view toggle (persisted): poster RAIL (scrollable season cards w/ coverage), TIMELINE band (segments sized by episode count, filled by owned), TABS (pills), and the LIST dropdown. All drive the same selection; episodes fade in on change. - Watchlist button is now REAL: toggles shows.monitored via POST /api/video/monitor (set_monitored), reflects 'In Watchlist' state. show_detail returns monitored. - 'Get Missing' + a 'Missing only' toolbar toggle filter the episode list to unowned episodes (actual downloading is the future acquisition subsystem). Seam tests for the monitor endpoint + bad-input guards; shell hooks updated.
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
"""Video detail payloads (drill-in pages).
|
|
|
|
GET /api/video/detail/show/<id> → show + seasons→episodes tree (owned roll-ups)
|
|
GET /api/video/detail/movie/<id> → movie + owned/file info
|
|
|
|
Reads only video.db; isolated from the music API.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from flask import jsonify, request
|
|
|
|
from utils.logging_config import get_logger
|
|
|
|
logger = get_logger("video_api.detail")
|
|
|
|
|
|
def register_routes(bp):
|
|
@bp.route("/monitor", methods=["POST"])
|
|
def video_set_monitor():
|
|
from . import get_video_db
|
|
body = request.get_json(silent=True) or {}
|
|
kind, item_id = body.get("kind"), body.get("id")
|
|
if kind not in ("movie", "show") or not isinstance(item_id, int):
|
|
return jsonify({"error": "bad request"}), 400
|
|
ok = get_video_db().set_monitored(kind, item_id, bool(body.get("monitored")))
|
|
if not ok:
|
|
return jsonify({"error": "not found"}), 404
|
|
return jsonify({"success": True, "monitored": bool(body.get("monitored"))})
|
|
|
|
@bp.route("/detail/show/<int:show_id>", methods=["GET"])
|
|
def video_show_detail(show_id):
|
|
from . import get_video_db
|
|
data = get_video_db().show_detail(show_id)
|
|
if not data:
|
|
return jsonify({"error": "not found"}), 404
|
|
return jsonify(data)
|
|
|
|
@bp.route("/detail/movie/<int:movie_id>", methods=["GET"])
|
|
def video_movie_detail(movie_id):
|
|
from . import get_video_db
|
|
data = get_video_db().movie_detail(movie_id)
|
|
if not data:
|
|
return jsonify({"error": "not found"}), 404
|
|
return jsonify(data)
|