7f1146d957531f144bf54f8a59265bd4ef6782c2
[youtube-dl] / youtube_dl / extractor / ivi.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5 import json
6
7 from .common import InfoExtractor
8 from ..utils import (
9     ExtractorError,
10     int_or_none,
11     qualities,
12 )
13
14
15 class IviIE(InfoExtractor):
16     IE_DESC = 'ivi.ru'
17     IE_NAME = 'ivi'
18     _VALID_URL = r'https?://(?:www\.)?ivi\.(?:ru|tv)/(?:watch/(?:[^/]+/)?|video/player\?.*?videoId=)(?P<id>\d+)'
19     _GEO_BYPASS = False
20     _GEO_COUNTRIES = ['RU']
21     _LIGHT_KEY = b'\xf1\x02\x32\xb7\xbc\x5c\x7a\xe8\xf7\x96\xc1\x33\x2b\x27\xa1\x8c'
22     _LIGHT_URL = 'https://api.ivi.ru/light/'
23
24     _TESTS = [
25         # Single movie
26         {
27             'url': 'http://www.ivi.ru/watch/53141',
28             'md5': '6ff5be2254e796ed346251d117196cf4',
29             'info_dict': {
30                 'id': '53141',
31                 'ext': 'mp4',
32                 'title': 'Иван Васильевич меняет профессию',
33                 'description': 'md5:b924063ea1677c8fe343d8a72ac2195f',
34                 'duration': 5498,
35                 'thumbnail': r're:^https?://.*\.jpg$',
36             },
37             'skip': 'Only works from Russia',
38         },
39         # Serial's series
40         {
41             'url': 'http://www.ivi.ru/watch/dvoe_iz_lartsa/9549',
42             'md5': '221f56b35e3ed815fde2df71032f4b3e',
43             'info_dict': {
44                 'id': '9549',
45                 'ext': 'mp4',
46                 'title': 'Двое из ларца - Дело Гольдберга (1 часть)',
47                 'series': 'Двое из ларца',
48                 'season': 'Сезон 1',
49                 'season_number': 1,
50                 'episode': 'Дело Гольдберга (1 часть)',
51                 'episode_number': 1,
52                 'duration': 2655,
53                 'thumbnail': r're:^https?://.*\.jpg$',
54             },
55             'skip': 'Only works from Russia',
56         },
57         {
58             # with MP4-HD720 format
59             'url': 'http://www.ivi.ru/watch/146500',
60             'md5': 'd63d35cdbfa1ea61a5eafec7cc523e1e',
61             'info_dict': {
62                 'id': '146500',
63                 'ext': 'mp4',
64                 'title': 'Кукла',
65                 'description': 'md5:ffca9372399976a2d260a407cc74cce6',
66                 'duration': 5599,
67                 'thumbnail': r're:^https?://.*\.jpg$',
68             },
69             'skip': 'Only works from Russia',
70         },
71         {
72             'url': 'https://www.ivi.tv/watch/33560/',
73             'only_matching': True,
74         },
75     ]
76
77     # Sorted by quality
78     _KNOWN_FORMATS = (
79         'MP4-low-mobile', 'MP4-mobile', 'FLV-lo', 'MP4-lo', 'FLV-hi', 'MP4-hi',
80         'MP4-SHQ', 'MP4-HD720', 'MP4-HD1080')
81
82     def _real_extract(self, url):
83         video_id = self._match_id(url)
84
85         data = json.dumps({
86             'method': 'da.content.get',
87             'params': [
88                 video_id, {
89                     'site': 's%d',
90                     'referrer': 'http://www.ivi.ru/watch/%s' % video_id,
91                     'contentid': video_id
92                 }
93             ]
94         }).encode()
95
96         try:
97             from Crypto.Cipher import Blowfish
98             from Crypto.Hash import CMAC
99
100             timestamp = self._download_json(
101                 self._LIGHT_URL, video_id,
102                 'Downloading timestamp JSON', data=json.dumps({
103                     'method': 'da.timestamp.get',
104                     'params': []
105                 }).encode())['result']
106
107             data = data % 353
108             query = {
109                 'ts': timestamp,
110                 'sign': CMAC.new(self._LIGHT_KEY, timestamp.encode() + data, Blowfish).hexdigest(),
111             }
112         except ImportError:
113             data = data % 183
114             query = {}
115
116         video_json = self._download_json(
117             self._LIGHT_URL, video_id,
118             'Downloading video JSON', data=data, query=query)
119
120         error = video_json.get('error')
121         if error:
122             origin = error.get('origin')
123             message = error.get('message') or error.get('user_message')
124             extractor_msg = 'Unable to download video %s'
125             if origin == 'NotAllowedForLocation':
126                 self.raise_geo_restricted(message, self._GEO_COUNTRIES)
127             elif origin == 'NoRedisValidData':
128                 extractor_msg = 'Video %s does not exist'
129             elif message:
130                 if 'недоступен для просмотра на площадке s183' in message:
131                     raise ExtractorError(
132                         'pycryptodome not found. Please install it.',
133                         expected=True)
134                 extractor_msg += ': ' + message
135             raise ExtractorError(extractor_msg % video_id, expected=True)
136
137         result = video_json['result']
138         title = result['title']
139
140         quality = qualities(self._KNOWN_FORMATS)
141
142         formats = []
143         for f in result.get('files', []):
144             f_url = f.get('url')
145             content_format = f.get('content_format')
146             if not f_url or '-MDRM-' in content_format or '-FPS-' in content_format:
147                 continue
148             formats.append({
149                 'url': f_url,
150                 'format_id': content_format,
151                 'quality': quality(content_format),
152                 'filesize': int_or_none(f.get('size_in_bytes')),
153             })
154         self._sort_formats(formats)
155
156         compilation = result.get('compilation')
157         episode = title if compilation else None
158
159         title = '%s - %s' % (compilation, title) if compilation is not None else title
160
161         thumbnails = [{
162             'url': preview['url'],
163             'id': preview.get('content_format'),
164         } for preview in result.get('preview', []) if preview.get('url')]
165
166         webpage = self._download_webpage(url, video_id)
167
168         season = self._search_regex(
169             r'<li[^>]+class="season active"[^>]*><a[^>]+>([^<]+)',
170             webpage, 'season', default=None)
171         season_number = int_or_none(self._search_regex(
172             r'<li[^>]+class="season active"[^>]*><a[^>]+data-season(?:-index)?="(\d+)"',
173             webpage, 'season number', default=None))
174
175         episode_number = int_or_none(self._search_regex(
176             r'[^>]+itemprop="episode"[^>]*>\s*<meta[^>]+itemprop="episodeNumber"[^>]+content="(\d+)',
177             webpage, 'episode number', default=None))
178
179         description = self._og_search_description(webpage, default=None) or self._html_search_meta(
180             'description', webpage, 'description', default=None)
181
182         return {
183             'id': video_id,
184             'title': title,
185             'series': compilation,
186             'season': season,
187             'season_number': season_number,
188             'episode': episode,
189             'episode_number': episode_number,
190             'thumbnails': thumbnails,
191             'description': description,
192             'duration': int_or_none(result.get('duration')),
193             'formats': formats,
194         }
195
196
197 class IviCompilationIE(InfoExtractor):
198     IE_DESC = 'ivi.ru compilations'
199     IE_NAME = 'ivi:compilation'
200     _VALID_URL = r'https?://(?:www\.)?ivi\.ru/watch/(?!\d+)(?P<compilationid>[a-z\d_-]+)(?:/season(?P<seasonid>\d+))?$'
201     _TESTS = [{
202         'url': 'http://www.ivi.ru/watch/dvoe_iz_lartsa',
203         'info_dict': {
204             'id': 'dvoe_iz_lartsa',
205             'title': 'Двое из ларца (2006 - 2008)',
206         },
207         'playlist_mincount': 24,
208     }, {
209         'url': 'http://www.ivi.ru/watch/dvoe_iz_lartsa/season1',
210         'info_dict': {
211             'id': 'dvoe_iz_lartsa/season1',
212             'title': 'Двое из ларца (2006 - 2008) 1 сезон',
213         },
214         'playlist_mincount': 12,
215     }]
216
217     def _extract_entries(self, html, compilation_id):
218         return [
219             self.url_result(
220                 'http://www.ivi.ru/watch/%s/%s' % (compilation_id, serie), IviIE.ie_key())
221             for serie in re.findall(
222                 r'<a href="/watch/%s/(\d+)"[^>]+data-id="\1"' % compilation_id, html)]
223
224     def _real_extract(self, url):
225         mobj = re.match(self._VALID_URL, url)
226         compilation_id = mobj.group('compilationid')
227         season_id = mobj.group('seasonid')
228
229         if season_id is not None:  # Season link
230             season_page = self._download_webpage(
231                 url, compilation_id, 'Downloading season %s web page' % season_id)
232             playlist_id = '%s/season%s' % (compilation_id, season_id)
233             playlist_title = self._html_search_meta('title', season_page, 'title')
234             entries = self._extract_entries(season_page, compilation_id)
235         else:  # Compilation link
236             compilation_page = self._download_webpage(url, compilation_id, 'Downloading compilation web page')
237             playlist_id = compilation_id
238             playlist_title = self._html_search_meta('title', compilation_page, 'title')
239             seasons = re.findall(
240                 r'<a href="/watch/%s/season(\d+)' % compilation_id, compilation_page)
241             if not seasons:  # No seasons in this compilation
242                 entries = self._extract_entries(compilation_page, compilation_id)
243             else:
244                 entries = []
245                 for season_id in seasons:
246                     season_page = self._download_webpage(
247                         'http://www.ivi.ru/watch/%s/season%s' % (compilation_id, season_id),
248                         compilation_id, 'Downloading season %s web page' % season_id)
249                     entries.extend(self._extract_entries(season_page, compilation_id))
250
251         return self.playlist_result(entries, playlist_id, playlist_title)