[vimeo] Fix authentication (Closes #7110)
[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_urllib_parse,
12     compat_urllib_request,
13     compat_urlparse,
14 )
15 from ..utils import (
16     ExtractorError,
17     InAdvancePagedList,
18     int_or_none,
19     RegexNotFoundError,
20     smuggle_url,
21     std_headers,
22     unified_strdate,
23     unsmuggle_url,
24     urlencode_postdata,
25     unescapeHTML,
26 )
27
28
29 class VimeoBaseInfoExtractor(InfoExtractor):
30     _NETRC_MACHINE = 'vimeo'
31     _LOGIN_REQUIRED = False
32     _LOGIN_URL = 'https://vimeo.com/log_in'
33
34     def _login(self):
35         (username, password) = self._get_login_info()
36         if username is None:
37             if self._LOGIN_REQUIRED:
38                 raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
39             return
40         self.report_login()
41         webpage = self._download_webpage(self._LOGIN_URL, None, False)
42         token = self._extract_xsrft(webpage)
43         vuid = self._search_regex(
44             r'["\']vuid["\']\s*:\s*(["\'])(?P<vuid>.+?)\1',
45             webpage, 'vuid', group='vuid')
46         data = urlencode_postdata({
47             'action': 'login',
48             'email': username,
49             'password': password,
50             'service': 'vimeo',
51             'token': token,
52         })
53         login_request = compat_urllib_request.Request(self._LOGIN_URL, data)
54         login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
55         login_request.add_header('Cookie', 'vuid=%s' % vuid)
56         login_request.add_header('Referer', self._LOGIN_URL)
57         self._download_webpage(login_request, None, False, 'Wrong login info')
58
59     def _extract_xsrft(self, webpage):
60         return self._search_regex(
61             r'xsrft\s*[=:]\s*(?P<q>["\'])(?P<xsrft>.+?)(?P=q)',
62             webpage, 'login token', group='xsrft')
63
64
65 class VimeoIE(VimeoBaseInfoExtractor):
66     """Information extractor for vimeo.com."""
67
68     # _VALID_URL matches Vimeo URLs
69     _VALID_URL = r'''(?x)
70         https?://
71         (?:(?:www|(?P<player>player))\.)?
72         vimeo(?P<pro>pro)?\.com/
73         (?!channels/[^/?#]+/?(?:$|[?#])|album/)
74         (?:.*?/)?
75         (?:(?:play_redirect_hls|moogaloop\.swf)\?clip_id=)?
76         (?:videos?/)?
77         (?P<id>[0-9]+)
78         /?(?:[?&].*)?(?:[#].*)?$'''
79     IE_NAME = 'vimeo'
80     _TESTS = [
81         {
82             'url': 'http://vimeo.com/56015672#at=0',
83             'md5': '8879b6cc097e987f02484baf890129e5',
84             'info_dict': {
85                 'id': '56015672',
86                 'ext': 'mp4',
87                 "upload_date": "20121220",
88                 "description": "This is a test case for youtube-dl.\nFor more information, see github.com/rg3/youtube-dl\nTest chars: \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
89                 "uploader_id": "user7108434",
90                 "uploader": "Filippo Valsorda",
91                 "title": "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
92                 "duration": 10,
93             },
94         },
95         {
96             'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
97             'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
98             'note': 'Vimeo Pro video (#1197)',
99             'info_dict': {
100                 'id': '68093876',
101                 'ext': 'mp4',
102                 'uploader_id': 'openstreetmapus',
103                 'uploader': 'OpenStreetMap US',
104                 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
105                 'description': 'md5:380943ec71b89736ff4bf27183233d09',
106                 'duration': 1595,
107             },
108         },
109         {
110             'url': 'http://player.vimeo.com/video/54469442',
111             'md5': '619b811a4417aa4abe78dc653becf511',
112             'note': 'Videos that embed the url in the player page',
113             'info_dict': {
114                 'id': '54469442',
115                 'ext': 'mp4',
116                 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
117                 'uploader': 'The BLN & Business of Software',
118                 'uploader_id': 'theblnbusinessofsoftware',
119                 'duration': 3610,
120                 'description': None,
121             },
122         },
123         {
124             'url': 'http://vimeo.com/68375962',
125             'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
126             'note': 'Video protected with password',
127             'info_dict': {
128                 'id': '68375962',
129                 'ext': 'mp4',
130                 'title': 'youtube-dl password protected test video',
131                 'upload_date': '20130614',
132                 'uploader_id': 'user18948128',
133                 'uploader': 'Jaime Marquínez Ferrándiz',
134                 'duration': 10,
135                 'description': 'This is "youtube-dl password protected test video" by Jaime Marquínez Ferrándiz on Vimeo, the home for high quality videos and the people who love them.',
136             },
137             'params': {
138                 'videopassword': 'youtube-dl',
139             },
140         },
141         {
142             'url': 'http://vimeo.com/channels/keypeele/75629013',
143             'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
144             'note': 'Video is freely available via original URL '
145                     'and protected with password when accessed via http://vimeo.com/75629013',
146             'info_dict': {
147                 'id': '75629013',
148                 'ext': 'mp4',
149                 'title': 'Key & Peele: Terrorist Interrogation',
150                 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
151                 'uploader_id': 'atencio',
152                 'uploader': 'Peter Atencio',
153                 'upload_date': '20130927',
154                 'duration': 187,
155             },
156         },
157         {
158             'url': 'http://vimeo.com/76979871',
159             'md5': '3363dd6ffebe3784d56f4132317fd446',
160             'note': 'Video with subtitles',
161             'info_dict': {
162                 'id': '76979871',
163                 'ext': 'mp4',
164                 'title': 'The New Vimeo Player (You Know, For Videos)',
165                 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
166                 'upload_date': '20131015',
167                 'uploader_id': 'staff',
168                 'uploader': 'Vimeo Staff',
169                 'duration': 62,
170             }
171         },
172         {
173             # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
174             'url': 'https://player.vimeo.com/video/98044508',
175             'note': 'The js code contains assignments to the same variable as the config',
176             'info_dict': {
177                 'id': '98044508',
178                 'ext': 'mp4',
179                 'title': 'Pier Solar OUYA Official Trailer',
180                 'uploader': 'Tulio Gonçalves',
181                 'uploader_id': 'user28849593',
182             },
183         },
184     ]
185
186     @staticmethod
187     def _extract_vimeo_url(url, webpage):
188         # Look for embedded (iframe) Vimeo player
189         mobj = re.search(
190             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
191         if mobj:
192             player_url = unescapeHTML(mobj.group('url'))
193             surl = smuggle_url(player_url, {'Referer': url})
194             return surl
195         # Look for embedded (swf embed) Vimeo player
196         mobj = re.search(
197             r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
198         if mobj:
199             return mobj.group(1)
200
201     def _verify_video_password(self, url, video_id, webpage):
202         password = self._downloader.params.get('videopassword', None)
203         if password is None:
204             raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True)
205         token = self._extract_xsrft(webpage)
206         data = urlencode_postdata({
207             'password': password,
208             'token': token,
209         })
210         if url.startswith('http://'):
211             # vimeo only supports https now, but the user can give an http url
212             url = url.replace('http://', 'https://')
213         password_request = compat_urllib_request.Request(url + '/password', data)
214         password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
215         password_request.add_header('Referer', url)
216         return self._download_webpage(
217             password_request, video_id,
218             'Verifying the password', 'Wrong password')
219
220     def _verify_player_video_password(self, url, video_id):
221         password = self._downloader.params.get('videopassword', None)
222         if password is None:
223             raise ExtractorError('This video is protected by a password, use the --video-password option')
224         data = compat_urllib_parse.urlencode({'password': password})
225         pass_url = url + '/check-password'
226         password_request = compat_urllib_request.Request(pass_url, data)
227         password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
228         return self._download_json(
229             password_request, video_id,
230             'Verifying the password',
231             'Wrong password')
232
233     def _real_initialize(self):
234         self._login()
235
236     def _real_extract(self, url):
237         url, data = unsmuggle_url(url)
238         headers = std_headers
239         if data is not None:
240             headers = headers.copy()
241             headers.update(data)
242         if 'Referer' not in headers:
243             headers['Referer'] = url
244
245         # Extract ID from URL
246         mobj = re.match(self._VALID_URL, url)
247         video_id = mobj.group('id')
248         orig_url = url
249         if mobj.group('pro') or mobj.group('player'):
250             url = 'https://player.vimeo.com/video/' + video_id
251         else:
252             url = 'https://vimeo.com/' + video_id
253
254         # Retrieve video webpage to extract further information
255         request = compat_urllib_request.Request(url, None, headers)
256         try:
257             webpage = self._download_webpage(request, video_id)
258         except ExtractorError as ee:
259             if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 403:
260                 errmsg = ee.cause.read()
261                 if b'Because of its privacy settings, this video cannot be played here' in errmsg:
262                     raise ExtractorError(
263                         'Cannot download embed-only video without embedding '
264                         'URL. Please call youtube-dl with the URL of the page '
265                         'that embeds this video.',
266                         expected=True)
267             raise
268
269         # Now we begin extracting as much information as we can from what we
270         # retrieved. First we extract the information common to all extractors,
271         # and latter we extract those that are Vimeo specific.
272         self.report_extraction(video_id)
273
274         vimeo_config = self._search_regex(
275             r'vimeo\.config\s*=\s*({.+?});', webpage,
276             'vimeo config', default=None)
277         if vimeo_config:
278             seed_status = self._parse_json(vimeo_config, video_id).get('seed_status', {})
279             if seed_status.get('state') == 'failed':
280                 raise ExtractorError(
281                     '%s returned error: %s' % (self.IE_NAME, seed_status['title']),
282                     expected=True)
283
284         # Extract the config JSON
285         try:
286             try:
287                 config_url = self._html_search_regex(
288                     r' data-config-url="(.+?)"', webpage, 'config URL')
289                 config_json = self._download_webpage(config_url, video_id)
290                 config = json.loads(config_json)
291             except RegexNotFoundError:
292                 # For pro videos or player.vimeo.com urls
293                 # We try to find out to which variable is assigned the config dic
294                 m_variable_name = re.search('(\w)\.video\.id', webpage)
295                 if m_variable_name is not None:
296                     config_re = r'%s=({[^}].+?});' % re.escape(m_variable_name.group(1))
297                 else:
298                     config_re = [r' = {config:({.+?}),assets:', r'(?:[abc])=({.+?});']
299                 config = self._search_regex(config_re, webpage, 'info section',
300                                             flags=re.DOTALL)
301                 config = json.loads(config)
302         except Exception as e:
303             if re.search('The creator of this video has not given you permission to embed it on this domain.', webpage):
304                 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
305
306             if re.search(r'<form[^>]+?id="pw_form"', webpage) is not None:
307                 if data and '_video_password_verified' in data:
308                     raise ExtractorError('video password verification failed!')
309                 self._verify_video_password(url, video_id, webpage)
310                 return self._real_extract(
311                     smuggle_url(url, {'_video_password_verified': 'verified'}))
312             else:
313                 raise ExtractorError('Unable to extract info section',
314                                      cause=e)
315         else:
316             if config.get('view') == 4:
317                 config = self._verify_player_video_password(url, video_id)
318
319         # Extract title
320         video_title = config["video"]["title"]
321
322         # Extract uploader and uploader_id
323         video_uploader = config["video"]["owner"]["name"]
324         video_uploader_id = config["video"]["owner"]["url"].split('/')[-1] if config["video"]["owner"]["url"] else None
325
326         # Extract video thumbnail
327         video_thumbnail = config["video"].get("thumbnail")
328         if video_thumbnail is None:
329             video_thumbs = config["video"].get("thumbs")
330             if video_thumbs and isinstance(video_thumbs, dict):
331                 _, video_thumbnail = sorted((int(width if width.isdigit() else 0), t_url) for (width, t_url) in video_thumbs.items())[-1]
332
333         # Extract video description
334
335         video_description = self._html_search_regex(
336             r'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
337             webpage, 'description', default=None)
338         if not video_description:
339             video_description = self._html_search_meta(
340                 'description', webpage, default=None)
341         if not video_description and mobj.group('pro'):
342             orig_webpage = self._download_webpage(
343                 orig_url, video_id,
344                 note='Downloading webpage for description',
345                 fatal=False)
346             if orig_webpage:
347                 video_description = self._html_search_meta(
348                     'description', orig_webpage, default=None)
349         if not video_description and not mobj.group('player'):
350             self._downloader.report_warning('Cannot find video description')
351
352         # Extract video duration
353         video_duration = int_or_none(config["video"].get("duration"))
354
355         # Extract upload date
356         video_upload_date = None
357         mobj = re.search(r'<time[^>]+datetime="([^"]+)"', webpage)
358         if mobj is not None:
359             video_upload_date = unified_strdate(mobj.group(1))
360
361         try:
362             view_count = int(self._search_regex(r'UserPlays:(\d+)', webpage, 'view count'))
363             like_count = int(self._search_regex(r'UserLikes:(\d+)', webpage, 'like count'))
364             comment_count = int(self._search_regex(r'UserComments:(\d+)', webpage, 'comment count'))
365         except RegexNotFoundError:
366             # This info is only available in vimeo.com/{id} urls
367             view_count = None
368             like_count = None
369             comment_count = None
370
371         # Vimeo specific: extract request signature and timestamp
372         sig = config['request']['signature']
373         timestamp = config['request']['timestamp']
374
375         # Vimeo specific: extract video codec and quality information
376         # First consider quality, then codecs, then take everything
377         codecs = [('vp6', 'flv'), ('vp8', 'flv'), ('h264', 'mp4')]
378         files = {'hd': [], 'sd': [], 'other': []}
379         config_files = config["video"].get("files") or config["request"].get("files")
380         for codec_name, codec_extension in codecs:
381             for quality in config_files.get(codec_name, []):
382                 format_id = '-'.join((codec_name, quality)).lower()
383                 key = quality if quality in files else 'other'
384                 video_url = None
385                 if isinstance(config_files[codec_name], dict):
386                     file_info = config_files[codec_name][quality]
387                     video_url = file_info.get('url')
388                 else:
389                     file_info = {}
390                 if video_url is None:
391                     video_url = "http://player.vimeo.com/play_redirect?clip_id=%s&sig=%s&time=%s&quality=%s&codecs=%s&type=moogaloop_local&embed_location=" \
392                         % (video_id, sig, timestamp, quality, codec_name.upper())
393
394                 files[key].append({
395                     'ext': codec_extension,
396                     'url': video_url,
397                     'format_id': format_id,
398                     'width': file_info.get('width'),
399                     'height': file_info.get('height'),
400                 })
401         formats = []
402         for key in ('other', 'sd', 'hd'):
403             formats += files[key]
404         if len(formats) == 0:
405             raise ExtractorError('No known codec found')
406
407         subtitles = {}
408         text_tracks = config['request'].get('text_tracks')
409         if text_tracks:
410             for tt in text_tracks:
411                 subtitles[tt['lang']] = [{
412                     'ext': 'vtt',
413                     'url': 'https://vimeo.com' + tt['url'],
414                 }]
415
416         return {
417             'id': video_id,
418             'uploader': video_uploader,
419             'uploader_id': video_uploader_id,
420             'upload_date': video_upload_date,
421             'title': video_title,
422             'thumbnail': video_thumbnail,
423             'description': video_description,
424             'duration': video_duration,
425             'formats': formats,
426             'webpage_url': url,
427             'view_count': view_count,
428             'like_count': like_count,
429             'comment_count': comment_count,
430             'subtitles': subtitles,
431         }
432
433
434 class VimeoChannelIE(VimeoBaseInfoExtractor):
435     IE_NAME = 'vimeo:channel'
436     _VALID_URL = r'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
437     _MORE_PAGES_INDICATOR = r'<a.+?rel="next"'
438     _TITLE = None
439     _TITLE_RE = r'<link rel="alternate"[^>]+?title="(.*?)"'
440     _TESTS = [{
441         'url': 'https://vimeo.com/channels/tributes',
442         'info_dict': {
443             'id': 'tributes',
444             'title': 'Vimeo Tributes',
445         },
446         'playlist_mincount': 25,
447     }]
448
449     def _page_url(self, base_url, pagenum):
450         return '%s/videos/page:%d/' % (base_url, pagenum)
451
452     def _extract_list_title(self, webpage):
453         return self._TITLE or self._html_search_regex(self._TITLE_RE, webpage, 'list title')
454
455     def _login_list_password(self, page_url, list_id, webpage):
456         login_form = self._search_regex(
457             r'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
458             webpage, 'login form', default=None)
459         if not login_form:
460             return webpage
461
462         password = self._downloader.params.get('videopassword', None)
463         if password is None:
464             raise ExtractorError('This album is protected by a password, use the --video-password option', expected=True)
465         fields = self._hidden_inputs(login_form)
466         token = self._extract_xsrft(webpage)
467         fields['token'] = token
468         fields['password'] = password
469         post = urlencode_postdata(fields)
470         password_path = self._search_regex(
471             r'action="([^"]+)"', login_form, 'password URL')
472         password_url = compat_urlparse.urljoin(page_url, password_path)
473         password_request = compat_urllib_request.Request(password_url, post)
474         password_request.add_header('Content-type', 'application/x-www-form-urlencoded')
475         self._set_cookie('vimeo.com', 'xsrft', token)
476
477         return self._download_webpage(
478             password_request, list_id,
479             'Verifying the password', 'Wrong password')
480
481     def _extract_videos(self, list_id, base_url):
482         video_ids = []
483         for pagenum in itertools.count(1):
484             page_url = self._page_url(base_url, pagenum)
485             webpage = self._download_webpage(
486                 page_url, list_id,
487                 'Downloading page %s' % pagenum)
488
489             if pagenum == 1:
490                 webpage = self._login_list_password(page_url, list_id, webpage)
491
492             video_ids.extend(re.findall(r'id="clip_(\d+?)"', webpage))
493             if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
494                 break
495
496         entries = [self.url_result('https://vimeo.com/%s' % video_id, 'Vimeo')
497                    for video_id in video_ids]
498         return {'_type': 'playlist',
499                 'id': list_id,
500                 'title': self._extract_list_title(webpage),
501                 'entries': entries,
502                 }
503
504     def _real_extract(self, url):
505         mobj = re.match(self._VALID_URL, url)
506         channel_id = mobj.group('id')
507         return self._extract_videos(channel_id, 'https://vimeo.com/channels/%s' % channel_id)
508
509
510 class VimeoUserIE(VimeoChannelIE):
511     IE_NAME = 'vimeo:user'
512     _VALID_URL = r'https://vimeo\.com/(?!(?:[0-9]+|watchlater)(?:$|[?#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
513     _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>'
514     _TESTS = [{
515         'url': 'https://vimeo.com/nkistudio/videos',
516         'info_dict': {
517             'title': 'Nki',
518             'id': 'nkistudio',
519         },
520         'playlist_mincount': 66,
521     }]
522
523     def _real_extract(self, url):
524         mobj = re.match(self._VALID_URL, url)
525         name = mobj.group('name')
526         return self._extract_videos(name, 'https://vimeo.com/%s' % name)
527
528
529 class VimeoAlbumIE(VimeoChannelIE):
530     IE_NAME = 'vimeo:album'
531     _VALID_URL = r'https://vimeo\.com/album/(?P<id>\d+)'
532     _TITLE_RE = r'<header id="page_header">\n\s*<h1>(.*?)</h1>'
533     _TESTS = [{
534         'url': 'https://vimeo.com/album/2632481',
535         'info_dict': {
536             'id': '2632481',
537             'title': 'Staff Favorites: November 2013',
538         },
539         'playlist_mincount': 13,
540     }, {
541         'note': 'Password-protected album',
542         'url': 'https://vimeo.com/album/3253534',
543         'info_dict': {
544             'title': 'test',
545             'id': '3253534',
546         },
547         'playlist_count': 1,
548         'params': {
549             'videopassword': 'youtube-dl',
550         }
551     }]
552
553     def _page_url(self, base_url, pagenum):
554         return '%s/page:%d/' % (base_url, pagenum)
555
556     def _real_extract(self, url):
557         album_id = self._match_id(url)
558         return self._extract_videos(album_id, 'https://vimeo.com/album/%s' % album_id)
559
560
561 class VimeoGroupsIE(VimeoAlbumIE):
562     IE_NAME = 'vimeo:group'
563     _VALID_URL = r'https://vimeo\.com/groups/(?P<name>[^/]+)'
564     _TESTS = [{
565         'url': 'https://vimeo.com/groups/rolexawards',
566         'info_dict': {
567             'id': 'rolexawards',
568             'title': 'Rolex Awards for Enterprise',
569         },
570         'playlist_mincount': 73,
571     }]
572
573     def _extract_list_title(self, webpage):
574         return self._og_search_title(webpage)
575
576     def _real_extract(self, url):
577         mobj = re.match(self._VALID_URL, url)
578         name = mobj.group('name')
579         return self._extract_videos(name, 'https://vimeo.com/groups/%s' % name)
580
581
582 class VimeoReviewIE(InfoExtractor):
583     IE_NAME = 'vimeo:review'
584     IE_DESC = 'Review pages on vimeo'
585     _VALID_URL = r'https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)'
586     _TESTS = [{
587         'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
588         'md5': 'c507a72f780cacc12b2248bb4006d253',
589         'info_dict': {
590             'id': '75524534',
591             'ext': 'mp4',
592             'title': "DICK HARDWICK 'Comedian'",
593             'uploader': 'Richard Hardwick',
594         }
595     }, {
596         'note': 'video player needs Referer',
597         'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
598         'md5': '6295fdab8f4bf6a002d058b2c6dce276',
599         'info_dict': {
600             'id': '91613211',
601             'ext': 'mp4',
602             'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
603             'uploader': 'DevWeek Events',
604             'duration': 2773,
605             'thumbnail': 're:^https?://.*\.jpg$',
606         }
607     }]
608
609     def _real_extract(self, url):
610         mobj = re.match(self._VALID_URL, url)
611         video_id = mobj.group('id')
612         player_url = 'https://player.vimeo.com/player/' + video_id
613         return self.url_result(player_url, 'Vimeo', video_id)
614
615
616 class VimeoWatchLaterIE(VimeoChannelIE):
617     IE_NAME = 'vimeo:watchlater'
618     IE_DESC = 'Vimeo watch later list, "vimeowatchlater" keyword (requires authentication)'
619     _VALID_URL = r'https://vimeo\.com/(?:home/)?watchlater|:vimeowatchlater'
620     _TITLE = 'Watch Later'
621     _LOGIN_REQUIRED = True
622     _TESTS = [{
623         'url': 'https://vimeo.com/watchlater',
624         'only_matching': True,
625     }]
626
627     def _real_initialize(self):
628         self._login()
629
630     def _page_url(self, base_url, pagenum):
631         url = '%s/page:%d/' % (base_url, pagenum)
632         request = compat_urllib_request.Request(url)
633         # Set the header to get a partial html page with the ids,
634         # the normal page doesn't contain them.
635         request.add_header('X-Requested-With', 'XMLHttpRequest')
636         return request
637
638     def _real_extract(self, url):
639         return self._extract_videos('watchlater', 'https://vimeo.com/watchlater')
640
641
642 class VimeoLikesIE(InfoExtractor):
643     _VALID_URL = r'https://(?:www\.)?vimeo\.com/user(?P<id>[0-9]+)/likes/?(?:$|[?#]|sort:)'
644     IE_NAME = 'vimeo:likes'
645     IE_DESC = 'Vimeo user likes'
646     _TEST = {
647         'url': 'https://vimeo.com/user755559/likes/',
648         'playlist_mincount': 293,
649         "info_dict": {
650             'id': 'user755559_likes',
651             "description": "See all the videos urza likes",
652             "title": 'Videos urza likes',
653         },
654     }
655
656     def _real_extract(self, url):
657         user_id = self._match_id(url)
658         webpage = self._download_webpage(url, user_id)
659         page_count = self._int(
660             self._search_regex(
661                 r'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
662                     .*?</a></li>\s*<li\s+class="pagination_next">
663                 ''', webpage, 'page count'),
664             'page count', fatal=True)
665         PAGE_SIZE = 12
666         title = self._html_search_regex(
667             r'(?s)<h1>(.+?)</h1>', webpage, 'title', fatal=False)
668         description = self._html_search_meta('description', webpage)
669
670         def _get_page(idx):
671             page_url = 'https://vimeo.com/user%s/likes/page:%d/sort:date' % (
672                 user_id, idx + 1)
673             webpage = self._download_webpage(
674                 page_url, user_id,
675                 note='Downloading page %d/%d' % (idx + 1, page_count))
676             video_list = self._search_regex(
677                 r'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
678                 webpage, 'video content')
679             paths = re.findall(
680                 r'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list)
681             for path in paths:
682                 yield {
683                     '_type': 'url',
684                     'url': compat_urlparse.urljoin(page_url, path),
685                 }
686
687         pl = InAdvancePagedList(_get_page, page_count, PAGE_SIZE)
688
689         return {
690             '_type': 'playlist',
691             'id': 'user%s_likes' % user_id,
692             'title': title,
693             'description': description,
694             'entries': pl,
695         }