7caaa118307691a68c44e3958367eece11b30cd1
[youtube-dl] / youtube_dl / extractor / iqiyi.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import hashlib
5 import math
6 import random
7 import time
8 import uuid
9
10 from .common import InfoExtractor
11 from ..compat import compat_urllib_parse
12 from ..utils import ExtractorError
13
14
15 class IqiyiIE(InfoExtractor):
16     IE_NAME = 'iqiyi'
17     IE_DESC = '爱奇艺'
18
19     _VALID_URL = r'http://(?:www\.)iqiyi.com/v_.+?\.html'
20
21     _TESTS = [{
22         'url': 'http://www.iqiyi.com/v_19rrojlavg.html',
23         'md5': '2cb594dc2781e6c941a110d8f358118b',
24         'info_dict': {
25             'id': '9c1fb1b99d192b21c559e5a1a2cb3c73',
26             'title': '美国德州空中惊现奇异云团 酷似UFO',
27             'ext': 'f4v',
28         }
29     }, {
30         'url': 'http://www.iqiyi.com/v_19rrhnnclk.html',
31         'info_dict': {
32             'id': 'e3f585b550a280af23c98b6cb2be19fb',
33             'title': '名侦探柯南第752集',
34         },
35         'playlist': [{
36             'md5': '7e49376fecaffa115d951634917fe105',
37             'info_dict': {
38                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part1',
39                 'ext': 'f4v',
40                 'title': '名侦探柯南第752集',
41             },
42         }, {
43             'md5': '41b75ba13bb7ac0e411131f92bc4f6ca',
44             'info_dict': {
45                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part2',
46                 'ext': 'f4v',
47                 'title': '名侦探柯南第752集',
48             },
49         }, {
50             'md5': '0cee1dd0a3d46a83e71e2badeae2aab0',
51             'info_dict': {
52                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part3',
53                 'ext': 'f4v',
54                 'title': '名侦探柯南第752集',
55             },
56         }, {
57             'md5': '4f8ad72373b0c491b582e7c196b0b1f9',
58             'info_dict': {
59                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part4',
60                 'ext': 'f4v',
61                 'title': '名侦探柯南第752集',
62             },
63         }, {
64             'md5': 'd89ad028bcfad282918e8098e811711d',
65             'info_dict': {
66                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part5',
67                 'ext': 'f4v',
68                 'title': '名侦探柯南第752集',
69             },
70         }, {
71             'md5': '9cb1e5c95da25dff0660c32ae50903b7',
72             'info_dict': {
73                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part6',
74                 'ext': 'f4v',
75                 'title': '名侦探柯南第752集',
76             },
77         }, {
78             'md5': '155116e0ff1867bbc9b98df294faabc9',
79             'info_dict': {
80                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part7',
81                 'ext': 'f4v',
82                 'title': '名侦探柯南第752集',
83             },
84         }, {
85             'md5': '53f5db77622ae14fa493ed2a278a082b',
86             'info_dict': {
87                 'id': 'e3f585b550a280af23c98b6cb2be19fb_part8',
88                 'ext': 'f4v',
89                 'title': '名侦探柯南第752集',
90             },
91         }],
92     }]
93
94     _FORMATS_MAP = [
95         ('1', 'h6'),
96         ('2', 'h5'),
97         ('3', 'h4'),
98         ('4', 'h3'),
99         ('5', 'h2'),
100         ('10', 'h1'),
101     ]
102
103     def construct_video_urls(self, data, video_id, _uuid):
104         def do_xor(x, y):
105             a = y % 3
106             if a == 1:
107                 return x ^ 121
108             if a == 2:
109                 return x ^ 72
110             return x ^ 103
111
112         def get_encode_code(l):
113             a = 0
114             b = l.split('-')
115             c = len(b)
116             s = ''
117             for i in range(c - 1, -1, -1):
118                 a = do_xor(int(b[c - i - 1], 16), i)
119                 s += chr(a)
120             return s[::-1]
121
122         def get_path_key(x, format_id, segment_index):
123             mg = ')(*&^flash@#$%a'
124             tm = self._download_json(
125                 'http://data.video.qiyi.com/t?tn=' + str(random.random()), video_id,
126                 note='Download path key of segment %d for format %s' % (segment_index + 1, format_id)
127             )['t']
128             t = str(int(math.floor(int(tm) / (600.0))))
129             return hashlib.md5((t + mg + x).encode('utf8')).hexdigest()
130
131         video_urls_dict = {}
132         for format_item in data['vp']['tkl'][0]['vs']:
133             if 0 < int(format_item['bid']) <= 10:
134                 format_id = self.get_format(format_item['bid'])
135             else:
136                 continue
137
138             video_urls = []
139
140             video_urls_info = format_item['fs']
141             if not format_item['fs'][0]['l'].startswith('/'):
142                 t = get_encode_code(format_item['fs'][0]['l'])
143                 if t.endswith('mp4'):
144                     video_urls_info = format_item['flvs']
145
146             for segment_index, segment in enumerate(video_urls_info):
147                 vl = segment['l']
148                 if not vl.startswith('/'):
149                     vl = get_encode_code(vl)
150                 key = get_path_key(
151                     vl.split('/')[-1].split('.')[0], format_id, segment_index)
152                 filesize = segment['b']
153                 base_url = data['vp']['du'].split('/')
154                 base_url.insert(-1, key)
155                 base_url = '/'.join(base_url)
156                 param = {
157                     'su': _uuid,
158                     'qyid': uuid.uuid4().hex,
159                     'client': '',
160                     'z': '',
161                     'bt': '',
162                     'ct': '',
163                     'tn': str(int(time.time()))
164                 }
165                 api_video_url = base_url + vl + '?' + \
166                     compat_urllib_parse.urlencode(param)
167                 js = self._download_json(
168                     api_video_url, video_id,
169                     note='Download video info of segment %d for format %s' % (segment_index + 1, format_id))
170                 video_url = js['l']
171                 video_urls.append(
172                     (video_url, filesize))
173
174             video_urls_dict[format_id] = video_urls
175         return video_urls_dict
176
177     def get_format(self, bid):
178         matched_format_ids = [_format_id for _bid, _format_id in self._FORMATS_MAP if _bid == str(bid)]
179         return matched_format_ids[0] if len(matched_format_ids) else None
180
181     def get_bid(self, format_id):
182         matched_bids = [_bid for _bid, _format_id in self._FORMATS_MAP if _format_id == format_id]
183         return matched_bids[0] if len(matched_bids) else None
184
185     def get_raw_data(self, tvid, video_id, enc_key, _uuid):
186         tm = str(int(time.time()))
187         param = {
188             'key': 'fvip',
189             'src': hashlib.md5(b'youtube-dl').hexdigest(),
190             'tvId': tvid,
191             'vid': video_id,
192             'vinfo': 1,
193             'tm': tm,
194             'enc': hashlib.md5(
195                 (enc_key + tm + tvid).encode('utf8')).hexdigest(),
196             'qyid': _uuid,
197             'tn': random.random(),
198             'um': 0,
199             'authkey': hashlib.md5(
200                 (tm + tvid).encode('utf8')).hexdigest()
201         }
202
203         api_url = 'http://cache.video.qiyi.com/vms' + '?' + \
204             compat_urllib_parse.urlencode(param)
205         raw_data = self._download_json(api_url, video_id)
206         return raw_data
207
208     def get_enc_key(self, swf_url, video_id):
209         enc_key = '8e29ab5666d041c3a1ea76e06dabdffb'
210         return enc_key
211
212     def _real_extract(self, url):
213         webpage = self._download_webpage(
214             url, 'temp_id', note='download video page')
215         tvid = self._search_regex(
216             r'data-player-tvid\s*=\s*[\'"](\d+)', webpage, 'tvid')
217         video_id = self._search_regex(
218             r'data-player-videoid\s*=\s*[\'"]([a-f\d]+)', webpage, 'video_id')
219         swf_url = self._search_regex(
220             r'(http://[^\'"]+MainPlayer[^.]+\.swf)', webpage, 'swf player URL')
221         _uuid = uuid.uuid4().hex
222
223         enc_key = self.get_enc_key(swf_url, video_id)
224
225         raw_data = self.get_raw_data(tvid, video_id, enc_key, _uuid)
226
227         if raw_data['code'] != 'A000000':
228             raise ExtractorError('Unable to load data. Error code: ' + raw_data['code'])
229
230         if not raw_data['data']['vp']['tkl']:
231             raise ExtractorError('No support iQiqy VIP video')
232
233         data = raw_data['data']
234
235         title = data['vi']['vn']
236
237         # generate video_urls_dict
238         video_urls_dict = self.construct_video_urls(
239             data, video_id, _uuid)
240
241         # construct info
242         entries = []
243         for format_id in video_urls_dict:
244             video_urls = video_urls_dict[format_id]
245             for i, video_url_info in enumerate(video_urls):
246                 if len(entries) < i + 1:
247                     entries.append({'formats': []})
248                 entries[i]['formats'].append(
249                     {
250                         'url': video_url_info[0],
251                         'filesize': video_url_info[-1],
252                         'format_id': format_id,
253                         'preference': int(self.get_bid(format_id))
254                     }
255                 )
256
257         for i in range(len(entries)):
258             self._sort_formats(entries[i]['formats'])
259             entries[i].update(
260                 {
261                     'id': '%s_part%d' % (video_id, i + 1),
262                     'title': title,
263                 }
264             )
265
266         if len(entries) > 1:
267             info = {
268                 '_type': 'multi_video',
269                 'id': video_id,
270                 'title': title,
271                 'entries': entries,
272             }
273         else:
274             info = entries[0]
275             info['id'] = video_id
276             info['title'] = title
277
278         return info