[nexx] Update tests
[youtube-dl] / youtube_dl / extractor / nexx.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import hashlib
5 import random
6 import re
7 import time
8
9 from .common import InfoExtractor
10 from ..compat import compat_str
11 from ..utils import (
12     ExtractorError,
13     int_or_none,
14     parse_duration,
15     try_get,
16     urlencode_postdata,
17 )
18
19
20 class NexxIE(InfoExtractor):
21     _VALID_URL = r'''(?x)
22                         (?:
23                             https?://api\.nexx(?:\.cloud|cdn\.com)/v3/(?P<domain_id>\d+)/videos/byid/|
24                             nexx:(?:(?P<domain_id_s>\d+):)?|
25                             https?://arc\.nexx\.cloud/api/video/
26                         )
27                         (?P<id>\d+)
28                     '''
29     _TESTS = [{
30         # movie
31         'url': 'https://api.nexx.cloud/v3/748/videos/byid/128907',
32         'md5': '31899fd683de49ad46f4ee67e53e83fe',
33         'info_dict': {
34             'id': '128907',
35             'ext': 'mp4',
36             'title': 'Stiftung Warentest',
37             'alt_title': 'Wie ein Test abläuft',
38             'description': 'md5:d1ddb1ef63de721132abd38639cc2fd2',
39             'creator': 'SPIEGEL TV',
40             'thumbnail': r're:^https?://.*\.jpg$',
41             'duration': 2509,
42             'timestamp': 1384264416,
43             'upload_date': '20131112',
44         },
45     }, {
46         # episode
47         'url': 'https://api.nexx.cloud/v3/741/videos/byid/247858',
48         'info_dict': {
49             'id': '247858',
50             'ext': 'mp4',
51             'title': 'Return of the Golden Child (OV)',
52             'description': 'md5:5d969537509a92b733de21bae249dc63',
53             'release_year': 2017,
54             'thumbnail': r're:^https?://.*\.jpg$',
55             'duration': 1397,
56             'timestamp': 1495033267,
57             'upload_date': '20170517',
58             'episode_number': 2,
59             'season_number': 2,
60         },
61         'params': {
62             'skip_download': True,
63         },
64         'skip': 'HTTP Error 404: Not Found',
65     }, {
66         # does not work via arc
67         'url': 'nexx:741:1269984',
68         'md5': 'c714b5b238b2958dc8d5642addba6886',
69         'info_dict': {
70             'id': '1269984',
71             'ext': 'mp4',
72             'title': '1 TAG ohne KLO... wortwörtlich! 😑',
73             'alt_title': '1 TAG ohne KLO... wortwörtlich! 😑',
74             'thumbnail': r're:^https?://.*\.jpg$',
75             'duration': 607,
76             'timestamp': 1518614955,
77             'upload_date': '20180214',
78         },
79     }, {
80         # free cdn from http://www.spiegel.de/video/eifel-zoo-aufregung-um-ausgebrochene-raubtiere-video-99018031.html
81         'url': 'nexx:747:1533779',
82         'md5': '6bf6883912b82b7069fb86c2297e9893',
83         'info_dict': {
84             'id': '1533779',
85             'ext': 'mp4',
86             'title': 'Aufregung um ausgebrochene Raubtiere',
87             'alt_title': 'Eifel-Zoo',
88             'description': 'md5:f21375c91c74ad741dcb164c427999d2',
89             'thumbnail': r're:^https?://.*\.jpg$',
90             'duration': 111,
91             'timestamp': 1527874460,
92             'upload_date': '20180601',
93         },
94     }, {
95         'url': 'https://api.nexxcdn.com/v3/748/videos/byid/128907',
96         'only_matching': True,
97     }, {
98         'url': 'nexx:748:128907',
99         'only_matching': True,
100     }, {
101         'url': 'nexx:128907',
102         'only_matching': True,
103     }, {
104         'url': 'https://arc.nexx.cloud/api/video/128907.json',
105         'only_matching': True,
106     }]
107
108     @staticmethod
109     def _extract_domain_id(webpage):
110         mobj = re.search(
111             r'<script\b[^>]+\bsrc=["\'](?:https?:)?//require\.nexx(?:\.cloud|cdn\.com)/(?P<id>\d+)',
112             webpage)
113         return mobj.group('id') if mobj else None
114
115     @staticmethod
116     def _extract_urls(webpage):
117         # Reference:
118         # 1. https://nx-s.akamaized.net/files/201510/44.pdf
119
120         entries = []
121
122         # JavaScript Integration
123         domain_id = NexxIE._extract_domain_id(webpage)
124         if domain_id:
125             for video_id in re.findall(
126                     r'(?is)onPLAYReady.+?_play\.init\s*\(.+?\s*,\s*["\']?(\d+)',
127                     webpage):
128                 entries.append(
129                     'https://api.nexx.cloud/v3/%s/videos/byid/%s'
130                     % (domain_id, video_id))
131
132         # TODO: support more embed formats
133
134         return entries
135
136     @staticmethod
137     def _extract_url(webpage):
138         return NexxIE._extract_urls(webpage)[0]
139
140     def _handle_error(self, response):
141         status = int_or_none(try_get(
142             response, lambda x: x['metadata']['status']) or 200)
143         if 200 <= status < 300:
144             return
145         raise ExtractorError(
146             '%s said: %s' % (self.IE_NAME, response['metadata']['errorhint']),
147             expected=True)
148
149     def _call_api(self, domain_id, path, video_id, data=None, headers={}):
150         headers['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8'
151         result = self._download_json(
152             'https://api.nexx.cloud/v3/%s/%s' % (domain_id, path), video_id,
153             'Downloading %s JSON' % path, data=urlencode_postdata(data),
154             headers=headers)
155         self._handle_error(result)
156         return result['result']
157
158     def _extract_free_formats(self, video, video_id):
159         stream_data = video['streamdata']
160         cdn = stream_data['cdnType']
161         assert cdn == 'free'
162
163         hash = video['general']['hash']
164
165         ps = compat_str(stream_data['originalDomain'])
166         if stream_data['applyFolderHierarchy'] == 1:
167             s = ('%04d' % int(video_id))[::-1]
168             ps += '/%s/%s' % (s[0:2], s[2:4])
169         ps += '/%s/%s_' % (video_id, hash)
170
171         formats = [{
172             'url': 'http://%s%s2500_var.mp4' % (stream_data['cdnPathHTTP'], ps),
173             'format_id': '%s-http' % cdn,
174         }]
175
176         def make_url(root, protocol):
177             t = 'http://' + root + ps
178             fd = stream_data['azureFileDistribution'].split(',')
179             cdn_provider = stream_data['cdnProvider']
180
181             def p0(p):
182                 return '_%s' % int(p[0]) if stream_data['applyAzureStructure'] == 1 else ''
183
184             if cdn_provider == 'ak':
185                 t += ','
186                 for i in fd:
187                     p = i.split(':')
188                     t += p[1] + p0(p) + ','
189                 t += '.mp4.csmil/master.m3u8'
190             elif cdn_provider == 'ce':
191                 k = t.split('/')
192                 h = k.pop()
193                 t = '/'.join(k)
194                 t += '/asset.ism/manifest.' + ('m3u8' if protocol == 'hls' else 'mpd') + '?dcp_ver=aos4&videostream='
195                 for i in fd:
196                     p = i.split(':')
197                     a = '%s%s%s.mp4:%s' % (h, p[1], p0(p), int(p[0]) * 1000)
198                     t += a + ','
199                 t = t[:-1] + '&audiostream=' + a.split(':')[0]
200             return t
201
202         formats.extend(self._extract_mpd_formats(
203             make_url(stream_data['cdnPathDASH'], 'dash'), video_id,
204             mpd_id='%s-dash' % cdn, fatal=False))
205         formats.extend(self._extract_m3u8_formats(
206             make_url(stream_data['cdnPathHLS'], 'hls'), video_id, 'mp4',
207             entry_protocol='m3u8_native', m3u8_id='%s-hls' % cdn, fatal=False))
208
209         return formats
210
211     def _extract_azure_formats(self, video, video_id):
212         stream_data = video['streamdata']
213         cdn = stream_data['cdnType']
214         assert cdn == 'azure'
215
216         azure_locator = stream_data['azureLocator']
217
218         def get_cdn_shield_base(shield_type='', static=False):
219             for secure in ('', 's'):
220                 cdn_shield = stream_data.get('cdnShield%sHTTP%s' % (shield_type, secure.upper()))
221                 if cdn_shield:
222                     return 'http%s://%s' % (secure, cdn_shield)
223             else:
224                 if 'fb' in stream_data['azureAccount']:
225                     prefix = 'df' if static else 'f'
226                 else:
227                     prefix = 'd' if static else 'p'
228                 account = int(stream_data['azureAccount'].replace('nexxplayplus', '').replace('nexxplayfb', ''))
229                 return 'http://nx-%s%02d.akamaized.net/' % (prefix, account)
230
231         language = video['general'].get('language_raw') or ''
232
233         azure_stream_base = get_cdn_shield_base()
234         is_ml = ',' in language
235         azure_manifest_url = '%s%s/%s_src%s.ism/Manifest' % (
236             azure_stream_base, azure_locator, video_id, ('_manifest' if is_ml else '')) + '%s'
237
238         protection_token = try_get(
239             video, lambda x: x['protectiondata']['token'], compat_str)
240         if protection_token:
241             azure_manifest_url += '?hdnts=%s' % protection_token
242
243         formats = self._extract_m3u8_formats(
244             azure_manifest_url % '(format=m3u8-aapl)',
245             video_id, 'mp4', 'm3u8_native',
246             m3u8_id='%s-hls' % cdn, fatal=False)
247         formats.extend(self._extract_mpd_formats(
248             azure_manifest_url % '(format=mpd-time-csf)',
249             video_id, mpd_id='%s-dash' % cdn, fatal=False))
250         formats.extend(self._extract_ism_formats(
251             azure_manifest_url % '', video_id, ism_id='%s-mss' % cdn, fatal=False))
252
253         azure_progressive_base = get_cdn_shield_base('Prog', True)
254         azure_file_distribution = stream_data.get('azureFileDistribution')
255         if azure_file_distribution:
256             fds = azure_file_distribution.split(',')
257             if fds:
258                 for fd in fds:
259                     ss = fd.split(':')
260                     if len(ss) == 2:
261                         tbr = int_or_none(ss[0])
262                         if tbr:
263                             f = {
264                                 'url': '%s%s/%s_src_%s_%d.mp4' % (
265                                     azure_progressive_base, azure_locator, video_id, ss[1], tbr),
266                                 'format_id': '%s-http-%d' % (cdn, tbr),
267                                 'tbr': tbr,
268                             }
269                             width_height = ss[1].split('x')
270                             if len(width_height) == 2:
271                                 f.update({
272                                     'width': int_or_none(width_height[0]),
273                                     'height': int_or_none(width_height[1]),
274                                 })
275                             formats.append(f)
276
277         return formats
278
279     def _real_extract(self, url):
280         mobj = re.match(self._VALID_URL, url)
281         domain_id = mobj.group('domain_id') or mobj.group('domain_id_s')
282         video_id = mobj.group('id')
283
284         video = None
285
286         response = self._download_json(
287             'https://arc.nexx.cloud/api/video/%s.json' % video_id,
288             video_id, fatal=False)
289         if response and isinstance(response, dict):
290             result = response.get('result')
291             if result and isinstance(result, dict):
292                 video = result
293
294         # not all videos work via arc, e.g. nexx:741:1269984
295         if not video:
296             # Reverse engineered from JS code (see getDeviceID function)
297             device_id = '%d:%d:%d%d' % (
298                 random.randint(1, 4), int(time.time()),
299                 random.randint(1e4, 99999), random.randint(1, 9))
300
301             result = self._call_api(domain_id, 'session/init', video_id, data={
302                 'nxp_devh': device_id,
303                 'nxp_userh': '',
304                 'precid': '0',
305                 'playlicense': '0',
306                 'screenx': '1920',
307                 'screeny': '1080',
308                 'playerversion': '6.0.00',
309                 'gateway': 'html5',
310                 'adGateway': '',
311                 'explicitlanguage': 'en-US',
312                 'addTextTemplates': '1',
313                 'addDomainData': '1',
314                 'addAdModel': '1',
315             }, headers={
316                 'X-Request-Enable-Auth-Fallback': '1',
317             })
318
319             cid = result['general']['cid']
320
321             # As described in [1] X-Request-Token generation algorithm is
322             # as follows:
323             #   md5( operation + domain_id + domain_secret )
324             # where domain_secret is a static value that will be given by nexx.tv
325             # as per [1]. Here is how this "secret" is generated (reversed
326             # from _play.api.init function, search for clienttoken). So it's
327             # actually not static and not that much of a secret.
328             # 1. https://nexxtvstorage.blob.core.windows.net/files/201610/27.pdf
329             secret = result['device']['clienttoken'][int(device_id[0]):]
330             secret = secret[0:len(secret) - int(device_id[-1])]
331
332             op = 'byid'
333
334             # Reversed from JS code for _play.api.call function (search for
335             # X-Request-Token)
336             request_token = hashlib.md5(
337                 ''.join((op, domain_id, secret)).encode('utf-8')).hexdigest()
338
339             video = self._call_api(
340                 domain_id, 'videos/%s/%s' % (op, video_id), video_id, data={
341                     'additionalfields': 'language,channel,actors,studio,licenseby,slug,subtitle,teaser,description',
342                     'addInteractionOptions': '1',
343                     'addStatusDetails': '1',
344                     'addStreamDetails': '1',
345                     'addCaptions': '1',
346                     'addScenes': '1',
347                     'addHotSpots': '1',
348                     'addBumpers': '1',
349                     'captionFormat': 'data',
350                 }, headers={
351                     'X-Request-CID': cid,
352                     'X-Request-Token': request_token,
353                 })
354
355         general = video['general']
356         title = general['title']
357
358         cdn = video['streamdata']['cdnType']
359
360         if cdn == 'azure':
361             formats = self._extract_azure_formats(video, video_id)
362         elif cdn == 'free':
363             formats = self._extract_free_formats(video, video_id)
364         else:
365             # TODO: reverse more cdns
366             assert False
367
368         self._sort_formats(formats)
369
370         return {
371             'id': video_id,
372             'title': title,
373             'alt_title': general.get('subtitle'),
374             'description': general.get('description'),
375             'release_year': int_or_none(general.get('year')),
376             'creator': general.get('studio') or general.get('studio_adref'),
377             'thumbnail': try_get(
378                 video, lambda x: x['imagedata']['thumb'], compat_str),
379             'duration': parse_duration(general.get('runtime')),
380             'timestamp': int_or_none(general.get('uploaded')),
381             'episode_number': int_or_none(try_get(
382                 video, lambda x: x['episodedata']['episode'])),
383             'season_number': int_or_none(try_get(
384                 video, lambda x: x['episodedata']['season'])),
385             'formats': formats,
386         }
387
388
389 class NexxEmbedIE(InfoExtractor):
390     _VALID_URL = r'https?://embed\.nexx(?:\.cloud|cdn\.com)/\d+/(?P<id>[^/?#&]+)'
391     _TEST = {
392         'url': 'http://embed.nexx.cloud/748/KC1614647Z27Y7T?autoplay=1',
393         'md5': '16746bfc28c42049492385c989b26c4a',
394         'info_dict': {
395             'id': '161464',
396             'ext': 'mp4',
397             'title': 'Nervenkitzel Achterbahn',
398             'alt_title': 'Karussellbauer in Deutschland',
399             'description': 'md5:ffe7b1cc59a01f585e0569949aef73cc',
400             'release_year': 2005,
401             'creator': 'SPIEGEL TV',
402             'thumbnail': r're:^https?://.*\.jpg$',
403             'duration': 2761,
404             'timestamp': 1394021479,
405             'upload_date': '20140305',
406         },
407         'params': {
408             'format': 'bestvideo',
409             'skip_download': True,
410         },
411     }
412
413     @staticmethod
414     def _extract_urls(webpage):
415         # Reference:
416         # 1. https://nx-s.akamaized.net/files/201510/44.pdf
417
418         # iFrame Embed Integration
419         return [mobj.group('url') for mobj in re.finditer(
420             r'<iframe[^>]+\bsrc=(["\'])(?P<url>(?:https?:)?//embed\.nexx(?:\.cloud|cdn\.com)/\d+/(?:(?!\1).)+)\1',
421             webpage)]
422
423     def _real_extract(self, url):
424         embed_id = self._match_id(url)
425
426         webpage = self._download_webpage(url, embed_id)
427
428         return self.url_result(NexxIE._extract_url(webpage), ie=NexxIE.ie_key())