]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vrv.py
New upstream version 2018.11.07
[youtubedl] / youtube_dl / extractor / vrv.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import base64
5 import json
6 import hashlib
7 import hmac
8 import random
9 import string
10 import time
11
12 from .common import InfoExtractor
13 from ..compat import (
14 compat_urllib_parse_urlencode,
15 compat_urllib_parse,
16 )
17 from ..utils import (
18 float_or_none,
19 int_or_none,
20 )
21
22
23 class VRVBaseIE(InfoExtractor):
24 _API_DOMAIN = None
25 _API_PARAMS = {}
26 _CMS_SIGNING = {}
27
28 def _call_api(self, path, video_id, note, data=None):
29 base_url = self._API_DOMAIN + '/core/' + path
30 encoded_query = compat_urllib_parse_urlencode({
31 'oauth_consumer_key': self._API_PARAMS['oAuthKey'],
32 'oauth_nonce': ''.join([random.choice(string.ascii_letters) for _ in range(32)]),
33 'oauth_signature_method': 'HMAC-SHA1',
34 'oauth_timestamp': int(time.time()),
35 'oauth_version': '1.0',
36 })
37 headers = self.geo_verification_headers()
38 if data:
39 data = json.dumps(data).encode()
40 headers['Content-Type'] = 'application/json'
41 method = 'POST' if data else 'GET'
42 base_string = '&'.join([method, compat_urllib_parse.quote(base_url, ''), compat_urllib_parse.quote(encoded_query, '')])
43 oauth_signature = base64.b64encode(hmac.new(
44 (self._API_PARAMS['oAuthSecret'] + '&').encode('ascii'),
45 base_string.encode(), hashlib.sha1).digest()).decode()
46 encoded_query += '&oauth_signature=' + compat_urllib_parse.quote(oauth_signature, '')
47 return self._download_json(
48 '?'.join([base_url, encoded_query]), video_id,
49 note='Downloading %s JSON metadata' % note, headers=headers, data=data)
50
51 def _call_cms(self, path, video_id, note):
52 if not self._CMS_SIGNING:
53 self._CMS_SIGNING = self._call_api('index', video_id, 'CMS Signing')['cms_signing']
54 return self._download_json(
55 self._API_DOMAIN + path, video_id, query=self._CMS_SIGNING,
56 note='Downloading %s JSON metadata' % note, headers=self.geo_verification_headers())
57
58 def _set_api_params(self, webpage, video_id):
59 if not self._API_PARAMS:
60 self._API_PARAMS = self._parse_json(self._search_regex(
61 r'window\.__APP_CONFIG__\s*=\s*({.+?})</script>',
62 webpage, 'api config'), video_id)['cxApiParams']
63 self._API_DOMAIN = self._API_PARAMS.get('apiDomain', 'https://api.vrv.co')
64
65 def _get_cms_resource(self, resource_key, video_id):
66 return self._call_api(
67 'cms_resource', video_id, 'resource path', data={
68 'resource_key': resource_key,
69 })['__links__']['cms_resource']['href']
70
71
72 class VRVIE(VRVBaseIE):
73 IE_NAME = 'vrv'
74 _VALID_URL = r'https?://(?:www\.)?vrv\.co/watch/(?P<id>[A-Z0-9]+)'
75 _TESTS = [{
76 'url': 'https://vrv.co/watch/GR9PNZ396/Hidden-America-with-Jonah-Ray:BOSTON-WHERE-THE-PAST-IS-THE-PRESENT',
77 'info_dict': {
78 'id': 'GR9PNZ396',
79 'ext': 'mp4',
80 'title': 'BOSTON: WHERE THE PAST IS THE PRESENT',
81 'description': 'md5:4ec8844ac262ca2df9e67c0983c6b83f',
82 'uploader_id': 'seeso',
83 },
84 'params': {
85 # m3u8 download
86 'skip_download': True,
87 },
88 }]
89
90 def _extract_vrv_formats(self, url, video_id, stream_format, audio_lang, hardsub_lang):
91 if not url or stream_format not in ('hls', 'dash'):
92 return []
93 assert audio_lang or hardsub_lang
94 stream_id_list = []
95 if audio_lang:
96 stream_id_list.append('audio-%s' % audio_lang)
97 if hardsub_lang:
98 stream_id_list.append('hardsub-%s' % hardsub_lang)
99 stream_id = '-'.join(stream_id_list)
100 format_id = '%s-%s' % (stream_format, stream_id)
101 if stream_format == 'hls':
102 adaptive_formats = self._extract_m3u8_formats(
103 url, video_id, 'mp4', m3u8_id=format_id,
104 note='Downloading %s m3u8 information' % stream_id,
105 fatal=False)
106 elif stream_format == 'dash':
107 adaptive_formats = self._extract_mpd_formats(
108 url, video_id, mpd_id=format_id,
109 note='Downloading %s MPD information' % stream_id,
110 fatal=False)
111 if audio_lang:
112 for f in adaptive_formats:
113 if f.get('acodec') != 'none':
114 f['language'] = audio_lang
115 return adaptive_formats
116
117 def _real_extract(self, url):
118 video_id = self._match_id(url)
119 webpage = self._download_webpage(
120 url, video_id,
121 headers=self.geo_verification_headers())
122 media_resource = self._parse_json(self._search_regex(
123 r'window\.__INITIAL_STATE__\s*=\s*({.+?})</script>',
124 webpage, 'inital state'), video_id).get('watch', {}).get('mediaResource') or {}
125
126 video_data = media_resource.get('json')
127 if not video_data:
128 self._set_api_params(webpage, video_id)
129 episode_path = self._get_cms_resource(
130 'cms:/episodes/' + video_id, video_id)
131 video_data = self._call_cms(episode_path, video_id, 'video')
132 title = video_data['title']
133
134 streams_json = media_resource.get('streams', {}).get('json', {})
135 if not streams_json:
136 self._set_api_params(webpage, video_id)
137 streams_path = video_data['__links__']['streams']['href']
138 streams_json = self._call_cms(streams_path, video_id, 'streams')
139
140 audio_locale = streams_json.get('audio_locale')
141 formats = []
142 for stream_type, streams in streams_json.get('streams', {}).items():
143 if stream_type in ('adaptive_hls', 'adaptive_dash'):
144 for stream in streams.values():
145 formats.extend(self._extract_vrv_formats(
146 stream.get('url'), video_id, stream_type.split('_')[1],
147 audio_locale, stream.get('hardsub_locale')))
148 self._sort_formats(formats)
149
150 subtitles = {}
151 for subtitle in streams_json.get('subtitles', {}).values():
152 subtitle_url = subtitle.get('url')
153 if not subtitle_url:
154 continue
155 subtitles.setdefault(subtitle.get('locale', 'en-US'), []).append({
156 'url': subtitle_url,
157 'ext': subtitle.get('format', 'ass'),
158 })
159
160 thumbnails = []
161 for thumbnail in video_data.get('images', {}).get('thumbnails', []):
162 thumbnail_url = thumbnail.get('source')
163 if not thumbnail_url:
164 continue
165 thumbnails.append({
166 'url': thumbnail_url,
167 'width': int_or_none(thumbnail.get('width')),
168 'height': int_or_none(thumbnail.get('height')),
169 })
170
171 return {
172 'id': video_id,
173 'title': title,
174 'formats': formats,
175 'subtitles': subtitles,
176 'thumbnails': thumbnails,
177 'description': video_data.get('description'),
178 'duration': float_or_none(video_data.get('duration_ms'), 1000),
179 'uploader_id': video_data.get('channel_id'),
180 'series': video_data.get('series_title'),
181 'season': video_data.get('season_title'),
182 'season_number': int_or_none(video_data.get('season_number')),
183 'season_id': video_data.get('season_id'),
184 'episode': title,
185 'episode_number': int_or_none(video_data.get('episode_number')),
186 'episode_id': video_data.get('production_episode_id'),
187 }
188
189
190 class VRVSeriesIE(VRVBaseIE):
191 IE_NAME = 'vrv:series'
192 _VALID_URL = r'https?://(?:www\.)?vrv\.co/series/(?P<id>[A-Z0-9]+)'
193 _TEST = {
194 'url': 'https://vrv.co/series/G68VXG3G6/The-Perfect-Insider',
195 'info_dict': {
196 'id': 'G68VXG3G6',
197 },
198 'playlist_mincount': 11,
199 }
200
201 def _real_extract(self, url):
202 series_id = self._match_id(url)
203 webpage = self._download_webpage(
204 url, series_id,
205 headers=self.geo_verification_headers())
206
207 self._set_api_params(webpage, series_id)
208 seasons_path = self._get_cms_resource(
209 'cms:/seasons?series_id=' + series_id, series_id)
210 seasons_data = self._call_cms(seasons_path, series_id, 'seasons')
211
212 entries = []
213 for season in seasons_data.get('items', []):
214 episodes_path = season['__links__']['season/episodes']['href']
215 episodes = self._call_cms(episodes_path, series_id, 'episodes')
216 for episode in episodes.get('items', []):
217 episode_id = episode['id']
218 entries.append(self.url_result(
219 'https://vrv.co/watch/' + episode_id,
220 'VRV', episode_id, episode.get('title')))
221
222 return self.playlist_result(entries, series_id)