mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09:00
[safari] Refactor login check
This commit is contained in:
parent
899af2ef61
commit
f7ca7e77be
@ -38,8 +38,11 @@ class SafariBaseIE(InfoExtractor):
|
|||||||
'Downloading login page')
|
'Downloading login page')
|
||||||
|
|
||||||
def is_logged(urlh):
|
def is_logged(urlh):
|
||||||
return ('https://learning.oreilly.com/member/login/' == urlh.geturl()
|
url = urlh.geturl()
|
||||||
or 'learning.oreilly.com/home/' in urlh.geturl())
|
parsed_url = compat_urlparse.urlparse(url)
|
||||||
|
return parsed_url.hostname.endswith('learning.oreilly.com') and (
|
||||||
|
parsed_url.path.startswith('/home/')
|
||||||
|
or (parsed_url.path == '/member/login/' and not parsed_url.query))
|
||||||
|
|
||||||
if is_logged(urlh):
|
if is_logged(urlh):
|
||||||
self.LOGGED_IN = True
|
self.LOGGED_IN = True
|
||||||
|
Loading…
Reference in New Issue
Block a user