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