]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vk.py
[compat] Add compat_urllib_parse_urlencode and eliminate encode_dict
[yt-dlp.git] / youtube_dl / extractor / vk.py
CommitLineData
60d142aa 1# encoding: utf-8
94a23d2a
PH
2from __future__ import unicode_literals
3
60d142aa
JMF
4import re
5import json
6
7from .common import InfoExtractor
1cc79574
PH
8from ..compat import (
9 compat_str,
15707c7e 10 compat_urllib_parse_urlencode,
1cc79574 11)
60d142aa 12from ..utils import (
9032dc28 13 ExtractorError,
bf4b3b6b 14 int_or_none,
1cc79574 15 orderedSet,
5c2266df 16 sanitized_Request,
8117df4c 17 str_to_int,
60d142aa 18 unescapeHTML,
e1e8b689 19 unified_strdate,
1cc79574 20)
84663361 21from .vimeo import VimeoIE
c4737bea 22from .pladform import PladformIE
60d142aa
JMF
23
24
25class VKIE(InfoExtractor):
1ecb5d1d
S
26 IE_NAME = 'vk'
27 IE_DESC = 'VK'
cf9cf7dd
S
28 _VALID_URL = r'''(?x)
29 https?://
30 (?:
31 (?:m\.)?vk\.com/video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|
32 (?:
33 (?:m\.)?vk\.com/(?:.+?\?.*?z=)?video|
34 (?:www\.)?biqle\.ru/watch/
35 )
79913fde 36 (?P<videoid>[^s].*?)(?:\?(?:.*\blist=(?P<list_id>[\da-f]+))?|%2F|$)
cf9cf7dd
S
37 )
38 '''
5544e038 39 _NETRC_MACHINE = 'vk'
60d142aa 40
9032dc28
S
41 _TESTS = [
42 {
43 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
44 'md5': '0deae91935c54e00003c2a00646315f0',
45 'info_dict': {
46 'id': '162222515',
47 'ext': 'flv',
48 'title': 'ProtivoGunz - Хуёвая песня',
36300346 49 'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
9032dc28 50 'duration': 195,
42e1ff86 51 'upload_date': '20120212',
8117df4c 52 'view_count': int,
9032dc28 53 },
60d142aa 54 },
9032dc28 55 {
c52331f3
WS
56 'url': 'http://vk.com/video205387401_165548505',
57 'md5': '6c0aeb2e90396ba97035b9cbde548700',
9032dc28 58 'info_dict': {
c52331f3 59 'id': '165548505',
9032dc28 60 'ext': 'mp4',
c52331f3
WS
61 'uploader': 'Tom Cruise',
62 'title': 'No name',
63 'duration': 9,
8117df4c
S
64 'upload_date': '20130721',
65 'view_count': int,
9032dc28
S
66 }
67 },
ca97a56e
S
68 {
69 'note': 'Embedded video',
70 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
71 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
72 'info_dict': {
73 'id': '162925554',
74 'ext': 'mp4',
75 'uploader': 'Vladimir Gavrin',
76 'title': 'Lin Dan',
77 'duration': 101,
42e1ff86 78 'upload_date': '20120730',
8117df4c 79 'view_count': int,
ca97a56e
S
80 }
81 },
9032dc28 82 {
c52331f3
WS
83 # VIDEO NOW REMOVED
84 # please update if you find a video whose URL follows the same pattern
9032dc28
S
85 'url': 'http://vk.com/video-8871596_164049491',
86 'md5': 'a590bcaf3d543576c9bd162812387666',
87 'note': 'Only available for registered users',
88 'info_dict': {
89 'id': '164049491',
90 'ext': 'mp4',
91 'uploader': 'Триллеры',
57bdc730 92 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
9032dc28 93 'duration': 8352,
8117df4c
S
94 'upload_date': '20121218',
95 'view_count': int,
9032dc28
S
96 },
97 'skip': 'Requires vk account credentials',
ca97a56e 98 },
57bdc730
S
99 {
100 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
101 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
102 'info_dict': {
103 'id': '168067957',
104 'ext': 'mp4',
105 'uploader': 'Киномания - лучшее из мира кино',
106 'title': ' ',
107 'duration': 7291,
42e1ff86 108 'upload_date': '20140328',
57bdc730
S
109 },
110 'skip': 'Requires vk account credentials',
111 },
849086a1
S
112 {
113 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
114 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
115 'note': 'ivi.ru embed',
116 'info_dict': {
117 'id': '60690',
118 'ext': 'mp4',
119 'title': 'Книга Илая',
120 'duration': 6771,
42e1ff86 121 'upload_date': '20140626',
8117df4c 122 'view_count': int,
849086a1 123 },
d518d06e 124 'skip': 'Only works from Russia',
849086a1 125 },
79913fde
S
126 {
127 # video (removed?) only available with list id
128 'url': 'https://vk.com/video30481095_171201961?list=8764ae2d21f14088d4',
129 'md5': '091287af5402239a1051c37ec7b92913',
130 'info_dict': {
131 'id': '171201961',
132 'ext': 'mp4',
133 'title': 'ТюменцевВВ_09.07.2015',
134 'uploader': 'Anton Ivanov',
135 'duration': 109,
136 'upload_date': '20150709',
137 'view_count': int,
138 },
139 },
9281f6d2
S
140 {
141 # youtube embed
142 'url': 'https://vk.com/video276849682_170681728',
143 'info_dict': {
144 'id': 'V3K4mi0SYkc',
f22ba4bd 145 'ext': 'webm',
9281f6d2
S
146 'title': "DSWD Awards 'Children's Joy Foundation, Inc.' Certificate of Registration and License to Operate",
147 'description': 'md5:bf9c26cfa4acdfb146362682edd3827a',
f22ba4bd 148 'duration': 178,
9281f6d2
S
149 'upload_date': '20130116',
150 'uploader': "Children's Joy Foundation",
151 'uploader_id': 'thecjf',
152 'view_count': int,
153 },
154 },
bf4b3b6b
S
155 {
156 # video key is extra_data not url\d+
157 'url': 'http://vk.com/video-110305615_171782105',
158 'md5': 'e13fcda136f99764872e739d13fac1d1',
159 'info_dict': {
160 'id': '171782105',
161 'ext': 'mp4',
162 'title': 'S-Dance, репетиции к The way show',
163 'uploader': 'THE WAY SHOW | 17 апреля',
164 'upload_date': '20160207',
165 'view_count': int,
166 },
167 },
a8363f3a
PH
168 {
169 # removed video, just testing that we match the pattern
170 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
171 'only_matching': True,
172 },
e58066e2
S
173 {
174 # age restricted video, requires vk account credentials
175 'url': 'https://vk.com/video205387401_164765225',
176 'only_matching': True,
177 },
cf9cf7dd
S
178 {
179 # vk wrapper
180 'url': 'http://www.biqle.ru/watch/847655_160197695',
181 'only_matching': True,
a5e52a1f
S
182 },
183 {
184 # pladform embed
185 'url': 'https://vk.com/video-76116461_171554880',
186 'only_matching': True,
cf9cf7dd 187 }
9032dc28
S
188 ]
189
190 def _login(self):
191 (username, password) = self._get_login_info()
192 if username is None:
193 return
194
226b886c
S
195 login_page = self._download_webpage(
196 'https://vk.com', None, 'Downloading login page')
197
f8da79f8 198 login_form = self._hidden_inputs(login_page)
226b886c
S
199
200 login_form.update({
4f3bf679
S
201 'email': username.encode('cp1251'),
202 'pass': password.encode('cp1251'),
226b886c 203 })
9032dc28 204
5c2266df 205 request = sanitized_Request(
226b886c 206 'https://login.vk.com/?act=login',
15707c7e 207 compat_urllib_parse_urlencode(login_form).encode('utf-8'))
226b886c
S
208 login_page = self._download_webpage(
209 request, None, note='Logging in as %s' % username)
9032dc28
S
210
211 if re.search(r'onLoginFailed', login_page):
226b886c
S
212 raise ExtractorError(
213 'Unable to login, incorrect username and/or password', expected=True)
9032dc28
S
214
215 def _real_initialize(self):
216 self._login()
60d142aa
JMF
217
218 def _real_extract(self, url):
219 mobj = re.match(self._VALID_URL, url)
ca97a56e
S
220 video_id = mobj.group('videoid')
221
222 if not video_id:
223 video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
9032dc28 224
275c0423 225 info_url = 'https://vk.com/al_video.php?act=show&al=1&module=video&video=%s' % video_id
79913fde
S
226
227 # Some videos (removed?) can only be downloaded with list id specified
228 list_id = mobj.group('list_id')
229 if list_id:
230 info_url += '&list=%s' % list_id
231
60d142aa 232 info_page = self._download_webpage(info_url, video_id)
9032dc28 233
ee48b6a8
S
234 error_message = self._html_search_regex(
235 r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
236 info_page, 'error message', default=None)
237 if error_message:
238 raise ExtractorError(error_message, expected=True)
239
7f220b2f
S
240 if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
241 raise ExtractorError(
242 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
243 expected=True)
244
e0c51cda
S
245 ERRORS = {
246 r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
3d36cea4
PH
247 'Video %s has been removed from public access due to rightholder complaint.',
248
e0c51cda 249 r'<!>Please log in or <':
3d36cea4
PH
250 'Video %s is only available for registered users, '
251 'use --username and --password options to provide account credentials.',
252
253 r'<!>Unknown error':
1aa5172f
S
254 'Video %s does not exist.',
255
256 r'<!>Видео временно недоступно':
257 'Video %s is temporarily unavailable.',
d919fa33
S
258
259 r'<!>Access denied':
260 'Access denied to video %s.',
e0c51cda 261 }
9032dc28 262
e0c51cda
S
263 for error_re, error_msg in ERRORS.items():
264 if re.search(error_re, info_page):
265 raise ExtractorError(error_msg % video_id, expected=True)
9334f8f1 266
46478456
S
267 youtube_url = self._search_regex(
268 r'<iframe[^>]+src="((?:https?:)?//www.youtube.com/embed/[^"]+)"',
269 info_page, 'youtube iframe', default=None)
270 if youtube_url:
9281f6d2 271 return self.url_result(youtube_url, 'Youtube')
849086a1 272
84663361
S
273 vimeo_url = VimeoIE._extract_vimeo_url(url, info_page)
274 if vimeo_url is not None:
275 return self.url_result(vimeo_url)
276
c4737bea
S
277 pladform_url = PladformIE._extract_url(info_page)
278 if pladform_url:
279 return self.url_result(pladform_url)
280
7a1818c9 281 m_rutube = re.search(
35972ba1 282 r'\ssrc="((?:https?:)?//rutube\.ru\\?/(?:video|play)\\?/embed(?:.*?))\\?"', info_page)
7a1818c9 283 if m_rutube is not None:
7a1818c9
PH
284 rutube_url = self._proto_relative_url(
285 m_rutube.group(1).replace('\\', ''))
286 return self.url_result(rutube_url)
287
054932f4 288 m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
849086a1 289 if m_opts:
054932f4 290 m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
849086a1
S
291 if m_opts_url:
292 opts_url = m_opts_url.group(1)
293 if opts_url.startswith('//'):
294 opts_url = 'http:' + opts_url
295 return self.url_result(opts_url)
296
054932f4 297 data_json = self._search_regex(r'var\s+vars\s*=\s*({.+?});', info_page, 'vars')
608bf698 298 data = json.loads(data_json)
60d142aa 299
02a12f9f
WS
300 # Extract upload date
301 upload_date = None
7c7dd9dc 302 mobj = re.search(r'id="mv_date(?:_views)?_wrap"[^>]*>([a-zA-Z]+ [0-9]+), ([0-9]+) at', info_page)
02a12f9f 303 if mobj is not None:
9e1a5b84 304 mobj.group(1) + ' ' + mobj.group(2)
02a12f9f
WS
305 upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2))
306
17d19005
S
307 view_count = None
308 views = self._html_search_regex(
309 r'"mv_views_count_number"[^>]*>(.+?\bviews?)<',
310 info_page, 'view count', fatal=False)
311 if views:
312 view_count = str_to_int(self._search_regex(
313 r'([\d,.]+)', views, 'view count', fatal=False))
8117df4c 314
bf4b3b6b
S
315 formats = []
316 for k, v in data.items():
317 if not k.startswith('url') and k != 'extra_data' or not v:
318 continue
319 height = int_or_none(self._search_regex(
320 r'^url(\d+)', k, 'height', default=None))
321 formats.append({
322 'format_id': k,
323 'url': v,
324 'height': height,
325 })
913f3292
PH
326 self._sort_formats(formats)
327
60d142aa 328 return {
608bf698 329 'id': compat_str(data['vid']),
913f3292 330 'formats': formats,
608bf698 331 'title': unescapeHTML(data['md_title']),
913f3292
PH
332 'thumbnail': data.get('jpg'),
333 'uploader': data.get('md_author'),
02a12f9f
WS
334 'duration': data.get('duration'),
335 'upload_date': upload_date,
8117df4c 336 'view_count': view_count,
60d142aa 337 }
469d4c89
WS
338
339
340class VKUserVideosIE(InfoExtractor):
1ecb5d1d
S
341 IE_NAME = 'vk:uservideos'
342 IE_DESC = "VK - User's Videos"
0436157b 343 _VALID_URL = r'https?://vk\.com/videos(?P<id>-?[0-9]+)(?!\?.*\bz=video)(?:[/?#&]|$)'
469d4c89 344 _TEMPLATE_URL = 'https://vk.com/videos'
dc786d3d 345 _TESTS = [{
469d4c89 346 'url': 'http://vk.com/videos205387401',
15ec6693
PH
347 'info_dict': {
348 'id': '205387401',
dc786d3d 349 'title': "Tom Cruise's Videos",
15ec6693 350 },
469d4c89 351 'playlist_mincount': 4,
dc786d3d
S
352 }, {
353 'url': 'http://vk.com/videos-77521',
354 'only_matching': True,
0436157b
S
355 }, {
356 'url': 'http://vk.com/videos-97664626?section=all',
357 'only_matching': True,
dc786d3d 358 }]
469d4c89 359
469d4c89 360 def _real_extract(self, url):
021a0db8 361 page_id = self._match_id(url)
dc786d3d
S
362
363 webpage = self._download_webpage(url, page_id)
364
365 entries = [
d16abf43
PH
366 self.url_result(
367 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
fec73daa 368 for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
dc786d3d
S
369
370 title = unescapeHTML(self._search_regex(
371 r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
372 webpage, 'title', default=page_id))
373
374 return self.playlist_result(entries, page_id, title)