youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7e60ce9cf7b104c15fcc4c495166dc57b950b987
parent e811bcf8f820d92b6629920b7c3c5a902815e6d1
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun, 14 Aug 2016 21:24:33 +0100

[adobepass] clear cache in case of pendingLogout errors

Diffstat:
Myoutube_dl/extractor/adobepass.py | 13++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/adobepass.py b/youtube_dl/extractor/adobepass.py @@ -90,6 +90,9 @@ class AdobePass(InfoExtractor): '_method': 'GET', 'requestor_id': requestor_id, }), headers=mvpd_headers) + if '<pendingLogout' in short_authorize: + self._downloader.cache.store('mvpd', requestor_id, {}) + return self._extract_mvpd_auth(url, video_id, requestor_id, resource) authn_token = unescapeHTML(xml_text(session, 'authnToken')) requestor_info['authn_token'] = authn_token self._downloader.cache.store('mvpd', requestor_id, requestor_info) @@ -105,6 +108,9 @@ class AdobePass(InfoExtractor): 'mso_id': xml_text(authn_token, 'simpleTokenMsoID'), 'userMeta': '1', }), headers=mvpd_headers) + if '<pendingLogout' in authorize: + self._downloader.cache.store('mvpd', requestor_id, {}) + return self._extract_mvpd_auth(url, video_id, requestor_id, resource) authz_token = unescapeHTML(xml_text(authorize, 'authzToken')) requestor_info[guid] = authz_token self._downloader.cache.store('mvpd', requestor_id, requestor_info) @@ -114,7 +120,7 @@ class AdobePass(InfoExtractor): 'ap_23': xml_text(authn_token, 'simpleSamlSessionIndex'), }) - return self._download_webpage( + short_authorize = self._download_webpage( self._SERVICE_PROVIDER_TEMPLATE % 'shortAuthorize', video_id, 'Retrieving Media Token', data=urlencode_postdata({ 'authz_token': authz_token, @@ -122,3 +128,7 @@ class AdobePass(InfoExtractor): 'session_guid': xml_text(authn_token, 'simpleTokenAuthenticationGuid'), 'hashed_guid': 'false', }), headers=mvpd_headers) + if '<pendingLogout' in short_authorize: + self._downloader.cache.store('mvpd', requestor_id, {}) + return self._extract_mvpd_auth(url, video_id, requestor_id, resource) + return short_authorize+ \ No newline at end of file