[vice] Support Vice articles (closes #12968)
[youtube-dl] / youtube_dl / extractor / vice.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5 import time
6 import hashlib
7 import json
8
9 from .adobepass import AdobePassIE
10 from .common import InfoExtractor
11 from ..compat import compat_HTTPError
12 from ..utils import (
13     int_or_none,
14     parse_age_limit,
15     str_or_none,
16     parse_duration,
17     ExtractorError,
18     extract_attributes,
19 )
20
21
22 class ViceBaseIE(AdobePassIE):
23     def _extract_preplay_video(self, url, locale, webpage):
24         watch_hub_data = extract_attributes(self._search_regex(
25             r'(?s)(<watch-hub\s*.+?</watch-hub>)', webpage, 'watch hub'))
26         video_id = watch_hub_data['vms-id']
27         title = watch_hub_data['video-title']
28
29         query = {}
30         is_locked = watch_hub_data.get('video-locked') == '1'
31         if is_locked:
32             resource = self._get_mvpd_resource(
33                 'VICELAND', title, video_id,
34                 watch_hub_data.get('video-rating'))
35             query['tvetoken'] = self._extract_mvpd_auth(url, video_id, 'VICELAND', resource)
36
37         # signature generation algorithm is reverse engineered from signatureGenerator in
38         # webpack:///../shared/~/vice-player/dist/js/vice-player.js in
39         # https://www.viceland.com/assets/common/js/web.vendor.bundle.js
40         exp = int(time.time()) + 14400
41         query.update({
42             'exp': exp,
43             'sign': hashlib.sha512(('%s:GET:%d' % (video_id, exp)).encode()).hexdigest(),
44         })
45
46         try:
47             host = 'www.viceland' if is_locked else self._PREPLAY_HOST
48             preplay = self._download_json('https://%s.com/%s/preplay/%s' % (host, locale, video_id), video_id, query=query)
49         except ExtractorError as e:
50             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
51                 error = json.loads(e.cause.read().decode())
52                 raise ExtractorError('%s said: %s' % (self.IE_NAME, error['details']), expected=True)
53             raise
54
55         video_data = preplay['video']
56         base = video_data['base']
57         uplynk_preplay_url = preplay['preplayURL']
58         episode = video_data.get('episode', {})
59         channel = video_data.get('channel', {})
60
61         subtitles = {}
62         cc_url = preplay.get('ccURL')
63         if cc_url:
64             subtitles['en'] = [{
65                 'url': cc_url,
66             }]
67
68         return {
69             '_type': 'url_transparent',
70             'url': uplynk_preplay_url,
71             'id': video_id,
72             'title': title,
73             'description': base.get('body') or base.get('display_body'),
74             'thumbnail': watch_hub_data.get('cover-image') or watch_hub_data.get('thumbnail'),
75             'duration': int_or_none(video_data.get('video_duration')) or parse_duration(watch_hub_data.get('video-duration')),
76             'timestamp': int_or_none(video_data.get('created_at'), 1000),
77             'age_limit': parse_age_limit(video_data.get('video_rating')),
78             'series': video_data.get('show_title') or watch_hub_data.get('show-title'),
79             'episode_number': int_or_none(episode.get('episode_number') or watch_hub_data.get('episode')),
80             'episode_id': str_or_none(episode.get('id') or video_data.get('episode_id')),
81             'season_number': int_or_none(watch_hub_data.get('season')),
82             'season_id': str_or_none(episode.get('season_id')),
83             'uploader': channel.get('base', {}).get('title') or watch_hub_data.get('channel-title'),
84             'uploader_id': str_or_none(channel.get('id')),
85             'subtitles': subtitles,
86             'ie_key': 'UplynkPreplay',
87         }
88
89
90 class ViceIE(ViceBaseIE):
91     _VALID_URL = r'https?://(?:.+?\.)?vice\.com/(?P<locale>[^/]+)/(?:[^/]+/)?videos?/(?P<id>[^/?#&]+)'
92
93     _TESTS = [{
94         'url': 'http://www.vice.com/video/cowboy-capitalists-part-1',
95         'md5': 'e9d77741f9e42ba583e683cd170660f7',
96         'info_dict': {
97             'id': '43cW1mYzpia9IlestBjVpd23Yu3afAfp',
98             'ext': 'flv',
99             'title': 'VICE_COWBOYCAPITALISTS_PART01_v1_VICE_WM_1080p.mov',
100             'duration': 725.983,
101         },
102         'add_ie': ['Ooyala'],
103     }, {
104         'url': 'https://video.vice.com/en_us/video/the-signal-from-tolva/5816510690b70e6c5fd39a56',
105         'info_dict': {
106             'id': '5816510690b70e6c5fd39a56',
107             'ext': 'mp4',
108             'uploader': 'Waypoint',
109             'title': 'The Signal From Tölva',
110             'description': 'md5:3927e3c79f9e8094606a2b3c5b5e55d5',
111             'uploader_id': '57f7d621e05ca860fa9ccaf9',
112             'timestamp': 1477941983,
113             'upload_date': '20161031',
114         },
115         'params': {
116             # m3u8 download
117             'skip_download': True,
118         },
119         'add_ie': ['UplynkPreplay'],
120     }, {
121         'url': 'https://video.vice.com/alps/video/ulfs-wien-beruchtigste-grafitti-crew-part-1/581b12b60a0e1f4c0fb6ea2f',
122         'info_dict': {
123             'id': '581b12b60a0e1f4c0fb6ea2f',
124             'ext': 'mp4',
125             'title': 'ULFs - Wien berüchtigste Grafitti Crew - Part 1',
126             'description': '<p>Zwischen Hinterzimmer-Tattoos und U-Bahnschächten erzählen uns die Ulfs, wie es ist, "süchtig nach Sachbeschädigung" zu sein.</p>',
127             'uploader': 'VICE',
128             'uploader_id': '57a204088cb727dec794c67b',
129             'timestamp': 1485368119,
130             'upload_date': '20170125',
131             'age_limit': 14,
132         },
133         'params': {
134             # AES-encrypted m3u8
135             'skip_download': True,
136         },
137         'add_ie': ['UplynkPreplay'],
138     }, {
139         'url': 'https://news.vice.com/video/experimenting-on-animals-inside-the-monkey-lab',
140         'only_matching': True,
141     }, {
142         'url': 'http://www.vice.com/ru/video/big-night-out-ibiza-clive-martin-229',
143         'only_matching': True,
144     }, {
145         'url': 'https://munchies.vice.com/en/videos/watch-the-trailer-for-our-new-series-the-pizza-show',
146         'only_matching': True,
147     }]
148     _PREPLAY_HOST = 'video.vice'
149
150     def _real_extract(self, url):
151         mobj = re.match(self._VALID_URL, url)
152         video_id = mobj.group('id')
153         locale = mobj.group('locale')
154         video_id = self._match_id(url)
155         webpage, urlh = self._download_webpage_handle(url, video_id)
156         embed_code = self._search_regex(
157             r'embedCode=([^&\'"]+)', webpage,
158             'ooyala embed code', default=None)
159         if embed_code:
160             return self.url_result('ooyala:%s' % embed_code, 'Ooyala')
161         youtube_id = self._search_regex(
162             r'data-youtube-id="([^"]+)"', webpage, 'youtube id', default=None)
163         if youtube_id:
164             return self.url_result(youtube_id, 'Youtube')
165         return self._extract_preplay_video(urlh.geturl(), locale, webpage)
166
167
168 class ViceShowIE(InfoExtractor):
169     _VALID_URL = r'https?://(?:.+?\.)?vice\.com/(?:[^/]+/)?show/(?P<id>[^/?#&]+)'
170
171     _TEST = {
172         'url': 'https://munchies.vice.com/en/show/fuck-thats-delicious-2',
173         'info_dict': {
174             'id': 'fuck-thats-delicious-2',
175             'title': "Fuck, That's Delicious",
176             'description': 'Follow the culinary adventures of rapper Action Bronson during his ongoing world tour.',
177         },
178         'playlist_count': 17,
179     }
180
181     def _real_extract(self, url):
182         show_id = self._match_id(url)
183         webpage = self._download_webpage(url, show_id)
184
185         entries = [
186             self.url_result(video_url, ViceIE.ie_key())
187             for video_url, _ in re.findall(
188                 r'<h2[^>]+class="article-title"[^>]+data-id="\d+"[^>]*>\s*<a[^>]+href="(%s.*?)"'
189                 % ViceIE._VALID_URL, webpage)]
190
191         title = self._search_regex(
192             r'<title>(.+?)</title>', webpage, 'title', default=None)
193         if title:
194             title = re.sub(r'(.+)\s*\|\s*.+$', r'\1', title).strip()
195         description = self._html_search_meta('description', webpage, 'description')
196
197         return self.playlist_result(entries, show_id, title, description)
198
199
200 class ViceArticleIE(InfoExtractor):
201     _VALID_URL = r'https://www.vice.com/[^/]+/article/(?P<id>[^?#]+)'
202
203     _TESTS = [{
204         'url': 'https://www.vice.com/en_us/article/on-set-with-the-woman-making-mormon-porn-in-utah',
205         'info_dict': {
206             'id': '58dc0a3dee202d2a0ccfcbd8',
207             'ext': 'mp4',
208             'title': 'Mormon War on Porn ',
209             'description': 'md5:ad396a2481e7f8afb5ed486878421090',
210             'uploader': 'VICE',
211             'uploader_id': '57a204088cb727dec794c693',
212             'timestamp': 1489160690,
213             'upload_date': '20170310',
214         },
215         'params': {
216             # AES-encrypted m3u8
217             'skip_download': True,
218         },
219     }, {
220         'url': 'http://www.vice.com/video/how-to-hack-a-car',
221         'md5': 'a7ecf64ee4fa19b916c16f4b56184ae2',
222         'info_dict': {
223             'id': '3jstaBeXgAs',
224             'ext': 'mp4',
225             'title': 'How to Hack a Car: Phreaked Out (Episode 2)',
226             'description': 'md5:ee95453f7ff495db8efe14ae8bf56f30',
227             'uploader_id': 'MotherboardTV',
228             'uploader': 'Motherboard',
229             'upload_date': '20140529',
230         },
231         'add_ie': ['Youtube'],
232     }]
233
234     def _real_extract(self, url):
235         display_id = self._match_id(url)
236
237         webpage = self._download_webpage(url, display_id)
238
239         prefetch_data = self._parse_json(self._search_regex(
240             r'window\.__PREFETCH_DATA\s*=\s*({.*});',
241             webpage, 'prefetch data'), display_id)
242         body = prefetch_data['body']
243         youtube_url = self._html_search_regex(
244             r'<iframe[^>]+src="(.*youtube\.com/.*)"', body, 'YouTube URL', default=None)
245         if youtube_url:
246             return {
247                 '_type': 'url_transparent',
248                 'url': youtube_url,
249                 'display_id': display_id,
250                 'ie_key': 'Youtube',
251             }
252
253         video_url = self._html_search_regex(
254             r'data-video-url="([^"]+)"', prefetch_data['embed_code'], 'video URL')
255
256         return {
257             '_type': 'url_transparent',
258             'url': video_url,
259             'display_id': display_id,
260             'ie_key': ViceIE.ie_key(),
261         }