fix: implemented better and more generalized error handling for the api
This commit is contained in:
parent
e28ae87bbe
commit
25eaa5c85c
@ -1,9 +1,9 @@
|
|||||||
from python_sponsorblock import SponsorBlock, _get_video_id
|
from python_sponsorblock import SponsorBlock
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
sb = SponsorBlock()
|
sb = SponsorBlock(silent=True)
|
||||||
|
|
||||||
|
|
||||||
print(_get_video_id("dksaödfksöldkföslkafdsölfkas"))
|
print(sb.get_segments("https://yt.artemislena.eu/watch?v=w5GmDRW975g"))
|
||||||
|
|
||||||
|
@ -1,12 +1,38 @@
|
|||||||
import requests
|
import requests
|
||||||
import logging
|
import logging
|
||||||
from urllib.parse import urlparse, urlunparse, parse_qs
|
from urllib.parse import urlparse, urlunparse, parse_qs, urlencode
|
||||||
import re
|
import re
|
||||||
from typing import Optional, List
|
from typing import Optional, List, Dict, Union, Any, Callable
|
||||||
|
import json
|
||||||
|
from functools import wraps
|
||||||
|
|
||||||
from .exceptions import SponsorBlockError, SponsorBlockIdNotFoundError
|
from .exceptions import SponsorBlockError, SponsorBlockIdNotFoundError
|
||||||
from .constants import Segment
|
from .constants import Segment
|
||||||
|
|
||||||
|
|
||||||
|
def error_handling(default: Any) -> Callable:
|
||||||
|
def _decorator(func: Callable) -> Callable:
|
||||||
|
@wraps(func)
|
||||||
|
def _wrapper(self, *args, **kwargs) -> Any:
|
||||||
|
nonlocal default
|
||||||
|
|
||||||
|
try:
|
||||||
|
return func(self, *args, **kwargs)
|
||||||
|
except SponsorBlockError as e:
|
||||||
|
if not self.silent:
|
||||||
|
raise e
|
||||||
|
|
||||||
|
if self._requests_logging_exists and isinstance(e, SponsorBlockConnectionError):
|
||||||
|
return default
|
||||||
|
|
||||||
|
self.logger.error(repr(e))
|
||||||
|
return default
|
||||||
|
|
||||||
|
return _wrapper
|
||||||
|
|
||||||
|
return _decorator
|
||||||
|
|
||||||
|
|
||||||
class SponsorBlock:
|
class SponsorBlock:
|
||||||
def __init__(self, session: requests.Session = None, base_url: str = "https://sponsor.ajay.app", silent: bool = False, _requests_logging_exists: bool = False):
|
def __init__(self, session: requests.Session = None, base_url: str = "https://sponsor.ajay.app", silent: bool = False, _requests_logging_exists: bool = False):
|
||||||
self.base_url: str = base_url
|
self.base_url: str = base_url
|
||||||
@ -36,26 +62,43 @@ class SponsorBlock:
|
|||||||
else:
|
else:
|
||||||
return query_stuff["v"][0]
|
return query_stuff["v"][0]
|
||||||
|
|
||||||
def _request(self, method: str, endpoint: str) -> Optional[requests.Response]:
|
def _request(self, method: str, endpoint: str) -> Union[List, Dict]:
|
||||||
error_message = ""
|
error_message = ""
|
||||||
url = self.base_url + endpoint
|
url = self.base_url + endpoint
|
||||||
|
|
||||||
r: requests.Response = None
|
r: requests.Response = None
|
||||||
try:
|
try:
|
||||||
r = self.session.request(method="GET", url=url)
|
r = self.session.request(method=method, url=url)
|
||||||
except requests.exceptions.Timeout:
|
except requests.exceptions.Timeout:
|
||||||
error_message = f"Request timed out at \"{url}\""
|
error_message = f"Request timed out at \"{url}\""
|
||||||
except requests.exceptions.ConnectionError:
|
except requests.exceptions.ConnectionError:
|
||||||
error_message = f"Couldn't connect to \"{url}\""
|
error_message = f"Couldn't connect to \"{url}\""
|
||||||
|
|
||||||
if error_message != "":
|
if error_message != "":
|
||||||
if not self._requests_logging_exists:
|
raise exceptions.SponsorBlockConnectionError(error_message)
|
||||||
self.logger.error(error_message)
|
|
||||||
if not self.silent:
|
|
||||||
raise exceptions.SponsorBlockConnectionError(error_message)
|
|
||||||
|
|
||||||
return r
|
if r.status_code == 400:
|
||||||
|
self.logger.warning(f"{url} returned 400, meaning I did something wrong.")
|
||||||
|
|
||||||
def get_segments(video: str) -> List[Segment]:
|
data = {}
|
||||||
video_id = _get_video_id
|
try:
|
||||||
r: List[Segment] = []
|
data = r.json()
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
raise exceptions.SponsorBlockConnectionError(f"{r.content} is invalid json.")
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
|
@error_handling(default=[])
|
||||||
|
def get_segments(self, video: str) -> List[Segment]:
|
||||||
|
video_id = self._get_video_id(video)
|
||||||
|
if video_id is None:
|
||||||
|
return []
|
||||||
|
|
||||||
|
# build query parameters
|
||||||
|
query = {
|
||||||
|
"videoID": video_id
|
||||||
|
}
|
||||||
|
|
||||||
|
print(query)
|
||||||
|
r = self._request(method="GET", endpoint="/api/skipSegments?" + urlencode(query))
|
||||||
|
return [constants.Segment(**d) for d in r]
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
class SponsorBlockError(Exception):
|
class SponsorBlockError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class SponsorBlockIdNotFoundError(SponsorBlockError):
|
class SponsorBlockIdNotFoundError(SponsorBlockError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user