mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-28 09:30:57 +01:00
[adobepass] Add support for Cablevision MSO (Optimum)
This commit is contained in:
parent
a86922c470
commit
cc93fcd05b
@ -60,6 +60,11 @@ MSO_INFO = {
|
|||||||
'username_field': 'IDToken1',
|
'username_field': 'IDToken1',
|
||||||
'password_field': 'IDToken2',
|
'password_field': 'IDToken2',
|
||||||
},
|
},
|
||||||
|
'Cablevision': {
|
||||||
|
'name': 'Cablevision',
|
||||||
|
'username_field': 'IDToken1',
|
||||||
|
'password_field': 'IDToken2',
|
||||||
|
},
|
||||||
'thr030': {
|
'thr030': {
|
||||||
'name': '3 Rivers Communications'
|
'name': '3 Rivers Communications'
|
||||||
},
|
},
|
||||||
@ -1367,6 +1372,22 @@ class AdobePassIE(InfoExtractor):
|
|||||||
'Content-Type': 'application/x-www-form-urlencoded',
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
def post_form_cablevision(form_page_res, note, data={}):
|
||||||
|
form_page, urlh = form_page_res
|
||||||
|
post_url = self._html_search_regex(
|
||||||
|
r'<form name[^>]+action=(["\'])(?P<url>.+?)\1', form_page,
|
||||||
|
'post url', group='url')
|
||||||
|
|
||||||
|
if not re.match(r'https?://', post_url):
|
||||||
|
post_url = compat_urlparse.urljoin(urlh.geturl(), post_url)
|
||||||
|
form_data = self._hidden_inputs(form_page)
|
||||||
|
form_data.update(data)
|
||||||
|
return self._download_webpage_handle(
|
||||||
|
post_url, video_id, note, data=urlencode_postdata(form_data),
|
||||||
|
headers={
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
|
})
|
||||||
|
|
||||||
def raise_mvpd_required():
|
def raise_mvpd_required():
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'This video is only available for users of participating TV providers. '
|
'This video is only available for users of participating TV providers. '
|
||||||
@ -1491,6 +1512,57 @@ class AdobePassIE(InfoExtractor):
|
|||||||
}), headers={
|
}), headers={
|
||||||
'Content-Type': 'application/x-www-form-urlencoded'
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||||||
})
|
})
|
||||||
|
elif mso_id == 'Cablevision':
|
||||||
|
# This will be for Cablevision login
|
||||||
|
provider_redirect_page, urlh = provider_redirect_page_res
|
||||||
|
provider_refresh_redirect_url = extract_redirect_url(
|
||||||
|
provider_redirect_page, url=urlh.geturl())
|
||||||
|
if provider_refresh_redirect_url:
|
||||||
|
provider_redirect_page_res = \
|
||||||
|
self._download_webpage_handle(
|
||||||
|
provider_refresh_redirect_url, video_id,
|
||||||
|
'Downloading Provider Redirect Page '
|
||||||
|
'(meta refresh)')
|
||||||
|
provider_login_page_res = post_form(
|
||||||
|
provider_redirect_page_res,
|
||||||
|
self._DOWNLOADING_LOGIN_PAGE)
|
||||||
|
html_code = provider_login_page_res[0].split('\n')
|
||||||
|
for line in html_code:
|
||||||
|
if 'name="goto" value="' in line:
|
||||||
|
goto = line.strip().replace(
|
||||||
|
'<input type="hidden" name="goto" value="',
|
||||||
|
'').replace('">', '')
|
||||||
|
|
||||||
|
if 'SunQueryParamsString' in line:
|
||||||
|
sunquery = line.strip().replace(
|
||||||
|
'<input type="hidden" '
|
||||||
|
'name="SunQueryParamsString" value="',
|
||||||
|
'').replace('">', '')
|
||||||
|
mvpd_confirm_page_res = post_form_cablevision(
|
||||||
|
provider_login_page_res, 'Logging in', {
|
||||||
|
mso_info.get('username_field',
|
||||||
|
'username'): username,
|
||||||
|
mso_info.get('password_field',
|
||||||
|
'password'): password,
|
||||||
|
'goto': goto,
|
||||||
|
'SunQueryParamsString': sunquery,
|
||||||
|
'encoded': 'true',
|
||||||
|
'gx_charset': 'UTF-8',
|
||||||
|
'IDButton': '',
|
||||||
|
})
|
||||||
|
# All-caps confuses the form parser, lowercase certain
|
||||||
|
# strings to get around that. We don't lowercase all of it
|
||||||
|
# because the auth token we need might be case-sensitive.
|
||||||
|
complete_login_res = (
|
||||||
|
mvpd_confirm_page_res[0].replace('INPUT', 'input')
|
||||||
|
.replace('TYPE', 'type')
|
||||||
|
.replace('NAME', 'name')
|
||||||
|
.replace('VALUE', 'value')
|
||||||
|
.replace('ACTION', 'action')
|
||||||
|
.replace('HIDDEN', 'hidden')
|
||||||
|
.replace('FORM', 'form'),
|
||||||
|
*mvpd_confirm_page_res[1:])
|
||||||
|
post_form(complete_login_res, 'Confirming Login')
|
||||||
else:
|
else:
|
||||||
# Some providers (e.g. DIRECTV NOW) have another meta refresh
|
# Some providers (e.g. DIRECTV NOW) have another meta refresh
|
||||||
# based redirect that should be followed.
|
# based redirect that should be followed.
|
||||||
|
Loading…
Reference in New Issue
Block a user