Always set the age check cookie (31916)
This commit is contained in:
parent
86e3cf5e58
commit
43e7dd46dd
@ -60,6 +60,14 @@ class PornHubBaseIE(InfoExtractor):
|
|||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
self._logged_in = False
|
self._logged_in = False
|
||||||
|
|
||||||
|
def _set_age_cookies(self, host):
|
||||||
|
# The age verification cookie may have a different name based on the location.
|
||||||
|
# Setting multiple cookies doesn't seem to be big deal so we prefer that solution instead
|
||||||
|
# of guessing the right cookie out of an IP we don't currently have.
|
||||||
|
self._set_cookie(host, 'age_verified', '1')
|
||||||
|
self._set_cookie(host, 'accessAgeDisclaimerPH', '1')
|
||||||
|
self._set_cookie(host, 'accessPH', '1')
|
||||||
|
|
||||||
def _login(self, host):
|
def _login(self, host):
|
||||||
if self._logged_in:
|
if self._logged_in:
|
||||||
return
|
return
|
||||||
@ -264,11 +272,9 @@ class PornHubIE(PornHubBaseIE):
|
|||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
self._login(host)
|
self._login(host)
|
||||||
|
self._set_age_cookies(host)
|
||||||
self._set_cookie(host, 'age_verified', '1')
|
|
||||||
|
|
||||||
def dl_webpage(platform):
|
def dl_webpage(platform):
|
||||||
self._set_cookie(host, 'platform', platform)
|
|
||||||
return self._download_webpage(
|
return self._download_webpage(
|
||||||
'https://www.%s/view_video.php?viewkey=%s' % (host, video_id),
|
'https://www.%s/view_video.php?viewkey=%s' % (host, video_id),
|
||||||
video_id, 'Downloading %s webpage' % platform)
|
video_id, 'Downloading %s webpage' % platform)
|
||||||
@ -564,6 +570,7 @@ class PornHubUserIE(PornHubPlaylistBaseIE):
|
|||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
user_id = mobj.group('id')
|
user_id = mobj.group('id')
|
||||||
videos_url = '%s/videos' % mobj.group('url')
|
videos_url = '%s/videos' % mobj.group('url')
|
||||||
|
self._set_age_cookies(mobj.group('host'))
|
||||||
page = self._extract_page(url)
|
page = self._extract_page(url)
|
||||||
if page:
|
if page:
|
||||||
videos_url = update_url_query(videos_url, {'page': page})
|
videos_url = update_url_query(videos_url, {'page': page})
|
||||||
@ -628,6 +635,7 @@ class PornHubPagedPlaylistBaseIE(PornHubPlaylistBaseIE):
|
|||||||
item_id = mobj.group('id')
|
item_id = mobj.group('id')
|
||||||
|
|
||||||
self._login(host)
|
self._login(host)
|
||||||
|
self._set_age_cookies(host)
|
||||||
|
|
||||||
return self.playlist_result(self._entries(url, host, item_id), item_id)
|
return self.playlist_result(self._entries(url, host, item_id), item_id)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user