0be8a792f24d747286516684a6a6fb522f033fc7
[youtube-dl] / youtube_dl / extractor / viceland.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import time
5 import hashlib
6 import json
7
8 from .adobepass import AdobePass
9 from ..compat import compat_HTTPError
10 from ..utils import (
11     int_or_none,
12     parse_age_limit,
13     str_or_none,
14     parse_duration,
15     ExtractorError,
16     extract_attributes,
17 )
18
19
20 class VicelandIE(AdobePass):
21     _VALID_URL = r'https?://(?:www\.)?viceland\.com/[^/]+/video/[^/]+/(?P<id>[a-f0-9]+)'
22     _TEST = {
23         'url': 'https://www.viceland.com/en_us/video/cyberwar-trailer/57608447973ee7705f6fbd4e',
24         'info_dict': {
25             'id': '57608447973ee7705f6fbd4e',
26             'ext': 'mp4',
27             'title': 'CYBERWAR (Trailer)',
28             'description': 'Tapping into the geopolitics of hacking and surveillance, Ben Makuch travels the world to meet with hackers, government officials, and dissidents to investigate the ecosystem of cyberwarfare.',
29             'age_limit': 14,
30             'timestamp': 1466008539,
31             'upload_date': '20160615',
32             'uploader_id': '11',
33             'uploader': 'Viceland',
34         },
35         'params': {
36             # m3u8 download
37             'skip_download': True,
38         },
39         'add_ie': ['UplynkPreplay', 'Uplynk'],
40     }
41
42     def _real_extract(self, url):
43         video_id = self._match_id(url)
44
45         webpage = self._download_webpage(url, video_id)
46         watch_hub_data = extract_attributes(self._search_regex(
47             r'(?s)(<watch-hub\s*.+?</watch-hub>)', webpage, 'watch hub'))
48         video_id = watch_hub_data['vms-id']
49         title = watch_hub_data['video-title']
50
51         query = {}
52         if watch_hub_data.get('video-locked') == '1':
53             resource = self._get_mvpd_resource(
54                 'VICELAND', title, video_id,
55                 watch_hub_data.get('video-rating'))
56             query['tvetoken'] = self._extract_mvpd_auth(url, video_id, 'VICELAND', resource)
57
58         # signature generation algorithm is reverse engineered from signatureGenerator in
59         # webpack:///../shared/~/vice-player/dist/js/vice-player.js in
60         # https://www.viceland.com/assets/common/js/web.vendor.bundle.js
61         exp = int(time.time()) + 14400
62         query.update({
63             'exp': exp,
64             'sign': hashlib.sha512(('%s:GET:%d' % (video_id, exp)).encode()).hexdigest(),
65         })
66
67         try:
68             preplay = self._download_json('https://www.viceland.com/en_us/preplay/%s' % video_id, video_id, query=query)
69         except ExtractorError as e:
70             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
71                 error = json.loads(e.cause.read().decode())
72                 raise ExtractorError('%s said: %s' % (self.IE_NAME, error['details']), expected=True)
73
74         video_data = preplay['video']
75         base = video_data['base']
76         uplynk_preplay_url = preplay['preplayURL']
77         episode = video_data.get('episode', {})
78         channel = video_data.get('channel', {})
79
80         subtitles = {}
81         cc_url = preplay.get('ccURL')
82         if cc_url:
83             subtitles['en'] = [{
84                 'url': cc_url,
85             }]
86
87         return {
88             '_type': 'url_transparent',
89             'url': uplynk_preplay_url,
90             'id': video_id,
91             'title': title,
92             'description': base.get('body'),
93             'thumbnail': watch_hub_data.get('cover-image') or watch_hub_data.get('thumbnail'),
94             'duration': parse_duration(video_data.get('video_duration') or watch_hub_data.get('video-duration')),
95             'timestamp': int_or_none(video_data.get('created_at')),
96             'age_limit': parse_age_limit(video_data.get('video_rating')),
97             'series': video_data.get('show_title') or watch_hub_data.get('show-title'),
98             'episode_number': int_or_none(episode.get('episode_number') or watch_hub_data.get('episode')),
99             'episode_id': str_or_none(episode.get('id') or video_data.get('episode_id')),
100             'season_number': int_or_none(watch_hub_data.get('season')),
101             'season_id': str_or_none(episode.get('season_id')),
102             'uploader': channel.get('base', {}).get('title') or watch_hub_data.get('channel-title'),
103             'uploader_id': str_or_none(channel.get('id')),
104             'subtitles': subtitles,
105             'ie_key': 'UplynkPreplay',
106         }