From 4ecbc49a15476c9e42d3a14815e53d5893852065 Mon Sep 17 00:00:00 2001 From: NobleKangaroo Date: Fri, 22 Jan 2021 02:33:35 -0500 Subject: [PATCH] Raise descriptive ExtractorError --- youtube_dl/extractor/funimation.py | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/youtube_dl/extractor/funimation.py b/youtube_dl/extractor/funimation.py index 8bbedca26..4c264fa4c 100644 --- a/youtube_dl/extractor/funimation.py +++ b/youtube_dl/extractor/funimation.py @@ -110,11 +110,24 @@ class FunimationIE(InfoExtractor): headers = {} if self._TOKEN: headers['Authorization'] = 'Token %s' % self._TOKEN - sources = self._download_json( - 'https://www.funimation.com/api/showexperience/%s/' % video_id, - video_id, headers=headers, query={ - 'pinst_id': ''.join([random.choice(string.digits + string.ascii_letters) for _ in range(8)]), - })['items'] + try: + sources = self._download_json( + 'https://www.funimation.com/api/showexperience/%s/' % video_id, + video_id, headers=headers, query={ + 'pinst_id': ''.join([random.choice(string.digits + string.ascii_letters) for _ in range(8)]), + }) + sources = sources['items'] + except KeyError: + if 'errors' in sources: + errors = sources['errors'] + if len(errors) > 0: + error = errors[0] + if 'detail' in error: + detail = error['detail'] + raise ExtractorError('%s said: %s' % ( + self.IE_NAME, detail), expected=True) + else: + raise ExtractorError(error, expected=True) except ExtractorError as e: if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403: error = self._parse_json(e.cause.read(), video_id)['errors'][0]