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