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