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