]> gitweb @ CieloNegro.org - youtube-dl.git/blob - youtube_dl/extractor/vimeo.py
[generic] Add support for multiple vimeo embeds (Closes #10862)
[youtube-dl.git] / youtube_dl / extractor / vimeo.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5 import re
6 import itertools
7
8 from .common import InfoExtractor
9 from ..compat import (
10     compat_HTTPError,
11     compat_str,
12     compat_urlparse,
13 )
14 from ..utils import (
15     determine_ext,
16     ExtractorError,
17     InAdvancePagedList,
18     int_or_none,
19     NO_DEFAULT,
20     RegexNotFoundError,
21     sanitized_Request,
22     smuggle_url,
23     std_headers,
24     unified_strdate,
25     unsmuggle_url,
26     urlencode_postdata,
27     unescapeHTML,
28     parse_filesize,
29     try_get,
30 )
31
32
33 class VimeoBaseInfoExtractor(InfoExtractor):
34     _NETRC_MACHINE = 'vimeo'
35     _LOGIN_REQUIRED = False
36     _LOGIN_URL = 'https://vimeo.com/log_in'
37
38     def _login(self):
39         (username, password) = self._get_login_info()
40         if username is None:
41             if self._LOGIN_REQUIRED:
42                 raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
43             return
44         self.report_login()
45         webpage = self._download_webpage(self._LOGIN_URL, None, False)
46         token, vuid = self._extract_xsrft_and_vuid(webpage)
47         data = urlencode_postdata({
48             'action': 'login',
49             'email': username,
50             'password': password,
51             'service': 'vimeo',
52             'token': token,
53         })
54         login_request = sanitized_Request(self._LOGIN_URL, data)
55         login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
56         login_request.add_header('Referer', self._LOGIN_URL)
57         self._set_vimeo_cookie('vuid', vuid)
58         self._download_webpage(login_request, None, False, 'Wrong login info')
59
60     def _verify_video_password(self, url, video_id, webpage):
61         password = self._downloader.params.get('videopassword')
62         if password is None:
63             raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True)
64         token, vuid = self._extract_xsrft_and_vuid(webpage)
65         data = urlencode_postdata({
66             'password': password,
67             'token': token,
68         })
69         if url.startswith('http://'):
70             # vimeo only supports https now, but the user can give an http url
71             url = url.replace('http://', 'https://')
72         password_request = sanitized_Request(url + '/password', data)
73         password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
74         password_request.add_header('Referer', url)
75         self._set_vimeo_cookie('vuid', vuid)
76         return self._download_webpage(
77             password_request, video_id,
78             'Verifying the password', 'Wrong password')
79
80     def _extract_xsrft_and_vuid(self, webpage):
81         xsrft = self._search_regex(
82             r'(?:(?P<q1>["\'])xsrft(?P=q1)\s*:|xsrft\s*[=:])\s*(?P<q>["\'])(?P<xsrft>.+?)(?P=q)',
83             webpage, 'login token', group='xsrft')
84         vuid = self._search_regex(
85             r'["\']vuid["\']\s*:\s*(["\'])(?P<vuid>.+?)\1',
86             webpage, 'vuid', group='vuid')
87         return xsrft, vuid
88
89     def _set_vimeo_cookie(self, name, value):
90         self._set_cookie('vimeo.com', name, value)
91
92     def _vimeo_sort_formats(self, formats):
93         # Bitrates are completely broken. Single m3u8 may contain entries in kbps and bps
94         # at the same time without actual units specified. This lead to wrong sorting.
95         self._sort_formats(formats, field_preference=('preference', 'height', 'width', 'fps', 'format_id'))
96
97     def _parse_config(self, config, video_id):
98         # Extract title
99         video_title = config['video']['title']
100
101         # Extract uploader, uploader_url and uploader_id
102         video_uploader = config['video'].get('owner', {}).get('name')
103         video_uploader_url = config['video'].get('owner', {}).get('url')
104         video_uploader_id = video_uploader_url.split('/')[-1] if video_uploader_url else None
105
106         # Extract video thumbnail
107         video_thumbnail = config['video'].get('thumbnail')
108         if video_thumbnail is None:
109             video_thumbs = config['video'].get('thumbs')
110             if video_thumbs and isinstance(video_thumbs, dict):
111                 _, video_thumbnail = sorted((int(width if width.isdigit() else 0), t_url) for (width, t_url) in video_thumbs.items())[-1]
112
113         # Extract video duration
114         video_duration = int_or_none(config['video'].get('duration'))
115
116         formats = []
117         config_files = config['video'].get('files') or config['request'].get('files', {})
118         for f in config_files.get('progressive', []):
119             video_url = f.get('url')
120             if not video_url:
121                 continue
122             formats.append({
123                 'url': video_url,
124                 'format_id': 'http-%s' % f.get('quality'),
125                 'width': int_or_none(f.get('width')),
126                 'height': int_or_none(f.get('height')),
127                 'fps': int_or_none(f.get('fps')),
128                 'tbr': int_or_none(f.get('bitrate')),
129             })
130         m3u8_url = config_files.get('hls', {}).get('url')
131         if m3u8_url:
132             formats.extend(self._extract_m3u8_formats(
133                 m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
134
135         subtitles = {}
136         text_tracks = config['request'].get('text_tracks')
137         if text_tracks:
138             for tt in text_tracks:
139                 subtitles[tt['lang']] = [{
140                     'ext': 'vtt',
141                     'url': 'https://vimeo.com' + tt['url'],
142                 }]
143
144         return {
145             'title': video_title,
146             'uploader': video_uploader,
147             'uploader_id': video_uploader_id,
148             'uploader_url': video_uploader_url,
149             'thumbnail': video_thumbnail,
150             'duration': video_duration,
151             'formats': formats,
152             'subtitles': subtitles,
153         }
154
155
156 class VimeoIE(VimeoBaseInfoExtractor):
157     """Information extractor for vimeo.com."""
158
159     # _VALID_URL matches Vimeo URLs
160     _VALID_URL = r'''(?x)
161                     https?://
162                         (?:
163                             (?:
164                                 www|
165                                 (?P<player>player)
166                             )
167                             \.
168                         )?
169                         vimeo(?P<pro>pro)?\.com/
170                         (?!(?:channels|album)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
171                         (?:.*?/)?
172                         (?:
173                             (?:
174                                 play_redirect_hls|
175                                 moogaloop\.swf)\?clip_id=
176                             )?
177                         (?:videos?/)?
178                         (?P<id>[0-9]+)
179                         (?:/[\da-f]+)?
180                         /?(?:[?&].*)?(?:[#].*)?$
181                     '''
182     IE_NAME = 'vimeo'
183     _TESTS = [
184         {
185             'url': 'http://vimeo.com/56015672#at=0',
186             'md5': '8879b6cc097e987f02484baf890129e5',
187             'info_dict': {
188                 'id': '56015672',
189                 'ext': 'mp4',
190                 'title': "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
191                 'description': 'md5:2d3305bad981a06ff79f027f19865021',
192                 'upload_date': '20121220',
193                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user7108434',
194                 'uploader_id': 'user7108434',
195                 'uploader': 'Filippo Valsorda',
196                 'duration': 10,
197             },
198         },
199         {
200             'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
201             'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
202             'note': 'Vimeo Pro video (#1197)',
203             'info_dict': {
204                 'id': '68093876',
205                 'ext': 'mp4',
206                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/openstreetmapus',
207                 'uploader_id': 'openstreetmapus',
208                 'uploader': 'OpenStreetMap US',
209                 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
210                 'description': 'md5:fd69a7b8d8c34a4e1d2ec2e4afd6ec30',
211                 'duration': 1595,
212             },
213         },
214         {
215             'url': 'http://player.vimeo.com/video/54469442',
216             'md5': '619b811a4417aa4abe78dc653becf511',
217             'note': 'Videos that embed the url in the player page',
218             'info_dict': {
219                 'id': '54469442',
220                 'ext': 'mp4',
221                 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
222                 'uploader': 'The BLN & Business of Software',
223                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/theblnbusinessofsoftware',
224                 'uploader_id': 'theblnbusinessofsoftware',
225                 'duration': 3610,
226                 'description': None,
227             },
228         },
229         {
230             'url': 'http://vimeo.com/68375962',
231             'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
232             'note': 'Video protected with password',
233             'info_dict': {
234                 'id': '68375962',
235                 'ext': 'mp4',
236                 'title': 'youtube-dl password protected test video',
237                 'upload_date': '20130614',
238                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user18948128',
239                 'uploader_id': 'user18948128',
240                 'uploader': 'Jaime Marquínez Ferrándiz',
241                 'duration': 10,
242                 'description': 'This is "youtube-dl password protected test video" by  on Vimeo, the home for high quality videos and the people who love them.',
243             },
244             'params': {
245                 'videopassword': 'youtube-dl',
246             },
247         },
248         {
249             'url': 'http://vimeo.com/channels/keypeele/75629013',
250             'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
251             'info_dict': {
252                 'id': '75629013',
253                 'ext': 'mp4',
254                 'title': 'Key & Peele: Terrorist Interrogation',
255                 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
256                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/atencio',
257                 'uploader_id': 'atencio',
258                 'uploader': 'Peter Atencio',
259                 'upload_date': '20130927',
260                 'duration': 187,
261             },
262         },
263         {
264             'url': 'http://vimeo.com/76979871',
265             'note': 'Video with subtitles',
266             'info_dict': {
267                 'id': '76979871',
268                 'ext': 'mp4',
269                 'title': 'The New Vimeo Player (You Know, For Videos)',
270                 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
271                 'upload_date': '20131015',
272                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/staff',
273                 'uploader_id': 'staff',
274                 'uploader': 'Vimeo Staff',
275                 'duration': 62,
276             }
277         },
278         {
279             # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
280             'url': 'https://player.vimeo.com/video/98044508',
281             'note': 'The js code contains assignments to the same variable as the config',
282             'info_dict': {
283                 'id': '98044508',
284                 'ext': 'mp4',
285                 'title': 'Pier Solar OUYA Official Trailer',
286                 'uploader': 'Tulio Gonçalves',
287                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user28849593',
288                 'uploader_id': 'user28849593',
289             },
290         },
291         {
292             # contains original format
293             'url': 'https://vimeo.com/33951933',
294             'md5': '2d9f5475e0537f013d0073e812ab89e6',
295             'info_dict': {
296                 'id': '33951933',
297                 'ext': 'mp4',
298                 'title': 'FOX CLASSICS - Forever Classic ID - A Full Minute',
299                 'uploader': 'The DMCI',
300                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/dmci',
301                 'uploader_id': 'dmci',
302                 'upload_date': '20111220',
303                 'description': 'md5:ae23671e82d05415868f7ad1aec21147',
304             },
305         },
306         {
307             # only available via https://vimeo.com/channels/tributes/6213729 and
308             # not via https://vimeo.com/6213729
309             'url': 'https://vimeo.com/channels/tributes/6213729',
310             'info_dict': {
311                 'id': '6213729',
312                 'ext': 'mp4',
313                 'title': 'Vimeo Tribute: The Shining',
314                 'uploader': 'Casey Donahue',
315                 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/caseydonahue',
316                 'uploader_id': 'caseydonahue',
317                 'upload_date': '20090821',
318                 'description': 'md5:bdbf314014e58713e6e5b66eb252f4a6',
319             },
320             'params': {
321                 'skip_download': True,
322             },
323             'expected_warnings': ['Unable to download JSON metadata'],
324         },
325         {
326             'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
327             'only_matching': True,
328         },
329         {
330             'url': 'https://vimeo.com/109815029',
331             'note': 'Video not completely processed, "failed" seed status',
332             'only_matching': True,
333         },
334         {
335             'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
336             'only_matching': True,
337         },
338         {
339             'url': 'https://vimeo.com/album/2632481/video/79010983',
340             'only_matching': True,
341         },
342         {
343             # source file returns 403: Forbidden
344             'url': 'https://vimeo.com/7809605',
345             'only_matching': True,
346         },
347         {
348             'url': 'https://vimeo.com/160743502/abd0e13fb4',
349             'only_matching': True,
350         }
351     ]
352
353     @staticmethod
354     def _smuggle_referrer(url, referrer_url):
355         return smuggle_url(url, {'http_headers': {'Referer': referrer_url}})
356
357     @staticmethod
358     def _extract_urls(url, webpage):
359         urls = []
360         # Look for embedded (iframe) Vimeo player
361         for mobj in re.finditer(
362             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage):
363             urls.append(VimeoIE._smuggle_referrer(unescapeHTML(mobj.group('url')), url))
364         PLAIN_EMBED_RE = (
365             # Look for embedded (swf embed) Vimeo player
366             r'<embed[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
367             # Look more for non-standard embedded Vimeo player
368             r'<video[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)\1',
369         )
370         for embed_re in PLAIN_EMBED_RE:
371             for mobj in re.finditer(embed_re, webpage):
372                 urls.append(mobj.group('url'))
373         return urls
374
375     @staticmethod
376     def _extract_url(url, webpage):
377         urls = VimeoIE._extract_urls(url, webpage)
378         return urls[0] if urls else None
379
380     def _verify_player_video_password(self, url, video_id):
381         password = self._downloader.params.get('videopassword')
382         if password is None:
383             raise ExtractorError('This video is protected by a password, use the --video-password option')
384         data = urlencode_postdata({'password': password})
385         pass_url = url + '/check-password'
386         password_request = sanitized_Request(pass_url, data)
387         password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
388         password_request.add_header('Referer', url)
389         return self._download_json(
390             password_request, video_id,
391             'Verifying the password', 'Wrong password')
392
393     def _real_initialize(self):
394         self._login()
395
396     def _real_extract(self, url):
397         url, data = unsmuggle_url(url, {})
398         headers = std_headers.copy()
399         if 'http_headers' in data:
400             headers.update(data['http_headers'])
401         if 'Referer' not in headers:
402             headers['Referer'] = url
403
404         # Extract ID from URL
405         mobj = re.match(self._VALID_URL, url)
406         video_id = mobj.group('id')
407         orig_url = url
408         if mobj.group('pro') or mobj.group('player'):
409             url = 'https://player.vimeo.com/video/' + video_id
410         elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf')):
411             url = 'https://vimeo.com/' + video_id
412
413         # Retrieve video webpage to extract further information
414         request = sanitized_Request(url, headers=headers)
415         try:
416             webpage = self._download_webpage(request, video_id)
417         except ExtractorError as ee:
418             if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 403:
419                 errmsg = ee.cause.read()
420                 if b'Because of its privacy settings, this video cannot be played here' in errmsg:
421                     raise ExtractorError(
422                         'Cannot download embed-only video without embedding '
423                         'URL. Please call youtube-dl with the URL of the page '
424                         'that embeds this video.',
425                         expected=True)
426             raise
427
428         # Now we begin extracting as much information as we can from what we
429         # retrieved. First we extract the information common to all extractors,
430         # and latter we extract those that are Vimeo specific.
431         self.report_extraction(video_id)
432
433         vimeo_config = self._search_regex(
434             r'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage,
435             'vimeo config', default=None)
436         if vimeo_config:
437             seed_status = self._parse_json(vimeo_config, video_id).get('seed_status', {})
438             if seed_status.get('state') == 'failed':
439                 raise ExtractorError(
440                     '%s said: %s' % (self.IE_NAME, seed_status['title']),
441                     expected=True)
442
443         # Extract the config JSON
444         try:
445             try:
446                 config_url = self._html_search_regex(
447                     r' data-config-url="(.+?)"', webpage,
448                     'config URL', default=None)
449                 if not config_url:
450                     # Sometimes new react-based page is served instead of old one that require
451                     # different config URL extraction approach (see
452                     # https://github.com/rg3/youtube-dl/pull/7209)
453                     vimeo_clip_page_config = self._search_regex(
454                         r'vimeo\.clip_page_config\s*=\s*({.+?});', webpage,
455                         'vimeo clip page config')
456                     config_url = self._parse_json(
457                         vimeo_clip_page_config, video_id)['player']['config_url']
458                 config_json = self._download_webpage(config_url, video_id)
459                 config = json.loads(config_json)
460             except RegexNotFoundError:
461                 # For pro videos or player.vimeo.com urls
462                 # We try to find out to which variable is assigned the config dic
463                 m_variable_name = re.search('(\w)\.video\.id', webpage)
464                 if m_variable_name is not None:
465                     config_re = r'%s=({[^}].+?});' % re.escape(m_variable_name.group(1))
466                 else:
467                     config_re = [r' = {config:({.+?}),assets:', r'(?:[abc])=({.+?});']
468                 config = self._search_regex(config_re, webpage, 'info section',
469                                             flags=re.DOTALL)
470                 config = json.loads(config)
471         except Exception as e:
472             if re.search('The creator of this video has not given you permission to embed it on this domain.', webpage):
473                 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
474
475             if re.search(r'<form[^>]+?id="pw_form"', webpage) is not None:
476                 if '_video_password_verified' in data:
477                     raise ExtractorError('video password verification failed!')
478                 self._verify_video_password(url, video_id, webpage)
479                 return self._real_extract(
480                     smuggle_url(url, {'_video_password_verified': 'verified'}))
481             else:
482                 raise ExtractorError('Unable to extract info section',
483                                      cause=e)
484         else:
485             if config.get('view') == 4:
486                 config = self._verify_player_video_password(url, video_id)
487
488         def is_rented():
489             if '>You rented this title.<' in webpage:
490                 return True
491             if config.get('user', {}).get('purchased'):
492                 return True
493             label = try_get(
494                 config, lambda x: x['video']['vod']['purchase_options'][0]['label_string'], compat_str)
495             if label and label.startswith('You rented this'):
496                 return True
497             return False
498
499         if is_rented():
500             feature_id = config.get('video', {}).get('vod', {}).get('feature_id')
501             if feature_id and not data.get('force_feature_id', False):
502                 return self.url_result(smuggle_url(
503                     'https://player.vimeo.com/player/%s' % feature_id,
504                     {'force_feature_id': True}), 'Vimeo')
505
506         # Extract video description
507
508         video_description = self._html_search_regex(
509             r'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
510             webpage, 'description', default=None)
511         if not video_description:
512             video_description = self._html_search_meta(
513                 'description', webpage, default=None)
514         if not video_description and mobj.group('pro'):
515             orig_webpage = self._download_webpage(
516                 orig_url, video_id,
517                 note='Downloading webpage for description',
518                 fatal=False)
519             if orig_webpage:
520                 video_description = self._html_search_meta(
521                     'description', orig_webpage, default=None)
522         if not video_description and not mobj.group('player'):
523             self._downloader.report_warning('Cannot find video description')
524
525         # Extract upload date
526         video_upload_date = None
527         mobj = re.search(r'<time[^>]+datetime="([^"]+)"', webpage)
528         if mobj is not None:
529             video_upload_date = unified_strdate(mobj.group(1))
530
531         try:
532             view_count = int(self._search_regex(r'UserPlays:(\d+)', webpage, 'view count'))
533             like_count = int(self._search_regex(r'UserLikes:(\d+)', webpage, 'like count'))
534             comment_count = int(self._search_regex(r'UserComments:(\d+)', webpage, 'comment count'))
535         except RegexNotFoundError:
536             # This info is only available in vimeo.com/{id} urls
537             view_count = None
538             like_count = None
539             comment_count = None
540
541         formats = []
542         download_request = sanitized_Request('https://vimeo.com/%s?action=load_download_config' % video_id, headers={
543             'X-Requested-With': 'XMLHttpRequest'})
544         download_data = self._download_json(download_request, video_id, fatal=False)
545         if download_data:
546             source_file = download_data.get('source_file')
547             if isinstance(source_file, dict):
548                 download_url = source_file.get('download_url')
549                 if download_url and not source_file.get('is_cold') and not source_file.get('is_defrosting'):
550                     source_name = source_file.get('public_name', 'Original')
551                     if self._is_valid_url(download_url, video_id, '%s video' % source_name):
552                         ext = source_file.get('extension', determine_ext(download_url)).lower()
553                         formats.append({
554                             'url': download_url,
555                             'ext': ext,
556                             'width': int_or_none(source_file.get('width')),
557                             'height': int_or_none(source_file.get('height')),
558                             'filesize': parse_filesize(source_file.get('size')),
559                             'format_id': source_name,
560                             'preference': 1,
561                         })
562
563         info_dict = self._parse_config(config, video_id)
564         formats.extend(info_dict['formats'])
565         self._vimeo_sort_formats(formats)
566         info_dict.update({
567             'id': video_id,
568             'formats': formats,
569             'upload_date': video_upload_date,
570             'description': video_description,
571             'webpage_url': url,
572             'view_count': view_count,
573             'like_count': like_count,
574             'comment_count': comment_count,
575         })
576
577         return info_dict
578
579
580 class VimeoOndemandIE(VimeoBaseInfoExtractor):
581     IE_NAME = 'vimeo:ondemand'
582     _VALID_URL = r'https?://(?:www\.)?vimeo\.com/ondemand/(?P<id>[^/?#&]+)'
583     _TESTS = [{
584         # ondemand video not available via https://vimeo.com/id
585         'url': 'https://vimeo.com/ondemand/20704',
586         'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
587         'info_dict': {
588             'id': '105442900',
589             'ext': 'mp4',
590             'title': 'המעבדה - במאי יותם פלדמן',
591             'uploader': 'גם סרטים',
592             'uploader_url': 're:https?://(?:www\.)?vimeo\.com/gumfilms',
593             'uploader_id': 'gumfilms',
594         },
595     }, {
596         # requires Referer to be passed along with og:video:url
597         'url': 'https://vimeo.com/ondemand/36938/126682985',
598         'info_dict': {
599             'id': '126682985',
600             'ext': 'mp4',
601             'title': 'Rävlock, rätt läte på rätt plats',
602             'uploader': 'Lindroth & Norin',
603             'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user14430847',
604             'uploader_id': 'user14430847',
605         },
606         'params': {
607             'skip_download': True,
608         },
609     }, {
610         'url': 'https://vimeo.com/ondemand/nazmaalik',
611         'only_matching': True,
612     }, {
613         'url': 'https://vimeo.com/ondemand/141692381',
614         'only_matching': True,
615     }, {
616         'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
617         'only_matching': True,
618     }]
619
620     def _real_extract(self, url):
621         video_id = self._match_id(url)
622         webpage = self._download_webpage(url, video_id)
623         return self.url_result(
624             # Some videos require Referer to be passed along with og:video:url
625             # similarly to generic vimeo embeds (e.g.
626             # https://vimeo.com/ondemand/36938/126682985).
627             VimeoIE._smuggle_referrer(self._og_search_video_url(webpage), url),
628             VimeoIE.ie_key())
629
630
631 class VimeoChannelIE(VimeoBaseInfoExtractor):
632     IE_NAME = 'vimeo:channel'
633     _VALID_URL = r'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
634     _MORE_PAGES_INDICATOR = r'<a.+?rel="next"'
635     _TITLE = None
636     _TITLE_RE = r'<link rel="alternate"[^>]+?title="(.*?)"'
637     _TESTS = [{
638         'url': 'https://vimeo.com/channels/tributes',
639         'info_dict': {
640             'id': 'tributes',
641             'title': 'Vimeo Tributes',
642         },
643         'playlist_mincount': 25,
644     }]
645
646     def _page_url(self, base_url, pagenum):
647         return '%s/videos/page:%d/' % (base_url, pagenum)
648
649     def _extract_list_title(self, webpage):
650         return self._TITLE or self._html_search_regex(self._TITLE_RE, webpage, 'list title')
651
652     def _login_list_password(self, page_url, list_id, webpage):
653         login_form = self._search_regex(
654             r'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
655             webpage, 'login form', default=None)
656         if not login_form:
657             return webpage
658
659         password = self._downloader.params.get('videopassword')
660         if password is None:
661             raise ExtractorError('This album is protected by a password, use the --video-password option', expected=True)
662         fields = self._hidden_inputs(login_form)
663         token, vuid = self._extract_xsrft_and_vuid(webpage)
664         fields['token'] = token
665         fields['password'] = password
666         post = urlencode_postdata(fields)
667         password_path = self._search_regex(
668             r'action="([^"]+)"', login_form, 'password URL')
669         password_url = compat_urlparse.urljoin(page_url, password_path)
670         password_request = sanitized_Request(password_url, post)
671         password_request.add_header('Content-type', 'application/x-www-form-urlencoded')
672         self._set_vimeo_cookie('vuid', vuid)
673         self._set_vimeo_cookie('xsrft', token)
674
675         return self._download_webpage(
676             password_request, list_id,
677             'Verifying the password', 'Wrong password')
678
679     def _title_and_entries(self, list_id, base_url):
680         for pagenum in itertools.count(1):
681             page_url = self._page_url(base_url, pagenum)
682             webpage = self._download_webpage(
683                 page_url, list_id,
684                 'Downloading page %s' % pagenum)
685
686             if pagenum == 1:
687                 webpage = self._login_list_password(page_url, list_id, webpage)
688                 yield self._extract_list_title(webpage)
689
690             # Try extracting href first since not all videos are available via
691             # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
692             clips = re.findall(
693                 r'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)', webpage)
694             if clips:
695                 for video_id, video_url in clips:
696                     yield self.url_result(
697                         compat_urlparse.urljoin(base_url, video_url),
698                         VimeoIE.ie_key(), video_id=video_id)
699             # More relaxed fallback
700             else:
701                 for video_id in re.findall(r'id=["\']clip_(\d+)', webpage):
702                     yield self.url_result(
703                         'https://vimeo.com/%s' % video_id,
704                         VimeoIE.ie_key(), video_id=video_id)
705
706             if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
707                 break
708
709     def _extract_videos(self, list_id, base_url):
710         title_and_entries = self._title_and_entries(list_id, base_url)
711         list_title = next(title_and_entries)
712         return self.playlist_result(title_and_entries, list_id, list_title)
713
714     def _real_extract(self, url):
715         mobj = re.match(self._VALID_URL, url)
716         channel_id = mobj.group('id')
717         return self._extract_videos(channel_id, 'https://vimeo.com/channels/%s' % channel_id)
718
719
720 class VimeoUserIE(VimeoChannelIE):
721     IE_NAME = 'vimeo:user'
722     _VALID_URL = r'https://vimeo\.com/(?!(?:[0-9]+|watchlater)(?:$|[?#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
723     _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>'
724     _TESTS = [{
725         'url': 'https://vimeo.com/nkistudio/videos',
726         'info_dict': {
727             'title': 'Nki',
728             'id': 'nkistudio',
729         },
730         'playlist_mincount': 66,
731     }]
732
733     def _real_extract(self, url):
734         mobj = re.match(self._VALID_URL, url)
735         name = mobj.group('name')
736         return self._extract_videos(name, 'https://vimeo.com/%s' % name)
737
738
739 class VimeoAlbumIE(VimeoChannelIE):
740     IE_NAME = 'vimeo:album'
741     _VALID_URL = r'https://vimeo\.com/album/(?P<id>\d+)(?:$|[?#]|/(?!video))'
742     _TITLE_RE = r'<header id="page_header">\n\s*<h1>(.*?)</h1>'
743     _TESTS = [{
744         'url': 'https://vimeo.com/album/2632481',
745         'info_dict': {
746             'id': '2632481',
747             'title': 'Staff Favorites: November 2013',
748         },
749         'playlist_mincount': 13,
750     }, {
751         'note': 'Password-protected album',
752         'url': 'https://vimeo.com/album/3253534',
753         'info_dict': {
754             'title': 'test',
755             'id': '3253534',
756         },
757         'playlist_count': 1,
758         'params': {
759             'videopassword': 'youtube-dl',
760         }
761     }, {
762         'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail',
763         'only_matching': True,
764     }, {
765         # TODO: respect page number
766         'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail',
767         'only_matching': True,
768     }]
769
770     def _page_url(self, base_url, pagenum):
771         return '%s/page:%d/' % (base_url, pagenum)
772
773     def _real_extract(self, url):
774         album_id = self._match_id(url)
775         return self._extract_videos(album_id, 'https://vimeo.com/album/%s' % album_id)
776
777
778 class VimeoGroupsIE(VimeoAlbumIE):
779     IE_NAME = 'vimeo:group'
780     _VALID_URL = r'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
781     _TESTS = [{
782         'url': 'https://vimeo.com/groups/rolexawards',
783         'info_dict': {
784             'id': 'rolexawards',
785             'title': 'Rolex Awards for Enterprise',
786         },
787         'playlist_mincount': 73,
788     }]
789
790     def _extract_list_title(self, webpage):
791         return self._og_search_title(webpage)
792
793     def _real_extract(self, url):
794         mobj = re.match(self._VALID_URL, url)
795         name = mobj.group('name')
796         return self._extract_videos(name, 'https://vimeo.com/groups/%s' % name)
797
798
799 class VimeoReviewIE(VimeoBaseInfoExtractor):
800     IE_NAME = 'vimeo:review'
801     IE_DESC = 'Review pages on vimeo'
802     _VALID_URL = r'https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)'
803     _TESTS = [{
804         'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
805         'md5': 'c507a72f780cacc12b2248bb4006d253',
806         'info_dict': {
807             'id': '75524534',
808             'ext': 'mp4',
809             'title': "DICK HARDWICK 'Comedian'",
810             'uploader': 'Richard Hardwick',
811             'uploader_id': 'user21297594',
812         }
813     }, {
814         'note': 'video player needs Referer',
815         'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
816         'md5': '6295fdab8f4bf6a002d058b2c6dce276',
817         'info_dict': {
818             'id': '91613211',
819             'ext': 'mp4',
820             'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
821             'uploader': 'DevWeek Events',
822             'duration': 2773,
823             'thumbnail': 're:^https?://.*\.jpg$',
824             'uploader_id': 'user22258446',
825         }
826     }, {
827         'note': 'Password protected',
828         'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
829         'info_dict': {
830             'id': '138823582',
831             'ext': 'mp4',
832             'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
833             'uploader': 'TMB',
834             'uploader_id': 'user37284429',
835         },
836         'params': {
837             'videopassword': 'holygrail',
838         },
839     }]
840
841     def _real_initialize(self):
842         self._login()
843
844     def _get_config_url(self, webpage_url, video_id, video_password_verified=False):
845         webpage = self._download_webpage(webpage_url, video_id)
846         config_url = self._html_search_regex(
847             r'data-config-url="([^"]+)"', webpage, 'config URL',
848             default=NO_DEFAULT if video_password_verified else None)
849         if config_url is None:
850             self._verify_video_password(webpage_url, video_id, webpage)
851             config_url = self._get_config_url(
852                 webpage_url, video_id, video_password_verified=True)
853         return config_url
854
855     def _real_extract(self, url):
856         video_id = self._match_id(url)
857         config_url = self._get_config_url(url, video_id)
858         config = self._download_json(config_url, video_id)
859         info_dict = self._parse_config(config, video_id)
860         self._vimeo_sort_formats(info_dict['formats'])
861         info_dict['id'] = video_id
862         return info_dict
863
864
865 class VimeoWatchLaterIE(VimeoChannelIE):
866     IE_NAME = 'vimeo:watchlater'
867     IE_DESC = 'Vimeo watch later list, "vimeowatchlater" keyword (requires authentication)'
868     _VALID_URL = r'https://vimeo\.com/(?:home/)?watchlater|:vimeowatchlater'
869     _TITLE = 'Watch Later'
870     _LOGIN_REQUIRED = True
871     _TESTS = [{
872         'url': 'https://vimeo.com/watchlater',
873         'only_matching': True,
874     }]
875
876     def _real_initialize(self):
877         self._login()
878
879     def _page_url(self, base_url, pagenum):
880         url = '%s/page:%d/' % (base_url, pagenum)
881         request = sanitized_Request(url)
882         # Set the header to get a partial html page with the ids,
883         # the normal page doesn't contain them.
884         request.add_header('X-Requested-With', 'XMLHttpRequest')
885         return request
886
887     def _real_extract(self, url):
888         return self._extract_videos('watchlater', 'https://vimeo.com/watchlater')
889
890
891 class VimeoLikesIE(InfoExtractor):
892     _VALID_URL = r'https://(?:www\.)?vimeo\.com/user(?P<id>[0-9]+)/likes/?(?:$|[?#]|sort:)'
893     IE_NAME = 'vimeo:likes'
894     IE_DESC = 'Vimeo user likes'
895     _TEST = {
896         'url': 'https://vimeo.com/user755559/likes/',
897         'playlist_mincount': 293,
898         'info_dict': {
899             'id': 'user755559_likes',
900             'description': 'See all the videos urza likes',
901             'title': 'Videos urza likes',
902         },
903     }
904
905     def _real_extract(self, url):
906         user_id = self._match_id(url)
907         webpage = self._download_webpage(url, user_id)
908         page_count = self._int(
909             self._search_regex(
910                 r'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
911                     .*?</a></li>\s*<li\s+class="pagination_next">
912                 ''', webpage, 'page count'),
913             'page count', fatal=True)
914         PAGE_SIZE = 12
915         title = self._html_search_regex(
916             r'(?s)<h1>(.+?)</h1>', webpage, 'title', fatal=False)
917         description = self._html_search_meta('description', webpage)
918
919         def _get_page(idx):
920             page_url = 'https://vimeo.com/user%s/likes/page:%d/sort:date' % (
921                 user_id, idx + 1)
922             webpage = self._download_webpage(
923                 page_url, user_id,
924                 note='Downloading page %d/%d' % (idx + 1, page_count))
925             video_list = self._search_regex(
926                 r'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
927                 webpage, 'video content')
928             paths = re.findall(
929                 r'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list)
930             for path in paths:
931                 yield {
932                     '_type': 'url',
933                     'url': compat_urlparse.urljoin(page_url, path),
934                 }
935
936         pl = InAdvancePagedList(_get_page, page_count, PAGE_SIZE)
937
938         return {
939             '_type': 'playlist',
940             'id': 'user%s_likes' % user_id,
941             'title': title,
942             'description': description,
943             'entries': pl,
944         }