[viki] Improve geo restriction detection
This commit is contained in:
parent
80b59020e0
commit
5d3fbf77d9
1 changed files with 5 additions and 1 deletions
|
@ -27,6 +27,7 @@ class VikiBaseIE(InfoExtractor):
|
||||||
_APP_VERSION = '2.2.5.1428709186'
|
_APP_VERSION = '2.2.5.1428709186'
|
||||||
_APP_SECRET = '-$iJ}@p7!G@SyU/je1bEyWg}upLu-6V6-Lg9VD(]siH,r.,m-r|ulZ,U4LC/SeR)'
|
_APP_SECRET = '-$iJ}@p7!G@SyU/je1bEyWg}upLu-6V6-Lg9VD(]siH,r.,m-r|ulZ,U4LC/SeR)'
|
||||||
|
|
||||||
|
_BYPASS_GEO = False
|
||||||
_NETRC_MACHINE = 'viki'
|
_NETRC_MACHINE = 'viki'
|
||||||
|
|
||||||
_token = None
|
_token = None
|
||||||
|
@ -77,8 +78,11 @@ class VikiBaseIE(InfoExtractor):
|
||||||
def _check_errors(self, data):
|
def _check_errors(self, data):
|
||||||
for reason, status in data.get('blocking', {}).items():
|
for reason, status in data.get('blocking', {}).items():
|
||||||
if status and reason in self._ERRORS:
|
if status and reason in self._ERRORS:
|
||||||
|
message = self._ERRORS[reason]
|
||||||
|
if reason == 'geo':
|
||||||
|
self.raise_geo_restricted(msg=message)
|
||||||
raise ExtractorError('%s said: %s' % (
|
raise ExtractorError('%s said: %s' % (
|
||||||
self.IE_NAME, self._ERRORS[reason]), expected=True)
|
self.IE_NAME, message), expected=True)
|
||||||
|
|
||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
self._login()
|
self._login()
|
||||||
|
|
Loading…
Reference in a new issue