175 lines
6.1 KiB
Python
175 lines
6.1 KiB
Python
from typing import List, Any
|
||
|
||
from fastapi import APIRouter, Depends
|
||
|
||
from app import schemas
|
||
from app.chain.tmdb import TmdbChain
|
||
from app.core.context import MediaInfo
|
||
from app.core.security import verify_token
|
||
from app.schemas.types import MediaType
|
||
|
||
router = APIRouter()
|
||
|
||
|
||
@router.get("/seasons/{tmdbid}", summary="TMDB所有季", response_model=List[schemas.TmdbSeason])
|
||
def tmdb_seasons(tmdbid: int, _: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据TMDBID查询themoviedb所有季信息
|
||
"""
|
||
seasons_info = TmdbChain().tmdb_seasons(tmdbid=tmdbid)
|
||
if not seasons_info:
|
||
return []
|
||
else:
|
||
return seasons_info
|
||
|
||
|
||
@router.get("/similar/{tmdbid}/{type_name}", summary="类似电影/电视剧", response_model=List[schemas.MediaInfo])
|
||
def tmdb_similar(tmdbid: int,
|
||
type_name: str,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据TMDBID查询类似电影/电视剧,type_name: 电影/电视剧
|
||
"""
|
||
mediatype = MediaType(type_name)
|
||
if mediatype == MediaType.MOVIE:
|
||
tmdbinfos = TmdbChain().movie_similar(tmdbid=tmdbid)
|
||
elif mediatype == MediaType.TV:
|
||
tmdbinfos = TmdbChain().tv_similar(tmdbid=tmdbid)
|
||
else:
|
||
return []
|
||
if not tmdbinfos:
|
||
return []
|
||
else:
|
||
return [MediaInfo(tmdb_info=tmdbinfo).to_dict() for tmdbinfo in tmdbinfos]
|
||
|
||
|
||
@router.get("/recommend/{tmdbid}/{type_name}", summary="推荐电影/电视剧", response_model=List[schemas.MediaInfo])
|
||
def tmdb_recommend(tmdbid: int,
|
||
type_name: str,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据TMDBID查询推荐电影/电视剧,type_name: 电影/电视剧
|
||
"""
|
||
mediatype = MediaType(type_name)
|
||
if mediatype == MediaType.MOVIE:
|
||
tmdbinfos = TmdbChain().movie_recommend(tmdbid=tmdbid)
|
||
elif mediatype == MediaType.TV:
|
||
tmdbinfos = TmdbChain().tv_recommend(tmdbid=tmdbid)
|
||
else:
|
||
return []
|
||
if not tmdbinfos:
|
||
return []
|
||
else:
|
||
return [MediaInfo(tmdb_info=tmdbinfo).to_dict() for tmdbinfo in tmdbinfos]
|
||
|
||
|
||
@router.get("/credits/{tmdbid}/{type_name}", summary="演员阵容", response_model=List[schemas.TmdbPerson])
|
||
def tmdb_credits(tmdbid: int,
|
||
type_name: str,
|
||
page: int = 1,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据TMDBID查询演员阵容,type_name: 电影/电视剧
|
||
"""
|
||
mediatype = MediaType(type_name)
|
||
if mediatype == MediaType.MOVIE:
|
||
tmdbinfos = TmdbChain().movie_credits(tmdbid=tmdbid, page=page)
|
||
elif mediatype == MediaType.TV:
|
||
tmdbinfos = TmdbChain().tv_credits(tmdbid=tmdbid, page=page)
|
||
else:
|
||
return []
|
||
if not tmdbinfos:
|
||
return []
|
||
else:
|
||
return [schemas.TmdbPerson(**tmdbinfo) for tmdbinfo in tmdbinfos]
|
||
|
||
|
||
@router.get("/person/{person_id}", summary="人物详情", response_model=schemas.TmdbPerson)
|
||
def tmdb_person(person_id: int,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据人物ID查询人物详情
|
||
"""
|
||
tmdbinfo = TmdbChain().person_detail(person_id=person_id)
|
||
if not tmdbinfo:
|
||
return schemas.TmdbPerson()
|
||
else:
|
||
return schemas.TmdbPerson(**tmdbinfo)
|
||
|
||
|
||
@router.get("/person/credits/{person_id}", summary="人物参演作品", response_model=List[schemas.MediaInfo])
|
||
def tmdb_person_credits(person_id: int,
|
||
page: int = 1,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据人物ID查询人物参演作品
|
||
"""
|
||
tmdbinfo = TmdbChain().person_credits(person_id=person_id, page=page)
|
||
if not tmdbinfo:
|
||
return []
|
||
else:
|
||
return [MediaInfo(tmdb_info=tmdbinfo).to_dict() for tmdbinfo in tmdbinfo]
|
||
|
||
|
||
@router.get("/movies", summary="TMDB电影", response_model=List[schemas.MediaInfo])
|
||
def tmdb_movies(sort_by: str = "popularity.desc",
|
||
with_genres: str = "",
|
||
with_original_language: str = "",
|
||
page: int = 1,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
浏览TMDB电影信息
|
||
"""
|
||
movies = TmdbChain().tmdb_discover(mtype=MediaType.MOVIE,
|
||
sort_by=sort_by,
|
||
with_genres=with_genres,
|
||
with_original_language=with_original_language,
|
||
page=page)
|
||
if not movies:
|
||
return []
|
||
return [MediaInfo(tmdb_info=movie).to_dict() for movie in movies]
|
||
|
||
|
||
@router.get("/tvs", summary="TMDB剧集", response_model=List[schemas.MediaInfo])
|
||
def tmdb_tvs(sort_by: str = "popularity.desc",
|
||
with_genres: str = "",
|
||
with_original_language: str = "",
|
||
page: int = 1,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
浏览TMDB剧集信息
|
||
"""
|
||
tvs = TmdbChain().tmdb_discover(mtype=MediaType.TV,
|
||
sort_by=sort_by,
|
||
with_genres=with_genres,
|
||
with_original_language=with_original_language,
|
||
page=page)
|
||
if not tvs:
|
||
return []
|
||
return [MediaInfo(tmdb_info=tv).to_dict() for tv in tvs]
|
||
|
||
|
||
@router.get("/trending", summary="TMDB流行趋势", response_model=List[schemas.MediaInfo])
|
||
def tmdb_trending(page: int = 1,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
浏览TMDB剧集信息
|
||
"""
|
||
infos = TmdbChain().tmdb_trending(page=page)
|
||
if not infos:
|
||
return []
|
||
return [MediaInfo(tmdb_info=info).to_dict() for info in infos]
|
||
|
||
|
||
@router.get("/{tmdbid}/{season}", summary="TMDB季所有集", response_model=List[schemas.TmdbEpisode])
|
||
def tmdb_season_episodes(tmdbid: int, season: int,
|
||
_: schemas.TokenPayload = Depends(verify_token)) -> Any:
|
||
"""
|
||
根据TMDBID查询某季的所有信信息
|
||
"""
|
||
episodes_info = TmdbChain().tmdb_episodes(tmdbid=tmdbid, season=season)
|
||
if not episodes_info:
|
||
return []
|
||
else:
|
||
return episodes_info
|