Skip to content

Commit

Permalink
[theplatform] Improve error detection (#13222)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw authored and lkho committed Dec 24, 2018
1 parent 512fdf6 commit ec56b07
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions youtube_dl/extractor/theplatform.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,17 @@ def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL d
smil_url, video_id, note=note, query={'format': 'SMIL'},
headers=self.geo_verification_headers())
error_element = find_xpath_attr(meta, _x('.//smil:ref'), 'src')
if error_element is not None and error_element.attrib['src'].startswith(
'http://link.theplatform.%s/s/errorFiles/Unavailable.' % self._TP_TLD):
raise ExtractorError(error_element.attrib['abstract'], expected=True)
if error_element is not None:
exception = find_xpath_attr(
error_element, _x('.//smil:param'), 'name', 'exception')
if exception is not None:
if exception.get('value') == 'GeoLocationBlocked':
self.raise_geo_restricted(error_element.attrib['abstract'])
elif error_element.attrib['src'].startswith(
'http://link.theplatform.%s/s/errorFiles/Unavailable.'
% self._TP_TLD):
raise ExtractorError(
error_element.attrib['abstract'], expected=True)

smil_formats = self._parse_smil_formats(
meta, smil_url, video_id, namespace=default_ns,
Expand Down

0 comments on commit ec56b07

Please sign in to comment.