[moniker] Capture and output error message (#5541)
This commit is contained in:
parent
290a5a8d85
commit
e206740fd7
1 changed files with 7 additions and 0 deletions
|
@ -9,6 +9,7 @@ from ..compat import (
|
||||||
compat_urllib_parse,
|
compat_urllib_parse,
|
||||||
compat_urllib_request,
|
compat_urllib_request,
|
||||||
)
|
)
|
||||||
|
from ..utils import ExtractorError
|
||||||
|
|
||||||
|
|
||||||
class MonikerIE(InfoExtractor):
|
class MonikerIE(InfoExtractor):
|
||||||
|
@ -40,6 +41,12 @@ class MonikerIE(InfoExtractor):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
orig_webpage = self._download_webpage(url, video_id)
|
orig_webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
error = self._search_regex(
|
||||||
|
r'class="err">([^<]+)<', orig_webpage, 'error', default=None)
|
||||||
|
if error:
|
||||||
|
raise ExtractorError(
|
||||||
|
'%s returned error: %s' % (self.IE_NAME, error), expected=True)
|
||||||
|
|
||||||
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
|
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
|
||||||
data = dict(fields)
|
data = dict(fields)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue