mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* update RC dep * welp 100% tested * fix import * 120% tested * Call _early_init even earlier Not really in scope of this PR but the original was merged before I could share any feedback. * explicitly import getLogger Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
89 lines
3.0 KiB
Python
89 lines
3.0 KiB
Python
import json
|
|
from pathlib import Path
|
|
|
|
from typing import TYPE_CHECKING, Mapping, Optional, Union
|
|
|
|
import aiohttp
|
|
from red_commons.logging import getLogger
|
|
|
|
from redbot.core import Config
|
|
from redbot.core.bot import Red
|
|
from redbot.core.commands import Cog
|
|
from redbot.core.i18n import Translator
|
|
|
|
from ..errors import YouTubeApiError
|
|
|
|
if TYPE_CHECKING:
|
|
from .. import Audio
|
|
|
|
log = getLogger("red.cogs.Audio.api.YouTube")
|
|
_ = Translator("Audio", Path(__file__))
|
|
SEARCH_ENDPOINT = "https://www.googleapis.com/youtube/v3/search"
|
|
|
|
|
|
class YouTubeWrapper:
|
|
"""Wrapper for the YouTube Data API."""
|
|
|
|
def __init__(
|
|
self, bot: Red, config: Config, session: aiohttp.ClientSession, cog: Union["Audio", Cog]
|
|
):
|
|
self.bot = bot
|
|
self.config = config
|
|
self.session = session
|
|
self.api_key: Optional[str] = None
|
|
self._token: Mapping[str, str] = {}
|
|
self.cog = cog
|
|
|
|
async def update_token(self, new_token: Mapping[str, str]):
|
|
self._token = new_token
|
|
|
|
async def _get_api_key(
|
|
self,
|
|
) -> str:
|
|
"""Get the stored youtube token."""
|
|
if not self._token:
|
|
self._token = await self.bot.get_shared_api_tokens("youtube")
|
|
self.api_key = self._token.get("api_key", "")
|
|
return self.api_key if self.api_key is not None else ""
|
|
|
|
async def get_call(self, query: str) -> Optional[str]:
|
|
"""Make a Get call to youtube data api."""
|
|
params = {
|
|
"q": query,
|
|
"part": "id",
|
|
"key": await self._get_api_key(),
|
|
"maxResults": 1,
|
|
"type": "video",
|
|
}
|
|
async with self.session.request("GET", SEARCH_ENDPOINT, params=params) as r:
|
|
if r.status == 400:
|
|
if r.reason == "Bad Request":
|
|
raise YouTubeApiError(
|
|
_(
|
|
"Your YouTube Data API token is invalid.\n"
|
|
"Check the YouTube API key again and follow the instructions "
|
|
"at `{prefix}audioset youtubeapi`."
|
|
)
|
|
)
|
|
return None
|
|
elif r.status == 404:
|
|
return None
|
|
elif r.status == 403:
|
|
if r.reason in ["Forbidden", "quotaExceeded"]:
|
|
raise YouTubeApiError(
|
|
_(
|
|
"YouTube API error code: 403\nYour YouTube API key may have "
|
|
"reached the account's query limit for today. Please check "
|
|
"<https://developers.google.com/youtube/v3/getting-started#quota> "
|
|
"for more information."
|
|
)
|
|
)
|
|
return None
|
|
else:
|
|
search_response = await r.json(loads=json.loads)
|
|
for search_result in search_response.get("items", []):
|
|
if search_result["id"]["kind"] == "youtube#video":
|
|
return f"https://www.youtube.com/watch?v={search_result['id']['videoId']}"
|
|
|
|
return None
|