]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vk.py
[platzi] Add extractor (closes #20562)
[yt-dlp.git] / youtube_dl / extractor / vk.py
CommitLineData
dcdb292f 1# coding: utf-8
94a23d2a
PH
2from __future__ import unicode_literals
3
51815886 4import collections
60d142aa 5import re
75ca6bce 6import sys
60d142aa
JMF
7
8from .common import InfoExtractor
2d19fb50
S
9from ..compat import (
10 compat_str,
11 compat_urlparse,
12)
60d142aa 13from ..utils import (
2d19fb50 14 clean_html,
9032dc28 15 ExtractorError,
2d19fb50 16 get_element_by_class,
bf4b3b6b 17 int_or_none,
1cc79574 18 orderedSet,
2d19fb50 19 remove_start,
ad1bc71a 20 str_or_none,
8117df4c 21 str_to_int,
60d142aa 22 unescapeHTML,
a7ee8a00 23 unified_timestamp,
3052a30d 24 url_or_none,
6e6bc8da 25 urlencode_postdata,
1cc79574 26)
e3845525 27from .dailymotion import DailymotionIE
c4737bea 28from .pladform import PladformIE
e3845525 29from .vimeo import VimeoIE
5113b691 30from .youtube import YoutubeIE
60d142aa
JMF
31
32
2d19fb50
S
33class VKBaseIE(InfoExtractor):
34 _NETRC_MACHINE = 'vk'
35
36 def _login(self):
68217024 37 username, password = self._get_login_info()
2d19fb50
S
38 if username is None:
39 return
40
41 login_page, url_handle = self._download_webpage_handle(
42 'https://vk.com', None, 'Downloading login page')
43
44 login_form = self._hidden_inputs(login_page)
45
46 login_form.update({
47 'email': username.encode('cp1251'),
48 'pass': password.encode('cp1251'),
49 })
50
51 # https://new.vk.com/ serves two same remixlhk cookies in Set-Cookie header
52 # and expects the first one to be set rather than second (see
067aa17e 53 # https://github.com/ytdl-org/youtube-dl/issues/9841#issuecomment-227871201).
2d19fb50
S
54 # As of RFC6265 the newer one cookie should be set into cookie store
55 # what actually happens.
56 # We will workaround this VK issue by resetting the remixlhk cookie to
57 # the first one manually.
08a42f9c
S
58 for header, cookies in url_handle.headers.items():
59 if header.lower() != 'set-cookie':
60 continue
5f5a9d61
S
61 if sys.version_info[0] >= 3:
62 cookies = cookies.encode('iso-8859-1')
63 cookies = cookies.decode('utf-8')
64 remixlhk = re.search(r'remixlhk=(.+?);.*?\bdomain=(.+?)(?:[,;]|$)', cookies)
65 if remixlhk:
66 value, domain = remixlhk.groups()
67 self._set_cookie(domain, 'remixlhk', value)
08a42f9c 68 break
2d19fb50
S
69
70 login_page = self._download_webpage(
71 'https://login.vk.com/?act=login', None,
e4d95865 72 note='Logging in',
2d19fb50
S
73 data=urlencode_postdata(login_form))
74
75 if re.search(r'onLoginFailed', login_page):
76 raise ExtractorError(
77 'Unable to login, incorrect username and/or password', expected=True)
78
79 def _real_initialize(self):
80 self._login()
81
82
83class VKIE(VKBaseIE):
1ecb5d1d
S
84 IE_NAME = 'vk'
85 IE_DESC = 'VK'
cf9cf7dd
S
86 _VALID_URL = r'''(?x)
87 https?://
88 (?:
04e88ca2 89 (?:
bdafd88d 90 (?:(?:m|new)\.)?vk\.com/video_|
04e88ca2 91 (?:www\.)?daxab.com/
92 )
93 ext\.php\?(?P<embed_query>.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+).*)|
cf9cf7dd 94 (?:
bdafd88d 95 (?:(?:m|new)\.)?vk\.com/(?:.+?\?.*?z=)?video|
04e88ca2 96 (?:www\.)?daxab.com/embed/
cf9cf7dd 97 )
04e88ca2 98 (?P<videoid>-?\d+_\d+)(?:.*\blist=(?P<list_id>[\da-f]+))?
cf9cf7dd
S
99 )
100 '''
9032dc28
S
101 _TESTS = [
102 {
103 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
09f934b0 104 'md5': '7babad3b85ea2e91948005b1b8b0cb84',
9032dc28 105 'info_dict': {
220828f2 106 'id': '-77521_162222515',
09f934b0 107 'ext': 'mp4',
9032dc28 108 'title': 'ProtivoGunz - Хуёвая песня',
36300346 109 'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
ad1bc71a 110 'uploader_id': '-77521',
9032dc28 111 'duration': 195,
ad1bc71a 112 'timestamp': 1329049880,
42e1ff86 113 'upload_date': '20120212',
9032dc28 114 },
60d142aa 115 },
9032dc28 116 {
c52331f3
WS
117 'url': 'http://vk.com/video205387401_165548505',
118 'md5': '6c0aeb2e90396ba97035b9cbde548700',
9032dc28 119 'info_dict': {
220828f2 120 'id': '205387401_165548505',
9032dc28 121 'ext': 'mp4',
c52331f3 122 'title': 'No name',
ad1bc71a
RA
123 'uploader': 'Tom Cruise',
124 'uploader_id': '205387401',
c52331f3 125 'duration': 9,
ad1bc71a
RA
126 'timestamp': 1374364108,
127 'upload_date': '20130720',
9032dc28
S
128 }
129 },
ca97a56e
S
130 {
131 'note': 'Embedded video',
132 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
133 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
134 'info_dict': {
220828f2 135 'id': '32194266_162925554',
ca97a56e
S
136 'ext': 'mp4',
137 'uploader': 'Vladimir Gavrin',
138 'title': 'Lin Dan',
139 'duration': 101,
42e1ff86 140 'upload_date': '20120730',
8117df4c 141 'view_count': int,
04e88ca2 142 },
143 'skip': 'This video has been removed from public access.',
ca97a56e 144 },
9032dc28 145 {
c52331f3
WS
146 # VIDEO NOW REMOVED
147 # please update if you find a video whose URL follows the same pattern
9032dc28
S
148 'url': 'http://vk.com/video-8871596_164049491',
149 'md5': 'a590bcaf3d543576c9bd162812387666',
150 'note': 'Only available for registered users',
151 'info_dict': {
220828f2 152 'id': '-8871596_164049491',
9032dc28
S
153 'ext': 'mp4',
154 'uploader': 'Триллеры',
57bdc730 155 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
9032dc28 156 'duration': 8352,
8117df4c
S
157 'upload_date': '20121218',
158 'view_count': int,
9032dc28
S
159 },
160 'skip': 'Requires vk account credentials',
ca97a56e 161 },
57bdc730
S
162 {
163 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
164 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
165 'info_dict': {
220828f2 166 'id': '-43215063_168067957',
57bdc730
S
167 'ext': 'mp4',
168 'uploader': 'Киномания - лучшее из мира кино',
169 'title': ' ',
170 'duration': 7291,
42e1ff86 171 'upload_date': '20140328',
57bdc730
S
172 },
173 'skip': 'Requires vk account credentials',
174 },
849086a1
S
175 {
176 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
177 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
178 'note': 'ivi.ru embed',
179 'info_dict': {
220828f2 180 'id': '-43215063_169084319',
849086a1
S
181 'ext': 'mp4',
182 'title': 'Книга Илая',
183 'duration': 6771,
42e1ff86 184 'upload_date': '20140626',
8117df4c 185 'view_count': int,
849086a1 186 },
d518d06e 187 'skip': 'Only works from Russia',
849086a1 188 },
79913fde
S
189 {
190 # video (removed?) only available with list id
191 'url': 'https://vk.com/video30481095_171201961?list=8764ae2d21f14088d4',
192 'md5': '091287af5402239a1051c37ec7b92913',
193 'info_dict': {
220828f2 194 'id': '30481095_171201961',
79913fde
S
195 'ext': 'mp4',
196 'title': 'ТюменцевВВ_09.07.2015',
197 'uploader': 'Anton Ivanov',
198 'duration': 109,
199 'upload_date': '20150709',
200 'view_count': int,
201 },
a7ee8a00 202 'skip': 'Removed',
79913fde 203 },
9281f6d2
S
204 {
205 # youtube embed
206 'url': 'https://vk.com/video276849682_170681728',
207 'info_dict': {
208 'id': 'V3K4mi0SYkc',
220828f2 209 'ext': 'mp4',
9281f6d2 210 'title': "DSWD Awards 'Children's Joy Foundation, Inc.' Certificate of Registration and License to Operate",
ad1bc71a 211 'description': 'md5:bf9c26cfa4acdfb146362682edd3827a',
220828f2 212 'duration': 178,
9281f6d2 213 'upload_date': '20130116',
ad1bc71a 214 'uploader': "Children's Joy Foundation Inc.",
9281f6d2
S
215 'uploader_id': 'thecjf',
216 'view_count': int,
217 },
218 },
e3845525
KM
219 {
220 # dailymotion embed
221 'url': 'https://vk.com/video-37468416_456239855',
222 'info_dict': {
223 'id': 'k3lz2cmXyRuJQSjGHUv',
224 'ext': 'mp4',
225 'title': 'md5:d52606645c20b0ddbb21655adaa4f56f',
ad1bc71a 226 # TODO: fix test by fixing dailymotion description extraction
e3845525
KM
227 'description': 'md5:c651358f03c56f1150b555c26d90a0fd',
228 'uploader': 'AniLibria.Tv',
229 'upload_date': '20160914',
230 'uploader_id': 'x1p5vl5',
231 'timestamp': 1473877246,
232 },
233 'params': {
234 'skip_download': True,
93aa0b63 235 },
e3845525 236 },
bf4b3b6b
S
237 {
238 # video key is extra_data not url\d+
239 'url': 'http://vk.com/video-110305615_171782105',
240 'md5': 'e13fcda136f99764872e739d13fac1d1',
241 'info_dict': {
220828f2 242 'id': '-110305615_171782105',
bf4b3b6b
S
243 'ext': 'mp4',
244 'title': 'S-Dance, репетиции к The way show',
245 'uploader': 'THE WAY SHOW | 17 апреля',
ad1bc71a
RA
246 'uploader_id': '-110305615',
247 'timestamp': 1454859345,
bf4b3b6b 248 'upload_date': '20160207',
ad1bc71a
RA
249 },
250 'params': {
251 'skip_download': True,
bf4b3b6b
S
252 },
253 },
93aa0b63 254 {
424ed37e 255 # finished live stream, postlive_mp4
93aa0b63 256 'url': 'https://vk.com/videos-387766?z=video-387766_456242764%2Fpl_-387766_-2',
93aa0b63 257 'info_dict': {
220828f2 258 'id': '-387766_456242764',
93aa0b63 259 'ext': 'mp4',
220828f2 260 'title': 'ИгроМир 2016 День 1 — Игромания Утром',
93aa0b63
S
261 'uploader': 'Игромания',
262 'duration': 5239,
220828f2
RA
263 # TODO: use act=show to extract view_count
264 # 'view_count': int,
265 'upload_date': '20160929',
266 'uploader_id': '-387766',
267 'timestamp': 1475137527,
93aa0b63
S
268 },
269 },
475f8a45 270 {
424ed37e 271 # live stream, hls and rtmp links, most likely already finished live
475f8a45
S
272 # stream by the time you are reading this comment
273 'url': 'https://vk.com/video-140332_456239111',
274 'only_matching': True,
275 },
a8363f3a
PH
276 {
277 # removed video, just testing that we match the pattern
278 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
279 'only_matching': True,
280 },
e58066e2
S
281 {
282 # age restricted video, requires vk account credentials
283 'url': 'https://vk.com/video205387401_164765225',
284 'only_matching': True,
285 },
a5e52a1f
S
286 {
287 # pladform embed
288 'url': 'https://vk.com/video-76116461_171554880',
289 'only_matching': True,
bdafd88d
S
290 },
291 {
292 'url': 'http://new.vk.com/video205387401_165548505',
293 'only_matching': True,
643dc0fc
CP
294 },
295 {
296 # This video is no longer available, because its author has been blocked.
297 'url': 'https://vk.com/video-10639516_456240611',
298 'only_matching': True,
a640c4d2 299 },
300 {
301 # The video is not available in your region.
302 'url': 'https://vk.com/video-51812607_171445436',
303 'only_matching': True,
304 }]
9032dc28 305
60d142aa
JMF
306 def _real_extract(self, url):
307 mobj = re.match(self._VALID_URL, url)
ca97a56e
S
308 video_id = mobj.group('videoid')
309
04e88ca2 310 if video_id:
ad1bc71a 311 info_url = 'https://vk.com/al_video.php?act=show_inline&al=1&video=' + video_id
04e88ca2 312 # Some videos (removed?) can only be downloaded with list id specified
313 list_id = mobj.group('list_id')
314 if list_id:
315 info_url += '&list=%s' % list_id
316 else:
317 info_url = 'http://vk.com/video_ext.php?' + mobj.group('embed_query')
ca97a56e 318 video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
9032dc28 319
60d142aa 320 info_page = self._download_webpage(info_url, video_id)
9032dc28 321
ee48b6a8 322 error_message = self._html_search_regex(
04e88ca2 323 [r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
324 r'(?s)<div[^>]+id="video_ext_msg"[^>]*>(.+?)</div>'],
ee48b6a8
S
325 info_page, 'error message', default=None)
326 if error_message:
327 raise ExtractorError(error_message, expected=True)
328
7f220b2f
S
329 if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
330 raise ExtractorError(
331 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
332 expected=True)
333
1d1d60f6
S
334 ERROR_COPYRIGHT = 'Video %s has been removed from public access due to rightholder complaint.'
335
e0c51cda
S
336 ERRORS = {
337 r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
1d1d60f6
S
338 ERROR_COPYRIGHT,
339
340 r'>The video .*? was removed from public access by request of the copyright holder.<':
341 ERROR_COPYRIGHT,
3d36cea4 342
e0c51cda 343 r'<!>Please log in or <':
3d36cea4
PH
344 'Video %s is only available for registered users, '
345 'use --username and --password options to provide account credentials.',
346
347 r'<!>Unknown error':
1aa5172f
S
348 'Video %s does not exist.',
349
350 r'<!>Видео временно недоступно':
351 'Video %s is temporarily unavailable.',
d919fa33
S
352
353 r'<!>Access denied':
354 'Access denied to video %s.',
643dc0fc
CP
355
356 r'<!>Видеозапись недоступна, так как её автор был заблокирован.':
357 'Video %s is no longer available, because its author has been blocked.',
358
359 r'<!>This video is no longer available, because its author has been blocked.':
360 'Video %s is no longer available, because its author has been blocked.',
ad1bc71a
RA
361
362 r'<!>This video is no longer available, because it has been deleted.':
363 'Video %s is no longer available, because it has been deleted.',
a640c4d2 364
365 r'<!>The video .+? is not available in your region.':
366 'Video %s is not available in your region.',
e0c51cda 367 }
9032dc28 368
e0c51cda
S
369 for error_re, error_msg in ERRORS.items():
370 if re.search(error_re, info_page):
371 raise ExtractorError(error_msg % video_id, expected=True)
9334f8f1 372
5113b691 373 youtube_url = YoutubeIE._extract_url(info_page)
46478456 374 if youtube_url:
5113b691 375 return self.url_result(youtube_url, ie=YoutubeIE.ie_key())
849086a1 376
09b9c45e 377 vimeo_url = VimeoIE._extract_url(url, info_page)
84663361
S
378 if vimeo_url is not None:
379 return self.url_result(vimeo_url)
380
c4737bea
S
381 pladform_url = PladformIE._extract_url(info_page)
382 if pladform_url:
383 return self.url_result(pladform_url)
384
7a1818c9 385 m_rutube = re.search(
35972ba1 386 r'\ssrc="((?:https?:)?//rutube\.ru\\?/(?:video|play)\\?/embed(?:.*?))\\?"', info_page)
7a1818c9 387 if m_rutube is not None:
7a1818c9
PH
388 rutube_url = self._proto_relative_url(
389 m_rutube.group(1).replace('\\', ''))
390 return self.url_result(rutube_url)
391
e3845525
KM
392 dailymotion_urls = DailymotionIE._extract_urls(info_page)
393 if dailymotion_urls:
394 return self.url_result(dailymotion_urls[0], DailymotionIE.ie_key())
395
054932f4 396 m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
849086a1 397 if m_opts:
054932f4 398 m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
849086a1
S
399 if m_opts_url:
400 opts_url = m_opts_url.group(1)
401 if opts_url.startswith('//'):
402 opts_url = 'http:' + opts_url
403 return self.url_result(opts_url)
404
9305a0dc
S
405 # vars does not look to be served anymore since 24.10.2016
406 data = self._parse_json(
407 self._search_regex(
408 r'var\s+vars\s*=\s*({.+?});', info_page, 'vars', default='{}'),
409 video_id, fatal=False)
410
411 # <!json> is served instead
412 if not data:
413 data = self._parse_json(
414 self._search_regex(
ad1bc71a
RA
415 [r'<!json>\s*({.+?})\s*<!>', r'<!json>\s*({.+})'],
416 info_page, 'json', default='{}'),
9cdb0a33
S
417 video_id)
418 if data:
419 data = data['player']['params'][0]
420
421 if not data:
422 data = self._parse_json(
423 self._search_regex(
424 r'var\s+playerParams\s*=\s*({.+?})\s*;\s*\n', info_page,
425 'player params'),
426 video_id)['params'][0]
60d142aa 427
475f8a45
S
428 title = unescapeHTML(data['md_title'])
429
424ed37e
S
430 # 2 = live
431 # 3 = post live (finished live)
9cdb0a33
S
432 is_live = data.get('live') == 2
433 if is_live:
475f8a45
S
434 title = self._live_title(title)
435
a7ee8a00 436 timestamp = unified_timestamp(self._html_search_regex(
70d7b323 437 r'class=["\']mv_info_date[^>]+>([^<]+)(?:<|from)', info_page,
ad1bc71a 438 'upload date', default=None)) or int_or_none(data.get('date'))
3aa3953d 439
70d7b323
S
440 view_count = str_to_int(self._search_regex(
441 r'class=["\']mv_views_count[^>]+>\s*([\d,.]+)',
498a8a4c 442 info_page, 'view count', default=None))
8117df4c 443
bf4b3b6b 444 formats = []
475f8a45 445 for format_id, format_url in data.items():
3052a30d
S
446 format_url = url_or_none(format_url)
447 if not format_url or not format_url.startswith(('http', '//', 'rtmp')):
bf4b3b6b 448 continue
424ed37e
S
449 if (format_id.startswith(('url', 'cache')) or
450 format_id in ('extra_data', 'live_mp4', 'postlive_mp4')):
475f8a45
S
451 height = int_or_none(self._search_regex(
452 r'^(?:url|cache)(\d+)', format_id, 'height', default=None))
453 formats.append({
454 'format_id': format_id,
455 'url': format_url,
456 'height': height,
457 })
458 elif format_id == 'hls':
459 formats.extend(self._extract_m3u8_formats(
fb4fc449 460 format_url, video_id, 'mp4', 'm3u8_native',
9cdb0a33 461 m3u8_id=format_id, fatal=False, live=is_live))
475f8a45
S
462 elif format_id == 'rtmp':
463 formats.append({
464 'format_id': format_id,
465 'url': format_url,
466 'ext': 'flv',
467 })
913f3292
PH
468 self._sort_formats(formats)
469
60d142aa 470 return {
220828f2 471 'id': video_id,
913f3292 472 'formats': formats,
475f8a45 473 'title': title,
913f3292
PH
474 'thumbnail': data.get('jpg'),
475 'uploader': data.get('md_author'),
ad1bc71a 476 'uploader_id': str_or_none(data.get('author_id')),
02a12f9f 477 'duration': data.get('duration'),
a7ee8a00 478 'timestamp': timestamp,
8117df4c 479 'view_count': view_count,
ad1bc71a
RA
480 'like_count': int_or_none(data.get('liked')),
481 'dislike_count': int_or_none(data.get('nolikes')),
9cdb0a33 482 'is_live': is_live,
60d142aa 483 }
469d4c89
WS
484
485
2d19fb50 486class VKUserVideosIE(VKBaseIE):
1ecb5d1d
S
487 IE_NAME = 'vk:uservideos'
488 IE_DESC = "VK - User's Videos"
bdafd88d 489 _VALID_URL = r'https?://(?:(?:m|new)\.)?vk\.com/videos(?P<id>-?[0-9]+)(?!\?.*\bz=video)(?:[/?#&]|$)'
469d4c89 490 _TEMPLATE_URL = 'https://vk.com/videos'
dc786d3d 491 _TESTS = [{
469d4c89 492 'url': 'http://vk.com/videos205387401',
15ec6693
PH
493 'info_dict': {
494 'id': '205387401',
dc786d3d 495 'title': "Tom Cruise's Videos",
15ec6693 496 },
469d4c89 497 'playlist_mincount': 4,
dc786d3d
S
498 }, {
499 'url': 'http://vk.com/videos-77521',
500 'only_matching': True,
0436157b
S
501 }, {
502 'url': 'http://vk.com/videos-97664626?section=all',
503 'only_matching': True,
bdafd88d
S
504 }, {
505 'url': 'http://m.vk.com/videos205387401',
506 'only_matching': True,
507 }, {
508 'url': 'http://new.vk.com/videos205387401',
509 'only_matching': True,
dc786d3d 510 }]
469d4c89 511
469d4c89 512 def _real_extract(self, url):
021a0db8 513 page_id = self._match_id(url)
dc786d3d
S
514
515 webpage = self._download_webpage(url, page_id)
516
517 entries = [
d16abf43
PH
518 self.url_result(
519 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
fec73daa 520 for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
dc786d3d
S
521
522 title = unescapeHTML(self._search_regex(
523 r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
524 webpage, 'title', default=page_id))
525
526 return self.playlist_result(entries, page_id, title)
2d19fb50
S
527
528
529class VKWallPostIE(VKBaseIE):
530 IE_NAME = 'vk:wallpost'
531 _VALID_URL = r'https?://(?:(?:(?:(?:m|new)\.)?vk\.com/(?:[^?]+\?.*\bw=)?wall(?P<id>-?\d+_\d+)))'
532 _TESTS = [{
533 # public page URL, audio playlist
534 'url': 'https://vk.com/bs.official?w=wall-23538238_35',
535 'info_dict': {
536 'id': '23538238_35',
537 'title': 'Black Shadow - Wall post 23538238_35',
538 'description': 'md5:3f84b9c4f9ef499731cf1ced9998cc0c',
539 },
540 'playlist': [{
541 'md5': '5ba93864ec5b85f7ce19a9af4af080f6',
542 'info_dict': {
543 'id': '135220665_111806521',
544 'ext': 'mp3',
545 'title': 'Black Shadow - Слепое Верование',
546 'duration': 370,
547 'uploader': 'Black Shadow',
548 'artist': 'Black Shadow',
549 'track': 'Слепое Верование',
550 },
551 }, {
552 'md5': '4cc7e804579122b17ea95af7834c9233',
553 'info_dict': {
554 'id': '135220665_111802303',
555 'ext': 'mp3',
556 'title': 'Black Shadow - Война - Негасимое Бездны Пламя!',
557 'duration': 423,
558 'uploader': 'Black Shadow',
559 'artist': 'Black Shadow',
560 'track': 'Война - Негасимое Бездны Пламя!',
561 },
562 'params': {
563 'skip_download': True,
564 },
565 }],
51815886
S
566 'params': {
567 'usenetrc': True,
568 },
2d19fb50
S
569 'skip': 'Requires vk account credentials',
570 }, {
571 # single YouTube embed, no leading -
572 'url': 'https://vk.com/wall85155021_6319',
573 'info_dict': {
574 'id': '85155021_6319',
575 'title': 'Sergey Gorbunov - Wall post 85155021_6319',
576 },
577 'playlist_count': 1,
51815886
S
578 'params': {
579 'usenetrc': True,
580 },
2d19fb50
S
581 'skip': 'Requires vk account credentials',
582 }, {
583 # wall page URL
584 'url': 'https://vk.com/wall-23538238_35',
585 'only_matching': True,
586 }, {
587 # mobile wall page URL
588 'url': 'https://m.vk.com/wall-23538238_35',
589 'only_matching': True,
590 }]
591
592 def _real_extract(self, url):
593 post_id = self._match_id(url)
594
595 wall_url = 'https://vk.com/wall%s' % post_id
596
597 post_id = remove_start(post_id, '-')
598
599 webpage = self._download_webpage(wall_url, post_id)
600
601 error = self._html_search_regex(
602 r'>Error</div>\s*<div[^>]+class=["\']body["\'][^>]*>([^<]+)',
603 webpage, 'error', default=None)
604 if error:
605 raise ExtractorError('VK said: %s' % error, expected=True)
606
607 description = clean_html(get_element_by_class('wall_post_text', webpage))
51815886 608 uploader = clean_html(get_element_by_class('author', webpage))
2d19fb50
S
609 thumbnail = self._og_search_thumbnail(webpage)
610
611 entries = []
612
51815886
S
613 audio_ids = re.findall(r'data-full-id=["\'](\d+_\d+)', webpage)
614 if audio_ids:
615 al_audio = self._download_webpage(
616 'https://vk.com/al_audio.php', post_id,
617 note='Downloading audio info', fatal=False,
618 data=urlencode_postdata({
619 'act': 'reload_audio',
620 'al': '1',
621 'ids': ','.join(audio_ids)
622 }))
623 if al_audio:
624 Audio = collections.namedtuple(
625 'Audio', ['id', 'user_id', 'url', 'track', 'artist', 'duration'])
626 audios = self._parse_json(
627 self._search_regex(
628 r'<!json>(.+?)<!>', al_audio, 'audios', default='[]'),
629 post_id, fatal=False, transform_source=unescapeHTML)
630 if isinstance(audios, list):
631 for audio in audios:
632 a = Audio._make(audio[:6])
633 entries.append({
634 'id': '%s_%s' % (a.user_id, a.id),
635 'url': a.url,
636 'title': '%s - %s' % (a.artist, a.track) if a.artist and a.track else a.id,
637 'thumbnail': thumbnail,
638 'duration': a.duration,
639 'uploader': uploader,
640 'artist': a.artist,
641 'track': a.track,
642 })
2d19fb50
S
643
644 for video in re.finditer(
645 r'<a[^>]+href=(["\'])(?P<url>/video(?:-?[\d_]+).*?)\1', webpage):
646 entries.append(self.url_result(
647 compat_urlparse.urljoin(url, video.group('url')), VKIE.ie_key()))
648
649 title = 'Wall post %s' % post_id
650
651 return self.playlist_result(
652 orderedSet(entries), post_id,
653 '%s - %s' % (uploader, title) if uploader else title,
654 description)