Skip to content

Commit

Permalink
[soundcloud] fix client id extraction for non fatal requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Remita Amine committed Dec 31, 2019
1 parent 2d30b92 commit de7aade
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion youtube_dl/extractor/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
compat_urlparse,
)
from ..utils import (
error_to_compat_str,
ExtractorError,
float_or_none,
HEADRequest,
Expand Down Expand Up @@ -272,6 +273,9 @@ class SoundcloudIE(InfoExtractor):
'original': 0,
}

def _store_client_id(self, client_id):
self._downloader.cache.store('soundcloud', 'client_id', client_id)

def _update_client_id(self):
webpage = self._download_webpage('https://soundcloud.com/', None)
for src in reversed(re.findall(r'<script[^>]+src="([^"]+)"', webpage)):
Expand All @@ -282,11 +286,14 @@ def _update_client_id(self):
script, 'client id', default=None)
if client_id:
self._CLIENT_ID = client_id
self._downloader.cache.store('soundcloud', 'client_id', client_id)
self._store_client_id(client_id)
return
raise ExtractorError('Unable to extract client id')

def _download_json(self, *args, **kwargs):
non_fatal = kwargs.get('fatal') is False
if non_fatal:
del kwargs['fatal']
query = kwargs.get('query', {}).copy()
for _ in range(2):
query['client_id'] = self._CLIENT_ID
Expand All @@ -295,8 +302,12 @@ def _download_json(self, *args, **kwargs):
return super(SoundcloudIE, self)._download_json(*args, **compat_kwargs(kwargs))
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
self._store_client_id(None)
self._update_client_id()
continue
elif non_fatal:
self._downloader.report_warning(error_to_compat_str(e))
return False
raise

def _real_initialize(self):
Expand Down

0 comments on commit de7aade

Please sign in to comment.