mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:43:20 +00:00
[go90] detect geo restriction error and pass geo verification headers(closes #16874)
This commit is contained in:
parent
973b6ceebb
commit
8cee692b8b
|
@ -4,6 +4,7 @@
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..compat import compat_HTTPError
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
determine_ext,
|
determine_ext,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
|
@ -28,14 +29,27 @@ class Go90IE(InfoExtractor):
|
||||||
'age_limit': 14,
|
'age_limit': 14,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
_GEO_BYPASS = False
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
video_data = self._download_json(
|
|
||||||
'https://www.go90.com/api/view/items/' + video_id,
|
try:
|
||||||
video_id, headers={
|
headers = self.geo_verification_headers()
|
||||||
|
headers.update({
|
||||||
'Content-Type': 'application/json; charset=utf-8',
|
'Content-Type': 'application/json; charset=utf-8',
|
||||||
}, data=b'{"client":"web","device_type":"pc"}')
|
})
|
||||||
|
video_data = self._download_json(
|
||||||
|
'https://www.go90.com/api/view/items/' + video_id, video_id,
|
||||||
|
headers=headers, data=b'{"client":"web","device_type":"pc"}')
|
||||||
|
except ExtractorError as e:
|
||||||
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
|
||||||
|
message = self._parse_json(e.cause.read().decode(), None)['error']['message']
|
||||||
|
if 'region unavailable' in message:
|
||||||
|
self.raise_geo_restricted(countries=['US'])
|
||||||
|
raise ExtractorError(message, expected=True)
|
||||||
|
raise
|
||||||
|
|
||||||
if video_data.get('requires_drm'):
|
if video_data.get('requires_drm'):
|
||||||
raise ExtractorError('This video is DRM protected.', expected=True)
|
raise ExtractorError('This video is DRM protected.', expected=True)
|
||||||
main_video_asset = video_data['main_video_asset']
|
main_video_asset = video_data['main_video_asset']
|
||||||
|
|
Loading…
Reference in a new issue