api/endpoints/yt.py

44 lines
1.4 KiB
Python
Raw Normal View History

2024-08-13 10:50:11 -04:00
#!/usr/bin/env python3.12
import importlib
from fastapi import FastAPI
from pydantic import BaseModel
2025-02-11 20:01:07 -05:00
from typing import Optional
2025-02-11 11:19:52 -05:00
from .constructors import ValidYTSearchRequest
2024-08-13 10:50:11 -04:00
class YT(FastAPI):
"""YT Endpoints"""
2025-02-14 16:07:24 -05:00
def __init__(self, app: FastAPI, util, constants) -> None: # pylint: disable=super-init-not-called
2024-08-13 10:50:11 -04:00
self.app = app
self.util = util
self.constants = constants
self.ytsearch = importlib.import_module("youtube_search_async").YoutubeSearch()
2025-02-11 20:01:07 -05:00
self.endpoints: dict = {
2025-02-05 20:23:06 -05:00
"yt/search": self.yt_video_search_handler,
2024-08-13 10:50:11 -04:00
#tbd
}
for endpoint, handler in self.endpoints.items():
2025-01-29 15:48:47 -05:00
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
2025-02-05 20:23:06 -05:00
include_in_schema=True)
2024-08-13 10:50:11 -04:00
2025-02-11 20:01:07 -05:00
async def yt_video_search_handler(self, data: ValidYTSearchRequest) -> dict:
2024-08-13 10:50:11 -04:00
"""
Search for YT Video by Title (closest match returned)
2025-02-05 20:23:06 -05:00
- **t**: Title to search
2024-08-13 10:50:11 -04:00
"""
2025-02-11 20:01:07 -05:00
title: str = data.t
yts_res: Optional[list[dict]] = await self.ytsearch.search(title)
if not yts_res:
return {
'err': True,
'errorText': 'No result.',
}
yt_video_id: str|bool = yts_res[0].get('id', False)
2024-08-13 10:50:11 -04:00
return {
'video_id': yt_video_id,
'extras': yts_res[0]
2025-01-11 20:59:10 -05:00
}