Merge remote-tracking branch 'Boris-de/wdrmaus_fix#8562'
[youtube-dl] / youtube_dl / extractor / theplatform.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 import re
5 import time
6 import hmac
7 import binascii
8 import hashlib
9
10
11 from .once import OnceIE
12 from ..compat import (
13     compat_parse_qs,
14     compat_urllib_parse_urlparse,
15 )
16 from ..utils import (
17     ExtractorError,
18     float_or_none,
19     int_or_none,
20     sanitized_Request,
21     unsmuggle_url,
22     xpath_with_ns,
23     mimetype2ext,
24     find_xpath_attr,
25 )
26
27 default_ns = 'http://www.w3.org/2005/SMIL21/Language'
28 _x = lambda p: xpath_with_ns(p, {'smil': default_ns})
29
30
31 class ThePlatformBaseIE(OnceIE):
32     def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
33         meta = self._download_xml(smil_url, video_id, note=note, query={'format': 'SMIL'})
34         error_element = find_xpath_attr(meta, _x('.//smil:ref'), 'src')
35         if error_element is not None and error_element.attrib['src'].startswith(
36                 'http://link.theplatform.com/s/errorFiles/Unavailable.'):
37             raise ExtractorError(error_element.attrib['abstract'], expected=True)
38
39         smil_formats = self._parse_smil_formats(
40             meta, smil_url, video_id, namespace=default_ns,
41             # the parameters are from syfy.com, other sites may use others,
42             # they also work for nbc.com
43             f4m_params={'g': 'UXWGVKRWHFSP', 'hdcore': '3.0.3'},
44             transform_rtmp_url=lambda streamer, src: (streamer, 'mp4:' + src))
45
46         formats = []
47         for _format in smil_formats:
48             if OnceIE.suitable(_format['url']):
49                 formats.extend(self._extract_once_formats(_format['url']))
50             else:
51                 formats.append(_format)
52
53         subtitles = self._parse_smil_subtitles(meta, default_ns)
54
55         return formats, subtitles
56
57     def get_metadata(self, path, video_id):
58         info_url = 'http://link.theplatform.com/s/%s?format=preview' % path
59         info = self._download_json(info_url, video_id)
60
61         subtitles = {}
62         captions = info.get('captions')
63         if isinstance(captions, list):
64             for caption in captions:
65                 lang, src, mime = caption.get('lang', 'en'), caption.get('src'), caption.get('type')
66                 subtitles[lang] = [{
67                     'ext': mimetype2ext(mime),
68                     'url': src,
69                 }]
70
71         return {
72             'title': info['title'],
73             'subtitles': subtitles,
74             'description': info['description'],
75             'thumbnail': info['defaultThumbnailUrl'],
76             'duration': int_or_none(info.get('duration'), 1000),
77             'timestamp': int_or_none(info.get('pubDate'), 1000) or None,
78             'uploader': info.get('billingCode'),
79         }
80
81
82 class ThePlatformIE(ThePlatformBaseIE):
83     _VALID_URL = r'''(?x)
84         (?:https?://(?:link|player)\.theplatform\.com/[sp]/(?P<provider_id>[^/]+)/
85            (?:(?:(?:[^/]+/)+select/)?(?P<media>media/(?:guid/\d+/)?)|(?P<config>(?:[^/\?]+/(?:swf|config)|onsite)/select/))?
86          |theplatform:)(?P<id>[^/\?&]+)'''
87
88     _TESTS = [{
89         # from http://www.metacafe.com/watch/cb-e9I_cZgTgIPd/blackberrys_big_bold_z30/
90         'url': 'http://link.theplatform.com/s/dJ5BDC/e9I_cZgTgIPd/meta.smil?format=smil&Tracking=true&mbr=true',
91         'info_dict': {
92             'id': 'e9I_cZgTgIPd',
93             'ext': 'flv',
94             'title': 'Blackberry\'s big, bold Z30',
95             'description': 'The Z30 is Blackberry\'s biggest, baddest mobile messaging device yet.',
96             'duration': 247,
97             'timestamp': 1383239700,
98             'upload_date': '20131031',
99             'uploader': 'CBSI-NEW',
100         },
101         'params': {
102             # rtmp download
103             'skip_download': True,
104         },
105     }, {
106         # from http://www.cnet.com/videos/tesla-model-s-a-second-step-towards-a-cleaner-motoring-future/
107         'url': 'http://link.theplatform.com/s/kYEXFC/22d_qsQ6MIRT',
108         'info_dict': {
109             'id': '22d_qsQ6MIRT',
110             'ext': 'flv',
111             'description': 'md5:ac330c9258c04f9d7512cf26b9595409',
112             'title': 'Tesla Model S: A second step towards a cleaner motoring future',
113             'timestamp': 1426176191,
114             'upload_date': '20150312',
115             'uploader': 'CBSI-NEW',
116         },
117         'params': {
118             # rtmp download
119             'skip_download': True,
120         }
121     }, {
122         'url': 'https://player.theplatform.com/p/D6x-PC/pulse_preview/embed/select/media/yMBg9E8KFxZD',
123         'info_dict': {
124             'id': 'yMBg9E8KFxZD',
125             'ext': 'mp4',
126             'description': 'md5:644ad9188d655b742f942bf2e06b002d',
127             'title': 'HIGHLIGHTS: USA bag first ever series Cup win',
128             'uploader': 'EGSM',
129         }
130     }, {
131         'url': 'http://player.theplatform.com/p/NnzsPC/widget/select/media/4Y0TlYUr_ZT7',
132         'only_matching': True,
133     }, {
134         'url': 'http://player.theplatform.com/p/2E2eJC/nbcNewsOffsite?guid=tdy_or_siri_150701',
135         'md5': 'fb96bb3d85118930a5b055783a3bd992',
136         'info_dict': {
137             'id': 'tdy_or_siri_150701',
138             'ext': 'mp4',
139             'title': 'iPhone Siri’s sassy response to a math question has people talking',
140             'description': 'md5:a565d1deadd5086f3331d57298ec6333',
141             'duration': 83.0,
142             'thumbnail': 're:^https?://.*\.jpg$',
143             'timestamp': 1435752600,
144             'upload_date': '20150701',
145             'uploader': 'NBCU-NEWS',
146         },
147     }, {
148         # From http://www.nbc.com/the-blacklist/video/sir-crispin-crandall/2928790?onid=137781#vc137781=1
149         # geo-restricted (US), HLS encrypted with AES-128
150         'url': 'http://player.theplatform.com/p/NnzsPC/onsite_universal/select/media/guid/2410887629/2928790?fwsitesection=nbc_the_blacklist_video_library&autoPlay=true&carouselID=137781',
151         'only_matching': True,
152     }]
153
154     @classmethod
155     def _extract_urls(cls, webpage):
156         m = re.search(
157             r'''(?x)
158                     <meta\s+
159                         property=(["'])(?:og:video(?::(?:secure_)?url)?|twitter:player)\1\s+
160                         content=(["'])(?P<url>https?://player\.theplatform\.com/p/.+?)\2
161             ''', webpage)
162         if m:
163             return [m.group('url')]
164
165         matches = re.findall(
166             r'<(?:iframe|script)[^>]+src=(["\'])((?:https?:)?//player\.theplatform\.com/p/.+?)\1', webpage)
167         if matches:
168             return list(zip(*matches))[1]
169
170     @staticmethod
171     def _sign_url(url, sig_key, sig_secret, life=600, include_qs=False):
172         flags = '10' if include_qs else '00'
173         expiration_date = '%x' % (int(time.time()) + life)
174
175         def str_to_hex(str):
176             return binascii.b2a_hex(str.encode('ascii')).decode('ascii')
177
178         def hex_to_bytes(hex):
179             return binascii.a2b_hex(hex.encode('ascii'))
180
181         relative_path = re.match(r'https?://link.theplatform.com/s/([^?]+)', url).group(1)
182         clear_text = hex_to_bytes(flags + expiration_date + str_to_hex(relative_path))
183         checksum = hmac.new(sig_key.encode('ascii'), clear_text, hashlib.sha1).hexdigest()
184         sig = flags + expiration_date + checksum + str_to_hex(sig_secret)
185         return '%s&sig=%s' % (url, sig)
186
187     def _real_extract(self, url):
188         url, smuggled_data = unsmuggle_url(url, {})
189
190         mobj = re.match(self._VALID_URL, url)
191         provider_id = mobj.group('provider_id')
192         video_id = mobj.group('id')
193
194         if not provider_id:
195             provider_id = 'dJ5BDC'
196
197         path = provider_id + '/'
198         if mobj.group('media'):
199             path += mobj.group('media')
200         path += video_id
201
202         qs_dict = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
203         if 'guid' in qs_dict:
204             webpage = self._download_webpage(url, video_id)
205             scripts = re.findall(r'<script[^>]+src="([^"]+)"', webpage)
206             feed_id = None
207             # feed id usually locates in the last script.
208             # Seems there's no pattern for the interested script filename, so
209             # I try one by one
210             for script in reversed(scripts):
211                 feed_script = self._download_webpage(
212                     self._proto_relative_url(script, 'http:'),
213                     video_id, 'Downloading feed script')
214                 feed_id = self._search_regex(
215                     r'defaultFeedId\s*:\s*"([^"]+)"', feed_script,
216                     'default feed id', default=None)
217                 if feed_id is not None:
218                     break
219             if feed_id is None:
220                 raise ExtractorError('Unable to find feed id')
221             return self.url_result('http://feed.theplatform.com/f/%s/%s?byGuid=%s' % (
222                 provider_id, feed_id, qs_dict['guid'][0]))
223
224         if smuggled_data.get('force_smil_url', False):
225             smil_url = url
226         # Explicitly specified SMIL (see https://github.com/rg3/youtube-dl/issues/7385)
227         elif '/guid/' in url:
228             headers = {}
229             source_url = smuggled_data.get('source_url')
230             if source_url:
231                 headers['Referer'] = source_url
232             request = sanitized_Request(url, headers=headers)
233             webpage = self._download_webpage(request, video_id)
234             smil_url = self._search_regex(
235                 r'<link[^>]+href=(["\'])(?P<url>.+?)\1[^>]+type=["\']application/smil\+xml',
236                 webpage, 'smil url', group='url')
237             path = self._search_regex(
238                 r'link\.theplatform\.com/s/((?:[^/?#&]+/)+[^/?#&]+)', smil_url, 'path')
239             smil_url += '?' if '?' not in smil_url else '&' + 'formats=m3u,mpeg4'
240         elif mobj.group('config'):
241             config_url = url + '&form=json'
242             config_url = config_url.replace('swf/', 'config/')
243             config_url = config_url.replace('onsite/', 'onsite/config/')
244             config = self._download_json(config_url, video_id, 'Downloading config')
245             if 'releaseUrl' in config:
246                 release_url = config['releaseUrl']
247             else:
248                 release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
249             smil_url = release_url + '&formats=MPEG4&manifest=f4m'
250         else:
251             smil_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
252
253         sig = smuggled_data.get('sig')
254         if sig:
255             smil_url = self._sign_url(smil_url, sig['key'], sig['secret'])
256
257         formats, subtitles = self._extract_theplatform_smil(smil_url, video_id)
258         self._sort_formats(formats)
259
260         ret = self.get_metadata(path, video_id)
261         combined_subtitles = self._merge_subtitles(ret.get('subtitles', {}), subtitles)
262         ret.update({
263             'id': video_id,
264             'formats': formats,
265             'subtitles': combined_subtitles,
266         })
267
268         return ret
269
270
271 class ThePlatformFeedIE(ThePlatformBaseIE):
272     _URL_TEMPLATE = '%s//feed.theplatform.com/f/%s/%s?form=json&byGuid=%s'
273     _VALID_URL = r'https?://feed\.theplatform\.com/f/(?P<provider_id>[^/]+)/(?P<feed_id>[^?/]+)\?(?:[^&]+&)*byGuid=(?P<id>[a-zA-Z0-9_]+)'
274     _TEST = {
275         # From http://player.theplatform.com/p/7wvmTC/MSNBCEmbeddedOffSite?guid=n_hardball_5biden_140207
276         'url': 'http://feed.theplatform.com/f/7wvmTC/msnbc_video-p-test?form=json&pretty=true&range=-40&byGuid=n_hardball_5biden_140207',
277         'md5': '6e32495b5073ab414471b615c5ded394',
278         'info_dict': {
279             'id': 'n_hardball_5biden_140207',
280             'ext': 'mp4',
281             'title': 'The Biden factor: will Joe run in 2016?',
282             'description': 'Could Vice President Joe Biden be preparing a 2016 campaign? Mark Halperin and Sam Stein weigh in.',
283             'thumbnail': 're:^https?://.*\.jpg$',
284             'upload_date': '20140208',
285             'timestamp': 1391824260,
286             'duration': 467.0,
287             'categories': ['MSNBC/Issues/Democrats', 'MSNBC/Issues/Elections/Election 2016'],
288             'uploader': 'NBCU-NEWS',
289         },
290     }
291
292     def _real_extract(self, url):
293         mobj = re.match(self._VALID_URL, url)
294
295         video_id = mobj.group('id')
296         provider_id = mobj.group('provider_id')
297         feed_id = mobj.group('feed_id')
298
299         real_url = self._URL_TEMPLATE % (self.http_scheme(), provider_id, feed_id, video_id)
300         feed = self._download_json(real_url, video_id)
301         entry = feed['entries'][0]
302
303         formats = []
304         subtitles = {}
305         first_video_id = None
306         duration = None
307         for item in entry['media$content']:
308             smil_url = item['plfile$url'] + '&mbr=true'
309             cur_video_id = ThePlatformIE._match_id(smil_url)
310             if first_video_id is None:
311                 first_video_id = cur_video_id
312                 duration = float_or_none(item.get('plfile$duration'))
313             cur_formats, cur_subtitles = self._extract_theplatform_smil(smil_url, video_id, 'Downloading SMIL data for %s' % cur_video_id)
314             formats.extend(cur_formats)
315             subtitles = self._merge_subtitles(subtitles, cur_subtitles)
316
317         self._sort_formats(formats)
318
319         thumbnails = [{
320             'url': thumbnail['plfile$url'],
321             'width': int_or_none(thumbnail.get('plfile$width')),
322             'height': int_or_none(thumbnail.get('plfile$height')),
323         } for thumbnail in entry.get('media$thumbnails', [])]
324
325         timestamp = int_or_none(entry.get('media$availableDate'), scale=1000)
326         categories = [item['media$name'] for item in entry.get('media$categories', [])]
327
328         ret = self.get_metadata('%s/%s' % (provider_id, first_video_id), video_id)
329         subtitles = self._merge_subtitles(subtitles, ret['subtitles'])
330         ret.update({
331             'id': video_id,
332             'formats': formats,
333             'subtitles': subtitles,
334             'thumbnails': thumbnails,
335             'duration': duration,
336             'timestamp': timestamp,
337             'categories': categories,
338         })
339
340         return ret