Merge remote-tracking branch 'WillSewell/vk-playlists'
[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     unified_strdate,
15     orderedSet)
16
17
18 class VKIE(InfoExtractor):
19     IE_NAME = 'vk.com'
20     _VALID_URL = r'https?://(?:m\.)?vk\.com/(?:video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|(?:.+?\?.*?z=)?video(?P<videoid>[^s].*?)(?:\?|%2F|$))'
21     _NETRC_MACHINE = 'vk'
22
23     _TESTS = [
24         {
25             'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
26             'md5': '0deae91935c54e00003c2a00646315f0',
27             'info_dict': {
28                 'id': '162222515',
29                 'ext': 'flv',
30                 'title': 'ProtivoGunz - Хуёвая песня',
31                 'uploader': 're:Noize MC.*',
32                 'duration': 195,
33                 'upload_date': '20120212',
34             },
35         },
36         {
37             'url': 'http://vk.com/video205387401_165548505',
38             'md5': '6c0aeb2e90396ba97035b9cbde548700',
39             'info_dict': {
40                 'id': '165548505',
41                 'ext': 'mp4',
42                 'uploader': 'Tom Cruise',
43                 'title': 'No name',
44                 'duration': 9,
45                 'upload_date': '20130721'
46             }
47         },
48         {
49             'note': 'Embedded video',
50             'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
51             'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
52             'info_dict': {
53                 'id': '162925554',
54                 'ext': 'mp4',
55                 'uploader': 'Vladimir Gavrin',
56                 'title': 'Lin Dan',
57                 'duration': 101,
58                 'upload_date': '20120730',
59             }
60         },
61         {
62             # VIDEO NOW REMOVED
63             # please update if you find a video whose URL follows the same pattern
64             'url': 'http://vk.com/video-8871596_164049491',
65             'md5': 'a590bcaf3d543576c9bd162812387666',
66             'note': 'Only available for registered users',
67             'info_dict': {
68                 'id': '164049491',
69                 'ext': 'mp4',
70                 'uploader': 'Триллеры',
71                 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
72                 'duration': 8352,
73                 'upload_date': '20121218'
74             },
75             'skip': 'Requires vk account credentials',
76         },
77         {
78             # VIDEO NOW REMOVED
79             # please update if you find a video whose URL follows the same pattern
80             'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
81             'md5': 'd82c22e449f036282d1d3f7f4d276869',
82             'info_dict': {
83                 'id': '166094326',
84                 'ext': 'mp4',
85                 'uploader': 'Киномания - лучшее из мира кино',
86                 'title': 'Запах женщины (1992)',
87                 'duration': 9392,
88                 'upload_date': '20130914'
89             },
90             'skip': 'Requires vk account credentials',
91         },
92         {
93             'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
94             'md5': '4d7a5ef8cf114dfa09577e57b2993202',
95             'info_dict': {
96                 'id': '168067957',
97                 'ext': 'mp4',
98                 'uploader': 'Киномания - лучшее из мира кино',
99                 'title': ' ',
100                 'duration': 7291,
101                 'upload_date': '20140328',
102             },
103             'skip': 'Requires vk account credentials',
104         },
105         {
106             'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
107             'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
108             'note': 'ivi.ru embed',
109             'info_dict': {
110                 'id': '60690',
111                 'ext': 'mp4',
112                 'title': 'Книга Илая',
113                 'duration': 6771,
114                 'upload_date': '20140626',
115             },
116             'skip': 'Only works from Russia',
117         },
118     ]
119
120     def _login(self):
121         (username, password) = self._get_login_info()
122         if username is None:
123             return
124
125         login_form = {
126             'act': 'login',
127             'role': 'al_frame',
128             'expire': '1',
129             'email': username,
130             'pass': password,
131         }
132
133         request = compat_urllib_request.Request('https://login.vk.com/?act=login',
134             compat_urllib_parse.urlencode(login_form).encode('utf-8'))
135         login_page = self._download_webpage(request, None, note='Logging in as %s' % username)
136
137         if re.search(r'onLoginFailed', login_page):
138             raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)
139
140     def _real_initialize(self):
141         self._login()
142
143     def _real_extract(self, url):
144         mobj = re.match(self._VALID_URL, url)
145         video_id = mobj.group('videoid')
146
147         if not video_id:
148             video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
149
150         info_url = 'http://vk.com/al_video.php?act=show&al=1&video=%s' % video_id
151         info_page = self._download_webpage(info_url, video_id)
152
153         ERRORS = {
154             r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
155                 'Video %s has been removed from public access due to rightholder complaint.',
156             r'<!>Please log in or <':
157                 'Video %s is only available for registered users, '
158                 'use --username and --password options to provide account credentials.',
159             '<!>Unknown error':
160                 'Video %s does not exist.'
161         }
162
163         for error_re, error_msg in ERRORS.items():
164             if re.search(error_re, info_page):
165                 raise ExtractorError(error_msg % video_id, expected=True)
166
167         m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page)
168         if m_yt is not None:
169             self.to_screen('Youtube video detected')
170             return self.url_result(m_yt.group(1), 'Youtube')
171
172         m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.*?});', info_page)
173         if m_opts:
174             m_opts_url = re.search(r"url\s*:\s*'([^']+)", m_opts.group(1))
175             if m_opts_url:
176                 opts_url = m_opts_url.group(1)
177                 if opts_url.startswith('//'):
178                     opts_url = 'http:' + opts_url
179                 return self.url_result(opts_url)
180
181         data_json = self._search_regex(r'var vars = ({.*?});', info_page, 'vars')
182         data = json.loads(data_json)
183
184         # Extract upload date
185         upload_date = None
186         mobj = re.search(r'id="mv_date_wrap".*?Added ([a-zA-Z]+ [0-9]+), ([0-9]+) at', info_page)
187         if mobj is not None:
188             x = mobj.group(1) + ' ' + mobj.group(2)
189             upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2))
190
191         formats = [{
192             'format_id': k,
193             'url': v,
194             'width': int(k[len('url'):]),
195         } for k, v in data.items()
196             if k.startswith('url')]
197         self._sort_formats(formats)
198
199         return {
200             'id': compat_str(data['vid']),
201             'formats': formats,
202             'title': unescapeHTML(data['md_title']),
203             'thumbnail': data.get('jpg'),
204             'uploader': data.get('md_author'),
205             'duration': data.get('duration'),
206             'upload_date': upload_date,
207         }
208
209
210 class VKUserVideosIE(InfoExtractor):
211     IE_NAME = 'vk.com:user-videos'
212     IE_DESC = 'vk.com:All of a user\'s videos'
213     _VALID_URL = r'https?://vk\.com/videos(?P<id>[0-9]+)(?:m\?.*)?'
214     _TEMPLATE_URL = 'https://vk.com/videos'
215     _TEST = {
216         'url': 'http://vk.com/videos205387401',
217         'playlist_mincount': 4,
218     }
219
220     def _real_extract(self, url):
221         page_id = self._match_id(url)
222         page = self._download_webpage(url, page_id)
223         video_ids = orderedSet(m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))
224         url_entries = [self.url_result('http://vk.com/video' + video_id, 'VK', video_id=video_id)
225                        for video_id in video_ids]
226         return self.playlist_result(url_entries, page_id)