[vk] Better support for embeds
[youtube-dl] / youtube_dl / extractor / vk.py
1 # encoding: 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     compat_urllib_request,
11     compat_urllib_parse,
12     compat_str,
13     unescapeHTML,
14 )
15
16
17 class VKIE(InfoExtractor):
18     IE_NAME = 'vk.com'
19     _VALID_URL = r'https?://(?:m\.)?vk\.com/(?:video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|(?:.+?\?.*?z=)?video(?P<videoid>.*?)(?:\?|%2F|$))'
20     _NETRC_MACHINE = 'vk'
21
22     _TESTS = [
23         {
24             'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
25             'md5': '0deae91935c54e00003c2a00646315f0',
26             'info_dict': {
27                 'id': '162222515',
28                 'ext': 'flv',
29                 'title': 'ProtivoGunz - Хуёвая песня',
30                 'uploader': 're:Noize MC.*',
31                 'duration': 195,
32             },
33         },
34         {
35             'url': 'http://vk.com/video4643923_163339118',
36             'md5': 'f79bccb5cd182b1f43502ca5685b2b36',
37             'info_dict': {
38                 'id': '163339118',
39                 'ext': 'mp4',
40                 'uploader': 'Elya Iskhakova',
41                 'title': 'Dream Theater - Hollow Years Live at Budokan 720*',
42                 'duration': 558,
43             }
44         },
45         {
46             'note': 'Embedded video',
47             'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
48             'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
49             'info_dict': {
50                 'id': '162925554',
51                 'ext': 'mp4',
52                 'uploader': 'Vladimir Gavrin',
53                 'title': 'Lin Dan',
54                 'duration': 101,
55             }
56         },
57         {
58             'url': 'http://vk.com/video-8871596_164049491',
59             'md5': 'a590bcaf3d543576c9bd162812387666',
60             'note': 'Only available for registered users',
61             'info_dict': {
62                 'id': '164049491',
63                 'ext': 'mp4',
64                 'uploader': 'Триллеры',
65                 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
66                 'duration': 8352,
67             },
68             'skip': 'Requires vk account credentials',
69         },
70         {
71             'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
72             'md5': 'd82c22e449f036282d1d3f7f4d276869',
73             'info_dict': {
74                 'id': '166094326',
75                 'ext': 'mp4',
76                 'uploader': 'Киномания - лучшее из мира кино',
77                 'title': 'Запах женщины (1992)',
78                 'duration': 9392,
79             },
80             'skip': 'Requires vk account credentials',
81         },
82         {
83             'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
84             'md5': '4d7a5ef8cf114dfa09577e57b2993202',
85             'info_dict': {
86                 'id': '168067957',
87                 'ext': 'mp4',
88                 'uploader': 'Киномания - лучшее из мира кино',
89                 'title': ' ',
90                 'duration': 7291,
91             },
92             'skip': 'Requires vk account credentials',
93         },
94         {
95             'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
96             'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
97             'note': 'ivi.ru embed',
98             'info_dict': {
99                 'id': '60690',
100                 'ext': 'mp4',
101                 'title': 'Книга Илая',
102                 'duration': 6771,
103             },
104         },
105     ]
106
107     def _login(self):
108         (username, password) = self._get_login_info()
109         if username is None:
110             return
111
112         login_form = {
113             'act': 'login',
114             'role': 'al_frame',
115             'expire': '1',
116             'email': username,
117             'pass': password,
118         }
119
120         request = compat_urllib_request.Request('https://login.vk.com/?act=login',
121             compat_urllib_parse.urlencode(login_form).encode('utf-8'))
122         login_page = self._download_webpage(request, None, note='Logging in as %s' % username)
123
124         if re.search(r'onLoginFailed', login_page):
125             raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)
126
127     def _real_initialize(self):
128         self._login()
129
130     def _real_extract(self, url):
131         mobj = re.match(self._VALID_URL, url)
132         video_id = mobj.group('videoid')
133
134         if not video_id:
135             video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
136
137         info_url = 'http://vk.com/al_video.php?act=show&al=1&video=%s' % video_id
138         info_page = self._download_webpage(info_url, video_id)
139
140         if re.search(r'<!>Please log in or <', info_page):
141             raise ExtractorError('This video is only available for registered users, '
142                 'use --username and --password options to provide account credentials.', expected=True)
143
144         m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page)
145         if m_yt is not None:
146             self.to_screen('Youtube video detected')
147             return self.url_result(m_yt.group(1), 'Youtube')
148
149         m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.*?});', info_page)
150         if m_opts:
151             m_opts_url = re.search(r"url\s*:\s*'([^']+)", m_opts.group(1))
152             if m_opts_url:
153                 opts_url = m_opts_url.group(1)
154                 if opts_url.startswith('//'):
155                     opts_url = 'http:' + opts_url
156                 return self.url_result(opts_url)
157
158         data_json = self._search_regex(r'var vars = ({.*?});', info_page, 'vars')
159         data = json.loads(data_json)
160
161         formats = [{
162             'format_id': k,
163             'url': v,
164             'width': int(k[len('url'):]),
165         } for k, v in data.items()
166             if k.startswith('url')]
167         self._sort_formats(formats)
168
169         return {
170             'id': compat_str(data['vid']),
171             'formats': formats,
172             'title': unescapeHTML(data['md_title']),
173             'thumbnail': data.get('jpg'),
174             'uploader': data.get('md_author'),
175             'duration': data.get('duration')
176         }