]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/pornhub.py
[tumblr] Fix 403 errors and handle vimeo embeds (#2542)
[yt-dlp.git] / yt_dlp / extractor / pornhub.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import functools
5 import itertools
6 import math
7 import operator
8 import re
9
10 from .common import InfoExtractor
11 from ..compat import (
12 compat_HTTPError,
13 compat_str,
14 compat_urllib_request,
15 )
16 from .openload import PhantomJSwrapper
17 from ..utils import (
18 clean_html,
19 determine_ext,
20 ExtractorError,
21 format_field,
22 int_or_none,
23 merge_dicts,
24 NO_DEFAULT,
25 orderedSet,
26 remove_quotes,
27 str_to_int,
28 update_url_query,
29 urlencode_postdata,
30 url_or_none,
31 )
32
33
34 class PornHubBaseIE(InfoExtractor):
35 _NETRC_MACHINE = 'pornhub'
36 _PORNHUB_HOST_RE = r'(?:(?P<host>pornhub(?:premium)?\.(?:com|net|org))|pornhubvybmsymdol4iibwgwtkpwmeyd6luq2gxajgjzfjvotyt5zhyd\.onion)'
37
38 def _download_webpage_handle(self, *args, **kwargs):
39 def dl(*args, **kwargs):
40 return super(PornHubBaseIE, self)._download_webpage_handle(*args, **kwargs)
41
42 ret = dl(*args, **kwargs)
43
44 if not ret:
45 return ret
46
47 webpage, urlh = ret
48
49 if any(re.search(p, webpage) for p in (
50 r'<body\b[^>]+\bonload=["\']go\(\)',
51 r'document\.cookie\s*=\s*["\']RNKEY=',
52 r'document\.location\.reload\(true\)')):
53 url_or_request = args[0]
54 url = (url_or_request.get_full_url()
55 if isinstance(url_or_request, compat_urllib_request.Request)
56 else url_or_request)
57 phantom = PhantomJSwrapper(self, required_version='2.0')
58 phantom.get(url, html=webpage)
59 webpage, urlh = dl(*args, **kwargs)
60
61 return webpage, urlh
62
63 def _real_initialize(self):
64 self._logged_in = False
65
66 def _login(self, host):
67 if self._logged_in:
68 return
69
70 site = host.split('.')[0]
71
72 # Both sites pornhub and pornhubpremium have separate accounts
73 # so there should be an option to provide credentials for both.
74 # At the same time some videos are available under the same video id
75 # on both sites so that we have to identify them as the same video.
76 # For that purpose we have to keep both in the same extractor
77 # but under different netrc machines.
78 username, password = self._get_login_info(netrc_machine=site)
79 if username is None:
80 return
81
82 login_url = 'https://www.%s/%slogin' % (host, 'premium/' if 'premium' in host else '')
83 login_page = self._download_webpage(
84 login_url, None, 'Downloading %s login page' % site)
85
86 def is_logged(webpage):
87 return any(re.search(p, webpage) for p in (
88 r'class=["\']signOut',
89 r'>Sign\s+[Oo]ut\s*<'))
90
91 if is_logged(login_page):
92 self._logged_in = True
93 return
94
95 login_form = self._hidden_inputs(login_page)
96
97 login_form.update({
98 'username': username,
99 'password': password,
100 })
101
102 response = self._download_json(
103 'https://www.%s/front/authenticate' % host, None,
104 'Logging in to %s' % site,
105 data=urlencode_postdata(login_form),
106 headers={
107 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
108 'Referer': login_url,
109 'X-Requested-With': 'XMLHttpRequest',
110 })
111
112 if response.get('success') == '1':
113 self._logged_in = True
114 return
115
116 message = response.get('message')
117 if message is not None:
118 raise ExtractorError(
119 'Unable to login: %s' % message, expected=True)
120
121 raise ExtractorError('Unable to log in')
122
123
124 class PornHubIE(PornHubBaseIE):
125 IE_DESC = 'PornHub and Thumbzilla'
126 _VALID_URL = r'''(?x)
127 https?://
128 (?:
129 (?:[^/]+\.)?
130 %s
131 /(?:(?:view_video\.php|video/show)\?viewkey=|embed/)|
132 (?:www\.)?thumbzilla\.com/video/
133 )
134 (?P<id>[\da-z]+)
135 ''' % PornHubBaseIE._PORNHUB_HOST_RE
136 _TESTS = [{
137 'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015',
138 'md5': 'a6391306d050e4547f62b3f485dd9ba9',
139 'info_dict': {
140 'id': '648719015',
141 'ext': 'mp4',
142 'title': 'Seductive Indian beauty strips down and fingers her pink pussy',
143 'uploader': 'Babes',
144 'upload_date': '20130628',
145 'timestamp': 1372447216,
146 'duration': 361,
147 'view_count': int,
148 'like_count': int,
149 'dislike_count': int,
150 'comment_count': int,
151 'age_limit': 18,
152 'tags': list,
153 'categories': list,
154 'cast': list,
155 },
156 }, {
157 # non-ASCII title
158 'url': 'http://www.pornhub.com/view_video.php?viewkey=1331683002',
159 'info_dict': {
160 'id': '1331683002',
161 'ext': 'mp4',
162 'title': '重庆婷婷女王足交',
163 'upload_date': '20150213',
164 'timestamp': 1423804862,
165 'duration': 1753,
166 'view_count': int,
167 'like_count': int,
168 'dislike_count': int,
169 'comment_count': int,
170 'age_limit': 18,
171 'tags': list,
172 'categories': list,
173 },
174 'params': {
175 'skip_download': True,
176 },
177 'skip': 'Video has been flagged for verification in accordance with our trust and safety policy',
178 }, {
179 # subtitles
180 'url': 'https://www.pornhub.com/view_video.php?viewkey=ph5af5fef7c2aa7',
181 'info_dict': {
182 'id': 'ph5af5fef7c2aa7',
183 'ext': 'mp4',
184 'title': 'BFFS - Cute Teen Girls Share Cock On the Floor',
185 'uploader': 'BFFs',
186 'duration': 622,
187 'view_count': int,
188 'like_count': int,
189 'dislike_count': int,
190 'comment_count': int,
191 'age_limit': 18,
192 'tags': list,
193 'categories': list,
194 'subtitles': {
195 'en': [{
196 "ext": 'srt'
197 }]
198 },
199 },
200 'params': {
201 'skip_download': True,
202 },
203 'skip': 'This video has been disabled',
204 }, {
205 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph557bbb6676d2d',
206 'only_matching': True,
207 }, {
208 # removed at the request of cam4.com
209 'url': 'http://fr.pornhub.com/view_video.php?viewkey=ph55ca2f9760862',
210 'only_matching': True,
211 }, {
212 # removed at the request of the copyright owner
213 'url': 'http://www.pornhub.com/view_video.php?viewkey=788152859',
214 'only_matching': True,
215 }, {
216 # removed by uploader
217 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph572716d15a111',
218 'only_matching': True,
219 }, {
220 # private video
221 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph56fd731fce6b7',
222 'only_matching': True,
223 }, {
224 'url': 'https://www.thumbzilla.com/video/ph56c6114abd99a/horny-girlfriend-sex',
225 'only_matching': True,
226 }, {
227 'url': 'http://www.pornhub.com/video/show?viewkey=648719015',
228 'only_matching': True,
229 }, {
230 'url': 'https://www.pornhub.net/view_video.php?viewkey=203640933',
231 'only_matching': True,
232 }, {
233 'url': 'https://www.pornhub.org/view_video.php?viewkey=203640933',
234 'only_matching': True,
235 }, {
236 'url': 'https://www.pornhubpremium.com/view_video.php?viewkey=ph5e4acdae54a82',
237 'only_matching': True,
238 }, {
239 # Some videos are available with the same id on both premium
240 # and non-premium sites (e.g. this and the following test)
241 'url': 'https://www.pornhub.com/view_video.php?viewkey=ph5f75b0f4b18e3',
242 'only_matching': True,
243 }, {
244 'url': 'https://www.pornhubpremium.com/view_video.php?viewkey=ph5f75b0f4b18e3',
245 'only_matching': True,
246 }, {
247 # geo restricted
248 'url': 'https://www.pornhub.com/view_video.php?viewkey=ph5a9813bfa7156',
249 'only_matching': True,
250 }, {
251 'url': 'http://pornhubvybmsymdol4iibwgwtkpwmeyd6luq2gxajgjzfjvotyt5zhyd.onion/view_video.php?viewkey=ph5a9813bfa7156',
252 'only_matching': True,
253 }]
254
255 @staticmethod
256 def _extract_urls(webpage):
257 return re.findall(
258 r'<iframe[^>]+?src=["\'](?P<url>(?:https?:)?//(?:www\.)?pornhub(?:premium)?\.(?:com|net|org)/embed/[\da-z]+)',
259 webpage)
260
261 def _extract_count(self, pattern, webpage, name):
262 return str_to_int(self._search_regex(pattern, webpage, '%s count' % name, default=None))
263
264 def _real_extract(self, url):
265 mobj = self._match_valid_url(url)
266 host = mobj.group('host') or 'pornhub.com'
267 video_id = mobj.group('id')
268
269 self._login(host)
270
271 self._set_cookie(host, 'age_verified', '1')
272
273 def dl_webpage(platform):
274 self._set_cookie(host, 'platform', platform)
275 return self._download_webpage(
276 'https://www.%s/view_video.php?viewkey=%s' % (host, video_id),
277 video_id, 'Downloading %s webpage' % platform)
278
279 webpage = dl_webpage('pc')
280
281 error_msg = self._html_search_regex(
282 (r'(?s)<div[^>]+class=(["\'])(?:(?!\1).)*\b(?:removed|userMessageSection)\b(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</div>',
283 r'(?s)<section[^>]+class=["\']noVideo["\'][^>]*>(?P<error>.+?)</section>'),
284 webpage, 'error message', default=None, group='error')
285 if error_msg:
286 error_msg = re.sub(r'\s+', ' ', error_msg)
287 raise ExtractorError(
288 'PornHub said: %s' % error_msg,
289 expected=True, video_id=video_id)
290
291 if any(re.search(p, webpage) for p in (
292 r'class=["\']geoBlocked["\']',
293 r'>\s*This content is unavailable in your country')):
294 self.raise_geo_restricted()
295
296 # video_title from flashvars contains whitespace instead of non-ASCII (see
297 # http://www.pornhub.com/view_video.php?viewkey=1331683002), not relying
298 # on that anymore.
299 title = self._html_search_meta(
300 'twitter:title', webpage, default=None) or self._html_search_regex(
301 (r'(?s)<h1[^>]+class=["\']title["\'][^>]*>(?P<title>.+?)</h1>',
302 r'<div[^>]+data-video-title=(["\'])(?P<title>(?:(?!\1).)+)\1',
303 r'shareTitle["\']\s*[=:]\s*(["\'])(?P<title>(?:(?!\1).)+)\1'),
304 webpage, 'title', group='title')
305
306 video_urls = []
307 video_urls_set = set()
308 subtitles = {}
309
310 flashvars = self._parse_json(
311 self._search_regex(
312 r'var\s+flashvars_\d+\s*=\s*({.+?});', webpage, 'flashvars', default='{}'),
313 video_id)
314 if flashvars:
315 subtitle_url = url_or_none(flashvars.get('closedCaptionsFile'))
316 if subtitle_url:
317 subtitles.setdefault('en', []).append({
318 'url': subtitle_url,
319 'ext': 'srt',
320 })
321 thumbnail = flashvars.get('image_url')
322 duration = int_or_none(flashvars.get('video_duration'))
323 media_definitions = flashvars.get('mediaDefinitions')
324 if isinstance(media_definitions, list):
325 for definition in media_definitions:
326 if not isinstance(definition, dict):
327 continue
328 video_url = definition.get('videoUrl')
329 if not video_url or not isinstance(video_url, compat_str):
330 continue
331 if video_url in video_urls_set:
332 continue
333 video_urls_set.add(video_url)
334 video_urls.append(
335 (video_url, int_or_none(definition.get('quality'))))
336 else:
337 thumbnail, duration = [None] * 2
338
339 def extract_js_vars(webpage, pattern, default=NO_DEFAULT):
340 assignments = self._search_regex(
341 pattern, webpage, 'encoded url', default=default)
342 if not assignments:
343 return {}
344
345 assignments = assignments.split(';')
346
347 js_vars = {}
348
349 def parse_js_value(inp):
350 inp = re.sub(r'/\*(?:(?!\*/).)*?\*/', '', inp)
351 if '+' in inp:
352 inps = inp.split('+')
353 return functools.reduce(
354 operator.concat, map(parse_js_value, inps))
355 inp = inp.strip()
356 if inp in js_vars:
357 return js_vars[inp]
358 return remove_quotes(inp)
359
360 for assn in assignments:
361 assn = assn.strip()
362 if not assn:
363 continue
364 assn = re.sub(r'var\s+', '', assn)
365 vname, value = assn.split('=', 1)
366 js_vars[vname] = parse_js_value(value)
367 return js_vars
368
369 def add_video_url(video_url):
370 v_url = url_or_none(video_url)
371 if not v_url:
372 return
373 if v_url in video_urls_set:
374 return
375 video_urls.append((v_url, None))
376 video_urls_set.add(v_url)
377
378 def parse_quality_items(quality_items):
379 q_items = self._parse_json(quality_items, video_id, fatal=False)
380 if not isinstance(q_items, list):
381 return
382 for item in q_items:
383 if isinstance(item, dict):
384 add_video_url(item.get('url'))
385
386 if not video_urls:
387 FORMAT_PREFIXES = ('media', 'quality', 'qualityItems')
388 js_vars = extract_js_vars(
389 webpage, r'(var\s+(?:%s)_.+)' % '|'.join(FORMAT_PREFIXES),
390 default=None)
391 if js_vars:
392 for key, format_url in js_vars.items():
393 if key.startswith(FORMAT_PREFIXES[-1]):
394 parse_quality_items(format_url)
395 elif any(key.startswith(p) for p in FORMAT_PREFIXES[:2]):
396 add_video_url(format_url)
397 if not video_urls and re.search(
398 r'<[^>]+\bid=["\']lockedPlayer', webpage):
399 raise ExtractorError(
400 'Video %s is locked' % video_id, expected=True)
401
402 if not video_urls:
403 js_vars = extract_js_vars(
404 dl_webpage('tv'), r'(var.+?mediastring.+?)</script>')
405 add_video_url(js_vars['mediastring'])
406
407 for mobj in re.finditer(
408 r'<a[^>]+\bclass=["\']downloadBtn\b[^>]+\bhref=(["\'])(?P<url>(?:(?!\1).)+)\1',
409 webpage):
410 video_url = mobj.group('url')
411 if video_url not in video_urls_set:
412 video_urls.append((video_url, None))
413 video_urls_set.add(video_url)
414
415 upload_date = None
416 formats = []
417
418 def add_format(format_url, height=None):
419 ext = determine_ext(format_url)
420 if ext == 'mpd':
421 formats.extend(self._extract_mpd_formats(
422 format_url, video_id, mpd_id='dash', fatal=False))
423 return
424 if ext == 'm3u8':
425 formats.extend(self._extract_m3u8_formats(
426 format_url, video_id, 'mp4', entry_protocol='m3u8_native',
427 m3u8_id='hls', fatal=False))
428 return
429 if not height:
430 height = int_or_none(self._search_regex(
431 r'(?P<height>\d+)[pP]?_\d+[kK]', format_url, 'height',
432 default=None))
433 formats.append({
434 'url': format_url,
435 'format_id': format_field(height, template='%dp'),
436 'height': height,
437 })
438
439 for video_url, height in video_urls:
440 if not upload_date:
441 upload_date = self._search_regex(
442 r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
443 if upload_date:
444 upload_date = upload_date.replace('/', '')
445 if '/video/get_media' in video_url:
446 medias = self._download_json(video_url, video_id, fatal=False)
447 if isinstance(medias, list):
448 for media in medias:
449 if not isinstance(media, dict):
450 continue
451 video_url = url_or_none(media.get('videoUrl'))
452 if not video_url:
453 continue
454 height = int_or_none(media.get('quality'))
455 add_format(video_url, height)
456 continue
457 add_format(video_url)
458
459 # field_preference is unnecessary here, but kept for code-similarity with youtube-dl
460 self._sort_formats(
461 formats, field_preference=('height', 'width', 'fps', 'format_id'))
462
463 video_uploader = self._html_search_regex(
464 r'(?s)From:&nbsp;.+?<(?:a\b[^>]+\bhref=["\']/(?:(?:user|channel)s|model|pornstar)/|span\b[^>]+\bclass=["\']username)[^>]+>(.+?)<',
465 webpage, 'uploader', default=None)
466
467 def extract_vote_count(kind, name):
468 return self._extract_count(
469 (r'<span[^>]+\bclass="votes%s"[^>]*>([\d,\.]+)</span>' % kind,
470 r'<span[^>]+\bclass=["\']votes%s["\'][^>]*\bdata-rating=["\'](\d+)' % kind),
471 webpage, name)
472
473 view_count = self._extract_count(
474 r'<span class="count">([\d,\.]+)</span> [Vv]iews', webpage, 'view')
475 like_count = extract_vote_count('Up', 'like')
476 dislike_count = extract_vote_count('Down', 'dislike')
477 comment_count = self._extract_count(
478 r'All Comments\s*<span>\(([\d,.]+)\)', webpage, 'comment')
479
480 def extract_list(meta_key):
481 div = self._search_regex(
482 r'(?s)<div[^>]+\bclass=["\'].*?\b%sWrapper[^>]*>(.+?)</div>'
483 % meta_key, webpage, meta_key, default=None)
484 if div:
485 return [clean_html(x).strip() for x in re.findall(r'(?s)<a[^>]+\bhref=[^>]+>.+?</a>', div)]
486
487 info = self._search_json_ld(webpage, video_id, default={})
488 # description provided in JSON-LD is irrelevant
489 info['description'] = None
490
491 return merge_dicts({
492 'id': video_id,
493 'uploader': video_uploader,
494 'upload_date': upload_date,
495 'title': title,
496 'thumbnail': thumbnail,
497 'duration': duration,
498 'view_count': view_count,
499 'like_count': like_count,
500 'dislike_count': dislike_count,
501 'comment_count': comment_count,
502 'formats': formats,
503 'age_limit': 18,
504 'tags': extract_list('tags'),
505 'categories': extract_list('categories'),
506 'cast': extract_list('pornstars'),
507 'subtitles': subtitles,
508 }, info)
509
510
511 class PornHubPlaylistBaseIE(PornHubBaseIE):
512 def _extract_page(self, url):
513 return int_or_none(self._search_regex(
514 r'\bpage=(\d+)', url, 'page', default=None))
515
516 def _extract_entries(self, webpage, host):
517 # Only process container div with main playlist content skipping
518 # drop-down menu that uses similar pattern for videos (see
519 # https://github.com/ytdl-org/youtube-dl/issues/11594).
520 container = self._search_regex(
521 r'(?s)(<div[^>]+class=["\']container.+)', webpage,
522 'container', default=webpage)
523
524 return [
525 self.url_result(
526 'http://www.%s/%s' % (host, video_url),
527 PornHubIE.ie_key(), video_title=title)
528 for video_url, title in orderedSet(re.findall(
529 r'href="/?(view_video\.php\?.*\bviewkey=[\da-z]+[^"]*)"[^>]*\s+title="([^"]+)"',
530 container))
531 ]
532
533
534 class PornHubUserIE(PornHubPlaylistBaseIE):
535 _VALID_URL = r'(?P<url>https?://(?:[^/]+\.)?%s/(?:(?:user|channel)s|model|pornstar)/(?P<id>[^/?#&]+))(?:[?#&]|/(?!videos)|$)' % PornHubBaseIE._PORNHUB_HOST_RE
536 _TESTS = [{
537 'url': 'https://www.pornhub.com/model/zoe_ph',
538 'playlist_mincount': 118,
539 }, {
540 'url': 'https://www.pornhub.com/pornstar/liz-vicious',
541 'info_dict': {
542 'id': 'liz-vicious',
543 },
544 'playlist_mincount': 118,
545 }, {
546 'url': 'https://www.pornhub.com/users/russianveet69',
547 'only_matching': True,
548 }, {
549 'url': 'https://www.pornhub.com/channels/povd',
550 'only_matching': True,
551 }, {
552 'url': 'https://www.pornhub.com/model/zoe_ph?abc=1',
553 'only_matching': True,
554 }, {
555 # Unavailable via /videos page, but available with direct pagination
556 # on pornstar page (see [1]), requires premium
557 # 1. https://github.com/ytdl-org/youtube-dl/issues/27853
558 'url': 'https://www.pornhubpremium.com/pornstar/sienna-west',
559 'only_matching': True,
560 }, {
561 # Same as before, multi page
562 'url': 'https://www.pornhubpremium.com/pornstar/lily-labeau',
563 'only_matching': True,
564 }, {
565 'url': 'https://pornhubvybmsymdol4iibwgwtkpwmeyd6luq2gxajgjzfjvotyt5zhyd.onion/model/zoe_ph',
566 'only_matching': True,
567 }]
568
569 def _real_extract(self, url):
570 mobj = self._match_valid_url(url)
571 user_id = mobj.group('id')
572 videos_url = '%s/videos' % mobj.group('url')
573 page = self._extract_page(url)
574 if page:
575 videos_url = update_url_query(videos_url, {'page': page})
576 return self.url_result(
577 videos_url, ie=PornHubPagedVideoListIE.ie_key(), video_id=user_id)
578
579
580 class PornHubPagedPlaylistBaseIE(PornHubPlaylistBaseIE):
581 @staticmethod
582 def _has_more(webpage):
583 return re.search(
584 r'''(?x)
585 <li[^>]+\bclass=["\']page_next|
586 <link[^>]+\brel=["\']next|
587 <button[^>]+\bid=["\']moreDataBtn
588 ''', webpage) is not None
589
590 def _entries(self, url, host, item_id):
591 page = self._extract_page(url)
592
593 VIDEOS = '/videos'
594
595 def download_page(base_url, num, fallback=False):
596 note = 'Downloading page %d%s' % (num, ' (switch to fallback)' if fallback else '')
597 return self._download_webpage(
598 base_url, item_id, note, query={'page': num})
599
600 def is_404(e):
601 return isinstance(e.cause, compat_HTTPError) and e.cause.code == 404
602
603 base_url = url
604 has_page = page is not None
605 first_page = page if has_page else 1
606 for page_num in (first_page, ) if has_page else itertools.count(first_page):
607 try:
608 try:
609 webpage = download_page(base_url, page_num)
610 except ExtractorError as e:
611 # Some sources may not be available via /videos page,
612 # trying to fallback to main page pagination (see [1])
613 # 1. https://github.com/ytdl-org/youtube-dl/issues/27853
614 if is_404(e) and page_num == first_page and VIDEOS in base_url:
615 base_url = base_url.replace(VIDEOS, '')
616 webpage = download_page(base_url, page_num, fallback=True)
617 else:
618 raise
619 except ExtractorError as e:
620 if is_404(e) and page_num != first_page:
621 break
622 raise
623 page_entries = self._extract_entries(webpage, host)
624 if not page_entries:
625 break
626 for e in page_entries:
627 yield e
628 if not self._has_more(webpage):
629 break
630
631 def _real_extract(self, url):
632 mobj = self._match_valid_url(url)
633 host = mobj.group('host')
634 item_id = mobj.group('id')
635
636 self._login(host)
637
638 return self.playlist_result(self._entries(url, host, item_id), item_id)
639
640
641 class PornHubPagedVideoListIE(PornHubPagedPlaylistBaseIE):
642 _VALID_URL = r'https?://(?:[^/]+\.)?%s/(?!playlist/)(?P<id>(?:[^/]+/)*[^/?#&]+)' % PornHubBaseIE._PORNHUB_HOST_RE
643 _TESTS = [{
644 'url': 'https://www.pornhub.com/model/zoe_ph/videos',
645 'only_matching': True,
646 }, {
647 'url': 'http://www.pornhub.com/users/rushandlia/videos',
648 'only_matching': True,
649 }, {
650 'url': 'https://www.pornhub.com/pornstar/jenny-blighe/videos',
651 'info_dict': {
652 'id': 'pornstar/jenny-blighe/videos',
653 },
654 'playlist_mincount': 149,
655 }, {
656 'url': 'https://www.pornhub.com/pornstar/jenny-blighe/videos?page=3',
657 'info_dict': {
658 'id': 'pornstar/jenny-blighe/videos',
659 },
660 'playlist_mincount': 40,
661 }, {
662 # default sorting as Top Rated Videos
663 'url': 'https://www.pornhub.com/channels/povd/videos',
664 'info_dict': {
665 'id': 'channels/povd/videos',
666 },
667 'playlist_mincount': 293,
668 }, {
669 # Top Rated Videos
670 'url': 'https://www.pornhub.com/channels/povd/videos?o=ra',
671 'only_matching': True,
672 }, {
673 # Most Recent Videos
674 'url': 'https://www.pornhub.com/channels/povd/videos?o=da',
675 'only_matching': True,
676 }, {
677 # Most Viewed Videos
678 'url': 'https://www.pornhub.com/channels/povd/videos?o=vi',
679 'only_matching': True,
680 }, {
681 'url': 'http://www.pornhub.com/users/zoe_ph/videos/public',
682 'only_matching': True,
683 }, {
684 # Most Viewed Videos
685 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos?o=mv',
686 'only_matching': True,
687 }, {
688 # Top Rated Videos
689 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos?o=tr',
690 'only_matching': True,
691 }, {
692 # Longest Videos
693 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos?o=lg',
694 'only_matching': True,
695 }, {
696 # Newest Videos
697 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos?o=cm',
698 'only_matching': True,
699 }, {
700 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos/paid',
701 'only_matching': True,
702 }, {
703 'url': 'https://www.pornhub.com/pornstar/liz-vicious/videos/fanonly',
704 'only_matching': True,
705 }, {
706 'url': 'https://www.pornhub.com/video',
707 'only_matching': True,
708 }, {
709 'url': 'https://www.pornhub.com/video?page=3',
710 'only_matching': True,
711 }, {
712 'url': 'https://www.pornhub.com/video/search?search=123',
713 'only_matching': True,
714 }, {
715 'url': 'https://www.pornhub.com/categories/teen',
716 'only_matching': True,
717 }, {
718 'url': 'https://www.pornhub.com/categories/teen?page=3',
719 'only_matching': True,
720 }, {
721 'url': 'https://www.pornhub.com/hd',
722 'only_matching': True,
723 }, {
724 'url': 'https://www.pornhub.com/hd?page=3',
725 'only_matching': True,
726 }, {
727 'url': 'https://www.pornhub.com/described-video',
728 'only_matching': True,
729 }, {
730 'url': 'https://www.pornhub.com/described-video?page=2',
731 'only_matching': True,
732 }, {
733 'url': 'https://www.pornhub.com/video/incategories/60fps-1/hd-porn',
734 'only_matching': True,
735 }, {
736 'url': 'https://pornhubvybmsymdol4iibwgwtkpwmeyd6luq2gxajgjzfjvotyt5zhyd.onion/model/zoe_ph/videos',
737 'only_matching': True,
738 }]
739
740 @classmethod
741 def suitable(cls, url):
742 return (False
743 if PornHubIE.suitable(url) or PornHubUserIE.suitable(url) or PornHubUserVideosUploadIE.suitable(url)
744 else super(PornHubPagedVideoListIE, cls).suitable(url))
745
746
747 class PornHubUserVideosUploadIE(PornHubPagedPlaylistBaseIE):
748 _VALID_URL = r'(?P<url>https?://(?:[^/]+\.)?%s/(?:(?:user|channel)s|model|pornstar)/(?P<id>[^/]+)/videos/upload)' % PornHubBaseIE._PORNHUB_HOST_RE
749 _TESTS = [{
750 'url': 'https://www.pornhub.com/pornstar/jenny-blighe/videos/upload',
751 'info_dict': {
752 'id': 'jenny-blighe',
753 },
754 'playlist_mincount': 129,
755 }, {
756 'url': 'https://www.pornhub.com/model/zoe_ph/videos/upload',
757 'only_matching': True,
758 }, {
759 'url': 'http://pornhubvybmsymdol4iibwgwtkpwmeyd6luq2gxajgjzfjvotyt5zhyd.onion/pornstar/jenny-blighe/videos/upload',
760 'only_matching': True,
761 }]
762
763
764 class PornHubPlaylistIE(PornHubPlaylistBaseIE):
765 _VALID_URL = r'(?P<url>https?://(?:[^/]+\.)?%s/playlist/(?P<id>[^/?#&]+))' % PornHubBaseIE._PORNHUB_HOST_RE
766 _TESTS = [{
767 'url': 'https://www.pornhub.com/playlist/44121572',
768 'info_dict': {
769 'id': '44121572',
770 },
771 'playlist_count': 77,
772 }, {
773 'url': 'https://www.pornhub.com/playlist/4667351',
774 'only_matching': True,
775 }, {
776 'url': 'https://de.pornhub.com/playlist/4667351',
777 'only_matching': True,
778 }, {
779 'url': 'https://de.pornhub.com/playlist/4667351?page=2',
780 'only_matching': True,
781 }]
782
783 def _entries(self, url, host, item_id):
784 webpage = self._download_webpage(url, item_id, 'Downloading page 1')
785 playlist_id = self._search_regex(r'var\s+playlistId\s*=\s*"([^"]+)"', webpage, 'playlist_id')
786 video_count = int_or_none(
787 self._search_regex(r'var\s+itemsCount\s*=\s*([0-9]+)\s*\|\|', webpage, 'video_count'))
788 token = self._search_regex(r'var\s+token\s*=\s*"([^"]+)"', webpage, 'token')
789 page_count = math.ceil((video_count - 36) / 40.) + 1
790 page_entries = self._extract_entries(webpage, host)
791
792 def download_page(page_num):
793 note = 'Downloading page {}'.format(page_num)
794 page_url = 'https://www.{}/playlist/viewChunked'.format(host)
795 return self._download_webpage(page_url, item_id, note, query={
796 'id': playlist_id,
797 'page': page_num,
798 'token': token,
799 })
800
801 for page_num in range(1, page_count + 1):
802 if page_num > 1:
803 webpage = download_page(page_num)
804 page_entries = self._extract_entries(webpage, host)
805 if not page_entries:
806 break
807 for e in page_entries:
808 yield e
809
810 def _real_extract(self, url):
811 mobj = self._match_valid_url(url)
812 host = mobj.group('host')
813 item_id = mobj.group('id')
814
815 self._login(host)
816
817 return self.playlist_result(self._entries(mobj.group('url'), host, item_id), item_id)