| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  | import json | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2015-02-23 20:45:36 +02:00
										 |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |     unified_strdate, | 
					
						
							|  |  |  |     urlencode_postdata, | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |     xpath_element, | 
					
						
							|  |  |  |     xpath_text, | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |     update_url_query, | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |     js_to_json, | 
					
						
							| 
									
										
										
										
											2015-02-23 20:45:36 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  | class Laola1TvEmbedIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |     IE_NAME = 'laola1tv:embed' | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?laola1\.tv/titanplayer\.php\?.*?\bvideoid=(?P<id>\d+)' | 
					
						
							| 
									
										
										
										
											2017-05-04 22:41:47 +07:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |         # flashvars.premium = "false"; | 
					
						
							|  |  |  |         'url': 'https://www.laola1.tv/titanplayer.php?videoid=708065&type=V&lang=en&portal=int&customer=1024', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '708065', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'MA Long CHN - FAN Zhendong CHN', | 
					
						
							|  |  |  |             'uploader': 'ITTF - International Table Tennis Federation', | 
					
						
							|  |  |  |             'upload_date': '20161211', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2017-05-04 22:41:47 +07:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |     def _extract_token_url(self, stream_access_url, video_id, data): | 
					
						
							|  |  |  |         return self._download_json( | 
					
						
							|  |  |  |             stream_access_url, video_id, headers={ | 
					
						
							|  |  |  |                 'Content-Type': 'application/json', | 
					
						
							|  |  |  |             }, data=json.dumps(data).encode())['data']['stream-access'][0] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _extract_formats(self, token_url, video_id): | 
					
						
							|  |  |  |         token_doc = self._download_xml( | 
					
						
							|  |  |  |             token_url, video_id, 'Downloading token', | 
					
						
							|  |  |  |             headers=self.geo_verification_headers()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         token_attrib = xpath_element(token_doc, './/token').attrib | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if token_attrib['status'] != '0': | 
					
						
							|  |  |  |             raise ExtractorError( | 
					
						
							|  |  |  |                 'Token error: %s' % token_attrib['comment'], expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = self._extract_akamai_formats( | 
					
						
							|  |  |  |             '%s?hdnea=%s' % (token_attrib['url'], token_attrib['auth']), | 
					
						
							|  |  |  |             video_id) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  |         return formats | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  |         flash_vars = self._search_regex( | 
					
						
							|  |  |  |             r'(?s)flashvars\s*=\s*({.+?});', webpage, 'flash vars') | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def get_flashvar(x, *args, **kwargs): | 
					
						
							|  |  |  |             flash_var = self._search_regex( | 
					
						
							|  |  |  |                 r'%s\s*:\s*"([^"]+)"' % x, | 
					
						
							|  |  |  |                 flash_vars, x, default=None) | 
					
						
							|  |  |  |             if not flash_var: | 
					
						
							|  |  |  |                 flash_var = self._search_regex([ | 
					
						
							|  |  |  |                     r'flashvars\.%s\s*=\s*"([^"]+)"' % x, | 
					
						
							|  |  |  |                     r'%s\s*=\s*"([^"]+)"' % x], | 
					
						
							|  |  |  |                     webpage, x, *args, **kwargs) | 
					
						
							|  |  |  |             return flash_var | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         hd_doc = self._download_xml( | 
					
						
							|  |  |  |             'http://www.laola1.tv/server/hd_video.php', video_id, query={ | 
					
						
							|  |  |  |                 'play': get_flashvar('streamid'), | 
					
						
							|  |  |  |                 'partner': get_flashvar('partnerid'), | 
					
						
							|  |  |  |                 'portal': get_flashvar('portalid'), | 
					
						
							|  |  |  |                 'lang': get_flashvar('sprache'), | 
					
						
							|  |  |  |                 'v5ident': '', | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _v = lambda x, **k: xpath_text(hd_doc, './/video/' + x, **k) | 
					
						
							|  |  |  |         title = _v('title', fatal=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |         token_url = None | 
					
						
							|  |  |  |         premium = get_flashvar('premium', default=None) | 
					
						
							|  |  |  |         if premium: | 
					
						
							|  |  |  |             token_url = update_url_query( | 
					
						
							|  |  |  |                 _v('url', fatal=True), { | 
					
						
							|  |  |  |                     'timestamp': get_flashvar('timestamp'), | 
					
						
							|  |  |  |                     'auth': get_flashvar('auth'), | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             data_abo = urlencode_postdata( | 
					
						
							|  |  |  |                 dict((i, v) for i, v in enumerate(_v('req_liga_abos').split(',')))) | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |             stream_access_url = update_url_query( | 
					
						
							|  |  |  |                 'https://club.laola1.tv/sp/laola1/api/v3/user/session/premium/player/stream-access', { | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |                     'videoId': _v('id'), | 
					
						
							|  |  |  |                     'target': self._search_regex(r'vs_target = (\d+);', webpage, 'vs target'), | 
					
						
							|  |  |  |                     'label': _v('label'), | 
					
						
							|  |  |  |                     'area': _v('area'), | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |                 }) | 
					
						
							|  |  |  |             token_url = self._extract_token_url(stream_access_url, video_id, data_abo) | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |         formats = self._extract_formats(token_url, video_id) | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         categories_str = _v('meta_sports') | 
					
						
							|  |  |  |         categories = categories_str.split(',') if categories_str else [] | 
					
						
							|  |  |  |         is_live = _v('islive') == 'true' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': self._live_title(title) if is_live else title, | 
					
						
							|  |  |  |             'upload_date': unified_strdate(_v('time_date')), | 
					
						
							|  |  |  |             'uploader': _v('meta_organisation'), | 
					
						
							|  |  |  |             'categories': categories, | 
					
						
							|  |  |  |             'is_live': is_live, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  | class Laola1TvIE(Laola1TvEmbedIE): | 
					
						
							| 
									
										
										
										
											2016-12-20 18:22:57 +01:00
										 |  |  |     IE_NAME = 'laola1tv' | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?laola1\.tv/[a-z]+-[a-z]+/[^/]+/(?P<id>[^/?#&]+)' | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2015-02-23 20:45:36 +02:00
										 |  |  |         'url': 'http://www.laola1.tv/de-de/video/straubing-tigers-koelner-haie/227883.html', | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-02-23 20:45:36 +02:00
										 |  |  |             'id': '227883', | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |             'display_id': 'straubing-tigers-koelner-haie', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2015-02-23 20:45:36 +02:00
										 |  |  |             'title': 'Straubing Tigers - Kölner Haie', | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |             'upload_date': '20140912', | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |             'is_live': False, | 
					
						
							|  |  |  |             'categories': ['Eishockey'], | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							| 
									
										
										
										
											2016-03-22 22:32:59 +06:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.laola1.tv/de-de/video/straubing-tigers-koelner-haie', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '464602', | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |             'display_id': 'straubing-tigers-koelner-haie', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |             'title': 'Straubing Tigers - Kölner Haie', | 
					
						
							|  |  |  |             'upload_date': '20160129', | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |             'is_live': False, | 
					
						
							|  |  |  |             'categories': ['Eishockey'], | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							| 
									
										
										
										
											2016-03-22 22:32:59 +06:00
										 |  |  |         }, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.laola1.tv/de-de/livestream/2016-03-22-belogorie-belgorod-trentino-diatec-lde', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '487850', | 
					
						
							|  |  |  |             'display_id': '2016-03-22-belogorie-belgorod-trentino-diatec-lde', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'Belogorie BELGOROD - TRENTINO Diatec', | 
					
						
							|  |  |  |             'upload_date': '20160322', | 
					
						
							|  |  |  |             'uploader': 'CEV - Europäischer Volleyball Verband', | 
					
						
							|  |  |  |             'is_live': True, | 
					
						
							|  |  |  |             'categories': ['Volleyball'], | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-04-14 14:11:28 +08:00
										 |  |  |         'skip': 'This live stream has already finished.', | 
					
						
							| 
									
										
										
										
											2016-02-09 16:25:30 +01:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2016-12-17 21:48:45 +01:00
										 |  |  |         display_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-14 14:11:28 +08:00
										 |  |  |         if 'Dieser Livestream ist bereits beendet.' in webpage: | 
					
						
							|  |  |  |             raise ExtractorError('This live stream has already finished.', expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |         conf = self._parse_json(self._search_regex( | 
					
						
							|  |  |  |             r'(?s)conf\s*=\s*({.+?});', webpage, 'conf'), | 
					
						
							|  |  |  |             display_id, js_to_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         video_id = conf['videoid'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         config = self._download_json(conf['configUrl'], video_id, query={ | 
					
						
							|  |  |  |             'videoid': video_id, | 
					
						
							|  |  |  |             'partnerid': conf['partnerid'], | 
					
						
							|  |  |  |             'language': conf.get('language', ''), | 
					
						
							|  |  |  |             'portal': conf.get('portalid', ''), | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         error = config.get('error') | 
					
						
							|  |  |  |         if error: | 
					
						
							|  |  |  |             raise ExtractorError('%s said: %s' % (self.IE_NAME, error), expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         video_data = config['video'] | 
					
						
							|  |  |  |         title = video_data['title'] | 
					
						
							|  |  |  |         is_live = video_data.get('isLivestream') and video_data.get('isLive') | 
					
						
							|  |  |  |         meta = video_data.get('metaInformation') | 
					
						
							|  |  |  |         sports = meta.get('sports') | 
					
						
							|  |  |  |         categories = sports.split(',') if sports else [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         token_url = self._extract_token_url( | 
					
						
							|  |  |  |             video_data['streamAccess'], video_id, | 
					
						
							|  |  |  |             video_data['abo']['required']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = self._extract_formats(token_url, video_id) | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2016-02-14 23:40:26 +06:00
										 |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2017-05-04 16:06:21 +01:00
										 |  |  |             'title': self._live_title(title) if is_live else title, | 
					
						
							|  |  |  |             'description': video_data.get('description'), | 
					
						
							|  |  |  |             'thumbnail': video_data.get('image'), | 
					
						
							|  |  |  |             'categories': categories, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'is_live': is_live, | 
					
						
							| 
									
										
										
										
											2014-10-28 16:51:32 +01:00
										 |  |  |         } |