[theplatform] sign https urls
[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         self._sort_formats(formats)
54
55         subtitles = self._parse_smil_subtitles(meta, default_ns)
56
57         return formats, subtitles
58
59     def get_metadata(self, path, video_id):
60         info_url = 'http://link.theplatform.com/s/%s?format=preview' % path
61         info = self._download_json(info_url, video_id)
62
63         subtitles = {}
64         captions = info.get('captions')
65         if isinstance(captions, list):
66             for caption in captions:
67                 lang, src, mime = caption.get('lang', 'en'), caption.get('src'), caption.get('type')
68                 subtitles[lang] = [{
69                     'ext': mimetype2ext(mime),
70                     'url': src,
71                 }]
72
73         return {
74             'title': info['title'],
75             'subtitles': subtitles,
76             'description': info['description'],
77             'thumbnail': info['defaultThumbnailUrl'],
78             'duration': int_or_none(info.get('duration'), 1000),
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         },
98         'params': {
99             # rtmp download
100             'skip_download': True,
101         },
102     }, {
103         # from http://www.cnet.com/videos/tesla-model-s-a-second-step-towards-a-cleaner-motoring-future/
104         'url': 'http://link.theplatform.com/s/kYEXFC/22d_qsQ6MIRT',
105         'info_dict': {
106             'id': '22d_qsQ6MIRT',
107             'ext': 'flv',
108             'description': 'md5:ac330c9258c04f9d7512cf26b9595409',
109             'title': 'Tesla Model S: A second step towards a cleaner motoring future',
110         },
111         'params': {
112             # rtmp download
113             'skip_download': True,
114         }
115     }, {
116         'url': 'https://player.theplatform.com/p/D6x-PC/pulse_preview/embed/select/media/yMBg9E8KFxZD',
117         'info_dict': {
118             'id': 'yMBg9E8KFxZD',
119             'ext': 'mp4',
120             'description': 'md5:644ad9188d655b742f942bf2e06b002d',
121             'title': 'HIGHLIGHTS: USA bag first ever series Cup win',
122         }
123     }, {
124         'url': 'http://player.theplatform.com/p/NnzsPC/widget/select/media/4Y0TlYUr_ZT7',
125         'only_matching': True,
126     }, {
127         'url': 'http://player.theplatform.com/p/2E2eJC/nbcNewsOffsite?guid=tdy_or_siri_150701',
128         'md5': 'fb96bb3d85118930a5b055783a3bd992',
129         'info_dict': {
130             'id': 'tdy_or_siri_150701',
131             'ext': 'mp4',
132             'title': 'iPhone Siri’s sassy response to a math question has people talking',
133             'description': 'md5:a565d1deadd5086f3331d57298ec6333',
134             'duration': 83.0,
135             'thumbnail': 're:^https?://.*\.jpg$',
136             'timestamp': 1435752600,
137             'upload_date': '20150701',
138         },
139     }, {
140         # From http://www.nbc.com/the-blacklist/video/sir-crispin-crandall/2928790?onid=137781#vc137781=1
141         # geo-restricted (US), HLS encrypted with AES-128
142         'url': 'http://player.theplatform.com/p/NnzsPC/onsite_universal/select/media/guid/2410887629/2928790?fwsitesection=nbc_the_blacklist_video_library&autoPlay=true&carouselID=137781',
143         'only_matching': True,
144     }]
145
146     @staticmethod
147     def _sign_url(url, sig_key, sig_secret, life=600, include_qs=False):
148         flags = '10' if include_qs else '00'
149         expiration_date = '%x' % (int(time.time()) + life)
150
151         def str_to_hex(str):
152             return binascii.b2a_hex(str.encode('ascii')).decode('ascii')
153
154         def hex_to_str(hex):
155             return binascii.a2b_hex(hex)
156
157         relative_path = re.match(r'https?://link.theplatform.com/s/([^?]+)', url).group(1)
158         clear_text = hex_to_str(flags + expiration_date + str_to_hex(relative_path))
159         checksum = hmac.new(sig_key.encode('ascii'), clear_text, hashlib.sha1).hexdigest()
160         sig = flags + expiration_date + checksum + str_to_hex(sig_secret)
161         return '%s&sig=%s' % (url, sig)
162
163     def _real_extract(self, url):
164         url, smuggled_data = unsmuggle_url(url, {})
165
166         mobj = re.match(self._VALID_URL, url)
167         provider_id = mobj.group('provider_id')
168         video_id = mobj.group('id')
169
170         if not provider_id:
171             provider_id = 'dJ5BDC'
172
173         path = provider_id + '/'
174         if mobj.group('media'):
175             path += mobj.group('media')
176         path += video_id
177
178         qs_dict = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
179         if 'guid' in qs_dict:
180             webpage = self._download_webpage(url, video_id)
181             scripts = re.findall(r'<script[^>]+src="([^"]+)"', webpage)
182             feed_id = None
183             # feed id usually locates in the last script.
184             # Seems there's no pattern for the interested script filename, so
185             # I try one by one
186             for script in reversed(scripts):
187                 feed_script = self._download_webpage(
188                     self._proto_relative_url(script, 'http:'),
189                     video_id, 'Downloading feed script')
190                 feed_id = self._search_regex(
191                     r'defaultFeedId\s*:\s*"([^"]+)"', feed_script,
192                     'default feed id', default=None)
193                 if feed_id is not None:
194                     break
195             if feed_id is None:
196                 raise ExtractorError('Unable to find feed id')
197             return self.url_result('http://feed.theplatform.com/f/%s/%s?byGuid=%s' % (
198                 provider_id, feed_id, qs_dict['guid'][0]))
199
200         if smuggled_data.get('force_smil_url', False):
201             smil_url = url
202         # Explicitly specified SMIL (see https://github.com/rg3/youtube-dl/issues/7385)
203         elif '/guid/' in url:
204             headers = {}
205             source_url = smuggled_data.get('source_url')
206             if source_url:
207                 headers['Referer'] = source_url
208             request = sanitized_Request(url, headers=headers)
209             webpage = self._download_webpage(request, video_id)
210             smil_url = self._search_regex(
211                 r'<link[^>]+href=(["\'])(?P<url>.+?)\1[^>]+type=["\']application/smil\+xml',
212                 webpage, 'smil url', group='url')
213             path = self._search_regex(
214                 r'link\.theplatform\.com/s/((?:[^/?#&]+/)+[^/?#&]+)', smil_url, 'path')
215             smil_url += '?' if '?' not in smil_url else '&' + 'formats=m3u,mpeg4'
216         elif mobj.group('config'):
217             config_url = url + '&form=json'
218             config_url = config_url.replace('swf/', 'config/')
219             config_url = config_url.replace('onsite/', 'onsite/config/')
220             config = self._download_json(config_url, video_id, 'Downloading config')
221             if 'releaseUrl' in config:
222                 release_url = config['releaseUrl']
223             else:
224                 release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
225             smil_url = release_url + '&formats=MPEG4&manifest=f4m'
226         else:
227             smil_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
228
229         sig = smuggled_data.get('sig')
230         if sig:
231             smil_url = self._sign_url(smil_url, sig['key'], sig['secret'])
232
233         formats, subtitles = self._extract_theplatform_smil(smil_url, video_id)
234
235         ret = self.get_metadata(path, video_id)
236         combined_subtitles = self._merge_subtitles(ret.get('subtitles', {}), subtitles)
237         ret.update({
238             'id': video_id,
239             'formats': formats,
240             'subtitles': combined_subtitles,
241         })
242
243         return ret
244
245
246 class ThePlatformFeedIE(ThePlatformBaseIE):
247     _URL_TEMPLATE = '%s//feed.theplatform.com/f/%s/%s?form=json&byGuid=%s'
248     _VALID_URL = r'https?://feed\.theplatform\.com/f/(?P<provider_id>[^/]+)/(?P<feed_id>[^?/]+)\?(?:[^&]+&)*byGuid=(?P<id>[a-zA-Z0-9_]+)'
249     _TEST = {
250         # From http://player.theplatform.com/p/7wvmTC/MSNBCEmbeddedOffSite?guid=n_hardball_5biden_140207
251         'url': 'http://feed.theplatform.com/f/7wvmTC/msnbc_video-p-test?form=json&pretty=true&range=-40&byGuid=n_hardball_5biden_140207',
252         'md5': '6e32495b5073ab414471b615c5ded394',
253         'info_dict': {
254             'id': 'n_hardball_5biden_140207',
255             'ext': 'mp4',
256             'title': 'The Biden factor: will Joe run in 2016?',
257             'description': 'Could Vice President Joe Biden be preparing a 2016 campaign? Mark Halperin and Sam Stein weigh in.',
258             'thumbnail': 're:^https?://.*\.jpg$',
259             'upload_date': '20140208',
260             'timestamp': 1391824260,
261             'duration': 467.0,
262             'categories': ['MSNBC/Issues/Democrats', 'MSNBC/Issues/Elections/Election 2016'],
263         },
264     }
265
266     def _real_extract(self, url):
267         mobj = re.match(self._VALID_URL, url)
268
269         video_id = mobj.group('id')
270         provider_id = mobj.group('provider_id')
271         feed_id = mobj.group('feed_id')
272
273         real_url = self._URL_TEMPLATE % (self.http_scheme(), provider_id, feed_id, video_id)
274         feed = self._download_json(real_url, video_id)
275         entry = feed['entries'][0]
276
277         formats = []
278         subtitles = {}
279         first_video_id = None
280         duration = None
281         for item in entry['media$content']:
282             smil_url = item['plfile$url'] + '&mbr=true'
283             cur_video_id = ThePlatformIE._match_id(smil_url)
284             if first_video_id is None:
285                 first_video_id = cur_video_id
286                 duration = float_or_none(item.get('plfile$duration'))
287             cur_formats, cur_subtitles = self._extract_theplatform_smil(smil_url, video_id, 'Downloading SMIL data for %s' % cur_video_id)
288             formats.extend(cur_formats)
289             subtitles = self._merge_subtitles(subtitles, cur_subtitles)
290
291         self._sort_formats(formats)
292
293         thumbnails = [{
294             'url': thumbnail['plfile$url'],
295             'width': int_or_none(thumbnail.get('plfile$width')),
296             'height': int_or_none(thumbnail.get('plfile$height')),
297         } for thumbnail in entry.get('media$thumbnails', [])]
298
299         timestamp = int_or_none(entry.get('media$availableDate'), scale=1000)
300         categories = [item['media$name'] for item in entry.get('media$categories', [])]
301
302         ret = self.get_metadata('%s/%s' % (provider_id, first_video_id), video_id)
303         subtitles = self._merge_subtitles(subtitles, ret['subtitles'])
304         ret.update({
305             'id': video_id,
306             'formats': formats,
307             'subtitles': subtitles,
308             'thumbnails': thumbnails,
309             'duration': duration,
310             'timestamp': timestamp,
311             'categories': categories,
312         })
313
314         return ret