[laola1tv] Fixes for changed site layout.
* Fixed valid URLs (w/ tests). * Fixed iframe URL extraction. * Fixed token URL extraction. * Fixed variable extraction. * Fixed uploader spelling. * Added upload_date to result dictionary.
This commit is contained in:
parent
611c1dd96e
commit
5e19323ed9
1 changed files with 63 additions and 36 deletions
|
@ -1,86 +1,113 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import random
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
compat_urlparse,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
|
sanitized_Request,
|
||||||
|
xpath_element,
|
||||||
xpath_text,
|
xpath_text,
|
||||||
|
unified_strdate,
|
||||||
|
urlencode_postdata,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class Laola1TvIE(InfoExtractor):
|
class Laola1TvIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?laola1\.tv/(?P<lang>[a-z]+)-(?P<portal>[a-z]+)/.*?/(?P<id>[0-9]+)\.html'
|
_VALID_URL = r'https?://(?:www\.)?laola1\.tv/(?P<lang>[a-z]+)-(?P<portal>[a-z]+)/.*?/(?P<slug>[\w-]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://www.laola1.tv/de-de/video/straubing-tigers-koelner-haie/227883.html',
|
'url': 'http://www.laola1.tv/de-de/video/straubing-tigers-koelner-haie/227883.html',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '227883',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Straubing Tigers - Kölner Haie',
|
|
||||||
'categories': ['Eishockey'],
|
'categories': ['Eishockey'],
|
||||||
|
'ext': 'flv',
|
||||||
|
'id': '227883',
|
||||||
'is_live': False,
|
'is_live': False,
|
||||||
|
'title': 'Straubing Tigers - Kölner Haie',
|
||||||
|
'upload_date': '20140912',
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
}
|
}
|
||||||
}
|
}, {
|
||||||
|
'url': 'http://www.laola1.tv/de-de/video/straubing-tigers-koelner-haie',
|
||||||
|
'info_dict': {
|
||||||
|
'categories': ['Eishockey'],
|
||||||
|
'ext': 'flv',
|
||||||
|
'id': '464602',
|
||||||
|
'is_live': False,
|
||||||
|
'title': 'Straubing Tigers - Kölner Haie',
|
||||||
|
'upload_date': '20160129',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
|
||||||
lang = mobj.group('lang')
|
lang = mobj.group('lang')
|
||||||
portal = mobj.group('portal')
|
portal = mobj.group('portal')
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, mobj.group('slug'))
|
||||||
iframe_url = self._search_regex(
|
iframe_url = self._search_regex(
|
||||||
r'<iframe[^>]*?class="main_tv_player"[^>]*?src="([^"]+)"',
|
r'<iframe[^>]*?id="videoplayer"[^>]*?src="([^"]+)"',
|
||||||
webpage, 'iframe URL')
|
webpage, 'iframe URL')
|
||||||
|
|
||||||
iframe = self._download_webpage(
|
video_id = self._search_regex(
|
||||||
iframe_url, video_id, note='Downloading iframe')
|
r'videoid=(\d+)', iframe_url, 'video ID')
|
||||||
flashvars_m = re.findall(
|
|
||||||
r'flashvars\.([_a-zA-Z0-9]+)\s*=\s*"([^"]*)";', iframe)
|
iframe = self._download_webpage(compat_urlparse.urljoin(
|
||||||
flashvars = dict((m[0], m[1]) for m in flashvars_m)
|
url, iframe_url), video_id, note='Downloading iframe')
|
||||||
|
|
||||||
partner_id = self._search_regex(
|
partner_id = self._search_regex(
|
||||||
r'partnerid\s*:\s*"([^"]+)"', iframe, 'partner id')
|
r'partnerid\s*:\s*"([^"]+)"', iframe, 'partner ID')
|
||||||
|
|
||||||
xml_url = ('http://www.laola1.tv/server/hd_video.php?' +
|
xml_url = ('http://www.laola1.tv/server/hd_video.php?' +
|
||||||
'play=%s&partner=%s&portal=%s&v5ident=&lang=%s' % (
|
'play=%s&partner=%s&portal=%s&v5ident=&lang=%s' % (
|
||||||
video_id, partner_id, portal, lang))
|
video_id, partner_id, portal, lang))
|
||||||
hd_doc = self._download_xml(xml_url, video_id)
|
hd_doc = self._download_xml(xml_url, video_id)
|
||||||
|
|
||||||
title = xpath_text(hd_doc, './/video/title', fatal=True)
|
_v = lambda x, **k: xpath_text(hd_doc, './/video/' + x, **k)
|
||||||
flash_url = xpath_text(hd_doc, './/video/url', fatal=True)
|
title = _v('title', fatal=True)
|
||||||
uploader = xpath_text(hd_doc, './/video/meta_organistation')
|
|
||||||
is_live = xpath_text(hd_doc, './/video/islive') == 'true'
|
|
||||||
|
|
||||||
categories = xpath_text(hd_doc, './/video/meta_sports')
|
categories = _v('meta_sports')
|
||||||
if categories:
|
if categories:
|
||||||
categories = categories.split(',')
|
categories = categories.split(',')
|
||||||
|
|
||||||
ident = random.randint(10000000, 99999999)
|
time_date = _v('time_date')
|
||||||
token_url = '%s&ident=%s&klub=0&unikey=0×tamp=%s&auth=%s' % (
|
time_start = _v('time_start')
|
||||||
flash_url, ident, flashvars['timestamp'], flashvars['auth'])
|
upload_date = None
|
||||||
|
if time_date and time_start:
|
||||||
|
upload_date = unified_strdate(time_date + ' ' + time_start)
|
||||||
|
|
||||||
|
json_url = ('https://club.laola1.tv/sp/laola1/api/v3/user/session' +
|
||||||
|
'/premium/player/stream-access?videoId=%s&target=2' +
|
||||||
|
'&label=laola1tv&area=%s') % (video_id, _v('area'))
|
||||||
|
req = sanitized_Request(json_url, urlencode_postdata(
|
||||||
|
dict((i, v) for i, v in enumerate(_v('req_liga_abos').split(',')))))
|
||||||
|
|
||||||
|
token_url = self._download_json(req, video_id)['data']['stream-access'][0]
|
||||||
token_doc = self._download_xml(
|
token_doc = self._download_xml(
|
||||||
token_url, video_id, note='Downloading token')
|
token_url, video_id, note='Downloading token')
|
||||||
token_attrib = token_doc.find('.//token').attrib
|
|
||||||
if token_attrib.get('auth') in ('blocked', 'restricted'):
|
|
||||||
raise ExtractorError(
|
|
||||||
'Token error: %s' % token_attrib.get('comment'), expected=True)
|
|
||||||
|
|
||||||
video_url = '%s?hdnea=%s&hdcore=3.2.0' % (
|
token_attrib = xpath_element(token_doc, './/token').attrib
|
||||||
token_attrib['url'], token_attrib['auth'])
|
token_auth = token_attrib['auth']
|
||||||
|
|
||||||
|
if token_auth in ('blocked', 'restricted'):
|
||||||
|
raise ExtractorError(
|
||||||
|
'Token error: %s' % token_attrib['comment'], expected=True)
|
||||||
|
|
||||||
|
video_url = '%s?hdnea=%s&hdcore=3.2.0' % (token_attrib['url'], token_auth)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
|
||||||
'is_live': is_live,
|
|
||||||
'title': title,
|
|
||||||
'url': video_url,
|
|
||||||
'uploader': uploader,
|
|
||||||
'categories': categories,
|
'categories': categories,
|
||||||
'ext': 'mp4',
|
'formats': self._extract_f4m_formats(
|
||||||
|
video_url, video_id, f4m_id='hds'),
|
||||||
|
'id': video_id,
|
||||||
|
'is_live': _v('islive') == 'true',
|
||||||
|
'title': title,
|
||||||
|
'upload_date': upload_date,
|
||||||
|
'uploader': _v('meta_organisation'),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue