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