2014-01-07 10:25:34 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-03-27 20:50:46 +02:00
|
|
|
import itertools
|
2013-10-27 01:04:22 +02:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 12:24:42 +01:00
|
|
|
from ..compat import (
|
2016-03-27 20:50:46 +02:00
|
|
|
compat_HTTPError,
|
2015-07-17 19:47:23 +02:00
|
|
|
compat_urllib_parse_unquote,
|
|
|
|
compat_urllib_parse_unquote_plus,
|
2013-10-27 01:04:22 +02:00
|
|
|
compat_urllib_parse_urlparse,
|
2014-12-13 12:24:42 +01:00
|
|
|
)
|
|
|
|
from ..utils import (
|
2015-01-22 23:48:58 +01:00
|
|
|
ExtractorError,
|
2016-02-19 16:42:46 +01:00
|
|
|
int_or_none,
|
2016-03-27 20:21:08 +02:00
|
|
|
orderedSet,
|
2015-11-21 17:18:17 +01:00
|
|
|
sanitized_Request,
|
2014-03-22 15:29:01 +01:00
|
|
|
str_to_int,
|
2013-10-27 01:04:22 +02:00
|
|
|
)
|
|
|
|
from ..aes import (
|
|
|
|
aes_decrypt_text
|
|
|
|
)
|
|
|
|
|
2014-01-07 10:25:34 +01:00
|
|
|
|
2013-10-27 01:04:22 +02:00
|
|
|
class PornHubIE(InfoExtractor):
|
2015-09-15 17:24:01 +02:00
|
|
|
_VALID_URL = r'https?://(?:[a-z]+\.)?pornhub\.com/(?:view_video\.php\?viewkey=|embed/)(?P<id>[0-9a-z]+)'
|
2015-06-18 18:26:17 +02:00
|
|
|
_TESTS = [{
|
2014-01-07 10:25:34 +01:00
|
|
|
'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015',
|
2016-02-19 16:42:46 +01:00
|
|
|
'md5': '1e19b41231a02eba417839222ac9d58e',
|
2014-01-07 10:25:34 +01:00
|
|
|
'info_dict': {
|
2014-10-27 00:33:35 +01:00
|
|
|
'id': '648719015',
|
|
|
|
'ext': 'mp4',
|
2016-02-14 10:37:17 +01:00
|
|
|
'title': 'Seductive Indian beauty strips down and fingers her pink pussy',
|
2016-02-19 16:42:46 +01:00
|
|
|
'uploader': 'Babes',
|
|
|
|
'duration': 361,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
|
|
|
'dislike_count': int,
|
|
|
|
'comment_count': int,
|
|
|
|
'age_limit': 18,
|
2013-10-27 01:04:22 +02:00
|
|
|
}
|
2015-06-18 18:26:17 +02:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.pornhub.com/view_video.php?viewkey=ph557bbb6676d2d',
|
|
|
|
'only_matching': True,
|
2015-09-15 17:24:01 +02:00
|
|
|
}, {
|
|
|
|
'url': 'http://fr.pornhub.com/view_video.php?viewkey=ph55ca2f9760862',
|
|
|
|
'only_matching': True,
|
2015-06-18 18:26:17 +02:00
|
|
|
}]
|
2013-10-27 01:04:22 +02:00
|
|
|
|
2015-06-12 23:36:16 +02:00
|
|
|
@classmethod
|
|
|
|
def _extract_url(cls, webpage):
|
|
|
|
mobj = re.search(
|
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?pornhub\.com/embed/\d+)\1', webpage)
|
|
|
|
if mobj:
|
|
|
|
return mobj.group('url')
|
|
|
|
|
2014-03-22 15:29:01 +01:00
|
|
|
def _extract_count(self, pattern, webpage, name):
|
2015-03-30 15:41:04 +02:00
|
|
|
return str_to_int(self._search_regex(
|
|
|
|
pattern, webpage, '%s count' % name, fatal=False))
|
2014-03-22 15:29:01 +01:00
|
|
|
|
2013-10-27 01:04:22 +02:00
|
|
|
def _real_extract(self, url):
|
2014-10-27 00:33:35 +01:00
|
|
|
video_id = self._match_id(url)
|
2013-10-27 01:04:22 +02:00
|
|
|
|
2015-11-21 17:18:17 +01:00
|
|
|
req = sanitized_Request(
|
2015-06-12 23:24:36 +02:00
|
|
|
'http://www.pornhub.com/view_video.php?viewkey=%s' % video_id)
|
2013-10-27 01:04:22 +02:00
|
|
|
req.add_header('Cookie', 'age_verified=1')
|
|
|
|
webpage = self._download_webpage(req, video_id)
|
|
|
|
|
2015-01-22 23:48:58 +01:00
|
|
|
error_msg = self._html_search_regex(
|
|
|
|
r'(?s)<div class="userMessageSection[^"]*".*?>(.*?)</div>',
|
|
|
|
webpage, 'error message', default=None)
|
|
|
|
if error_msg:
|
|
|
|
error_msg = re.sub(r'\s+', ' ', error_msg)
|
|
|
|
raise ExtractorError(
|
|
|
|
'PornHub said: %s' % error_msg,
|
|
|
|
expected=True, video_id=video_id)
|
|
|
|
|
2016-02-19 16:42:46 +01:00
|
|
|
flashvars = self._parse_json(
|
|
|
|
self._search_regex(
|
2016-03-27 21:21:44 +02:00
|
|
|
r'var\s+flashvars_\d+\s*=\s*({.+?});', webpage, 'flashvars', default='{}'),
|
2016-02-19 16:42:46 +01:00
|
|
|
video_id)
|
|
|
|
if flashvars:
|
|
|
|
video_title = flashvars.get('video_title')
|
|
|
|
thumbnail = flashvars.get('image_url')
|
|
|
|
duration = int_or_none(flashvars.get('video_duration'))
|
|
|
|
else:
|
|
|
|
video_title, thumbnail, duration = [None] * 3
|
|
|
|
|
|
|
|
if not video_title:
|
|
|
|
video_title = self._html_search_regex(r'<h1 [^>]+>([^<]+)', webpage, 'title')
|
|
|
|
|
2014-03-22 15:29:01 +01:00
|
|
|
video_uploader = self._html_search_regex(
|
2015-02-19 17:15:49 +01:00
|
|
|
r'(?s)From: .+?<(?:a href="/users/|a href="/channels/|span class="username)[^>]+>(.+?)<',
|
2014-03-22 15:29:01 +01:00
|
|
|
webpage, 'uploader', fatal=False)
|
2013-10-27 01:04:22 +02:00
|
|
|
|
2015-03-30 15:41:04 +02:00
|
|
|
view_count = self._extract_count(
|
|
|
|
r'<span class="count">([\d,\.]+)</span> views', webpage, 'view')
|
|
|
|
like_count = self._extract_count(
|
|
|
|
r'<span class="votesUp">([\d,\.]+)</span>', webpage, 'like')
|
|
|
|
dislike_count = self._extract_count(
|
|
|
|
r'<span class="votesDown">([\d,\.]+)</span>', webpage, 'dislike')
|
2014-03-22 15:29:01 +01:00
|
|
|
comment_count = self._extract_count(
|
2015-03-30 15:41:04 +02:00
|
|
|
r'All Comments\s*<span>\(([\d,.]+)\)', webpage, 'comment')
|
2014-03-22 15:29:01 +01:00
|
|
|
|
2015-08-02 22:41:17 +02:00
|
|
|
video_urls = list(map(compat_urllib_parse_unquote, re.findall(r"player_quality_[0-9]{3}p\s*=\s*'([^']+)'", webpage)))
|
2013-10-27 01:04:22 +02:00
|
|
|
if webpage.find('"encrypted":true') != -1:
|
2015-07-17 19:47:23 +02:00
|
|
|
password = compat_urllib_parse_unquote_plus(
|
2015-05-26 21:41:00 +02:00
|
|
|
self._search_regex(r'"video_title":"([^"]+)', webpage, 'password'))
|
2013-10-27 01:04:22 +02:00
|
|
|
video_urls = list(map(lambda s: aes_decrypt_text(s, password, 32).decode('utf-8'), video_urls))
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
for video_url in video_urls:
|
2013-11-03 14:03:17 +01:00
|
|
|
path = compat_urllib_parse_urlparse(video_url).path
|
|
|
|
extension = os.path.splitext(path)[1][1:]
|
2013-10-27 01:04:22 +02:00
|
|
|
format = path.split('/')[5].split('_')[:2]
|
2016-02-14 10:37:17 +01:00
|
|
|
format = '-'.join(format)
|
2014-01-07 10:25:34 +01:00
|
|
|
|
2015-08-03 15:37:48 +02:00
|
|
|
m = re.match(r'^(?P<height>[0-9]+)[pP]-(?P<tbr>[0-9]+)[kK]$', format)
|
2014-01-07 10:25:34 +01:00
|
|
|
if m is None:
|
|
|
|
height = None
|
|
|
|
tbr = None
|
|
|
|
else:
|
|
|
|
height = int(m.group('height'))
|
|
|
|
tbr = int(m.group('tbr'))
|
|
|
|
|
2013-10-27 01:04:22 +02:00
|
|
|
formats.append({
|
|
|
|
'url': video_url,
|
|
|
|
'ext': extension,
|
|
|
|
'format': format,
|
|
|
|
'format_id': format,
|
2014-01-07 10:25:34 +01:00
|
|
|
'tbr': tbr,
|
|
|
|
'height': height,
|
2013-10-27 01:04:22 +02:00
|
|
|
})
|
2014-01-07 10:25:34 +01:00
|
|
|
self._sort_formats(formats)
|
2013-10-27 01:04:22 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'uploader': video_uploader,
|
|
|
|
'title': video_title,
|
|
|
|
'thumbnail': thumbnail,
|
2016-02-19 16:42:46 +01:00
|
|
|
'duration': duration,
|
2014-03-22 15:29:01 +01:00
|
|
|
'view_count': view_count,
|
|
|
|
'like_count': like_count,
|
|
|
|
'dislike_count': dislike_count,
|
|
|
|
'comment_count': comment_count,
|
2013-10-27 01:04:22 +02:00
|
|
|
'formats': formats,
|
2013-10-28 06:50:17 +01:00
|
|
|
'age_limit': 18,
|
2013-10-27 01:04:22 +02:00
|
|
|
}
|
2015-02-19 17:15:19 +01:00
|
|
|
|
|
|
|
|
2016-02-18 17:29:17 +01:00
|
|
|
class PornHubPlaylistBaseIE(InfoExtractor):
|
|
|
|
def _extract_entries(self, webpage):
|
|
|
|
return [
|
2016-03-27 20:32:57 +02:00
|
|
|
self.url_result(
|
|
|
|
'http://www.pornhub.com/%s' % video_url,
|
|
|
|
PornHubIE.ie_key(), video_title=title)
|
|
|
|
for video_url, title in orderedSet(re.findall(
|
|
|
|
r'href="/?(view_video\.php\?.*\bviewkey=[\da-z]+[^"]*)"[^>]*\s+title="([^"]+)"',
|
|
|
|
webpage))
|
2016-02-18 17:29:17 +01:00
|
|
|
]
|
2015-02-19 17:15:19 +01:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
playlist_id = self._match_id(url)
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
|
2016-02-18 17:29:17 +01:00
|
|
|
entries = self._extract_entries(webpage)
|
2015-02-19 17:15:19 +01:00
|
|
|
|
|
|
|
playlist = self._parse_json(
|
|
|
|
self._search_regex(
|
|
|
|
r'playlistObject\s*=\s*({.+?});', webpage, 'playlist'),
|
|
|
|
playlist_id)
|
|
|
|
|
|
|
|
return self.playlist_result(
|
|
|
|
entries, playlist_id, playlist.get('title'), playlist.get('description'))
|
2016-02-18 17:29:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
class PornHubPlaylistIE(PornHubPlaylistBaseIE):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?pornhub\.com/playlist/(?P<id>\d+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://www.pornhub.com/playlist/6201671',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '6201671',
|
|
|
|
'title': 'P0p4',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 35,
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
|
|
class PornHubUserVideosIE(PornHubPlaylistBaseIE):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?pornhub\.com/users/(?P<id>[^/]+)/videos'
|
|
|
|
_TESTS = [{
|
2016-03-27 20:50:46 +02:00
|
|
|
'url': 'http://www.pornhub.com/users/zoe_ph/videos/public',
|
2016-02-18 17:29:17 +01:00
|
|
|
'info_dict': {
|
2016-03-27 20:50:46 +02:00
|
|
|
'id': 'zoe_ph',
|
2016-02-18 17:29:17 +01:00
|
|
|
},
|
2016-03-27 20:50:46 +02:00
|
|
|
'playlist_mincount': 171,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.pornhub.com/users/rushandlia/videos',
|
|
|
|
'only_matching': True,
|
2016-02-18 17:29:17 +01:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
user_id = self._match_id(url)
|
|
|
|
|
2016-03-27 20:50:46 +02:00
|
|
|
entries = []
|
|
|
|
for page_num in itertools.count(1):
|
|
|
|
try:
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
url, user_id, 'Downloading page %d' % page_num,
|
|
|
|
query={'page': page_num})
|
|
|
|
except ExtractorError as e:
|
|
|
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
|
|
|
|
break
|
|
|
|
page_entries = self._extract_entries(webpage)
|
|
|
|
if not page_entries:
|
|
|
|
break
|
|
|
|
entries.extend(page_entries)
|
|
|
|
|
|
|
|
return self.playlist_result(entries, user_id)
|