]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/mixcloud.py
[mixcloud] allow uppercase letters in format urls(closes #19280)
[yt-dlp.git] / youtube_dl / extractor / mixcloud.py
CommitLineData
d0390a0c
PH
1from __future__ import unicode_literals
2
9c250931 3import functools
e6da9240 4import itertools
80cbb6dd 5import re
80cbb6dd
PH
6
7from .common import InfoExtractor
c96eca42 8from ..compat import (
5d7d805c 9 compat_b64decode,
dd91dfcd
YCH
10 compat_chr,
11 compat_ord,
095774e5 12 compat_str,
c96eca42 13 compat_urllib_parse_unquote,
9c250931 14 compat_urlparse,
2384f5a6 15 compat_zip
c96eca42 16)
1cc79574 17from ..utils import (
9c250931 18 clean_html,
baa7b197 19 ExtractorError,
095774e5 20 int_or_none,
9c250931 21 OnDemandPagedList,
b80505a4 22 str_to_int,
095774e5
S
23 try_get,
24 urljoin,
25)
80cbb6dd
PH
26
27
28class MixcloudIE(InfoExtractor):
655cb545 29 _VALID_URL = r'https?://(?:(?:www|beta|m)\.)?mixcloud\.com/([^/]+)/(?!stream|uploads|favorites|listens|playlists)([^/]+)'
d0390a0c 30 IE_NAME = 'mixcloud'
80cbb6dd 31
58ba6c01 32 _TESTS = [{
d0390a0c 33 'url': 'http://www.mixcloud.com/dholbach/cryptkeeper/',
d0390a0c 34 'info_dict': {
abb82f1d 35 'id': 'dholbach-cryptkeeper',
f896e1cc 36 'ext': 'm4a',
d0390a0c
PH
37 'title': 'Cryptkeeper',
38 'description': 'After quite a long silence from myself, finally another Drum\'n\'Bass mix with my favourite current dance floor bangers.',
39 'uploader': 'Daniel Holbach',
40 'uploader_id': 'dholbach',
ec85ded8 41 'thumbnail': r're:https?://.*\.jpg',
57c7411f 42 'view_count': int,
19e1d359 43 },
58ba6c01
S
44 }, {
45 'url': 'http://www.mixcloud.com/gillespeterson/caribou-7-inch-vinyl-mix-chat/',
46 'info_dict': {
47 'id': 'gillespeterson-caribou-7-inch-vinyl-mix-chat',
7a757b71
JMF
48 'ext': 'mp3',
49 'title': 'Caribou 7 inch Vinyl Mix & Chat',
58ba6c01 50 'description': 'md5:2b8aec6adce69f9d41724647c65875e8',
7a757b71 51 'uploader': 'Gilles Peterson Worldwide',
58ba6c01 52 'uploader_id': 'gillespeterson',
dd91dfcd 53 'thumbnail': 're:https?://.*',
58ba6c01 54 'view_count': int,
58ba6c01 55 },
655cb545
S
56 }, {
57 'url': 'https://beta.mixcloud.com/RedLightRadio/nosedrip-15-red-light-radio-01-18-2016/',
58 'only_matching': True,
58ba6c01 59 }]
80cbb6dd 60
2384f5a6
TI
61 @staticmethod
62 def _decrypt_xor_cipher(key, ciphertext):
63 """Encrypt/Decrypt XOR cipher. Both ways are possible because it's XOR."""
64 return ''.join([
65 compat_chr(compat_ord(ch) ^ compat_ord(k))
66 for ch, k in compat_zip(ciphertext, itertools.cycle(key))])
67
80cbb6dd
PH
68 def _real_extract(self, url):
69 mobj = re.match(self._VALID_URL, url)
19e1d359
JMF
70 uploader = mobj.group(1)
71 cloudcast_name = mobj.group(2)
c2daf8df 72 track_id = compat_urllib_parse_unquote('-'.join((uploader, cloudcast_name)))
dd2535c3 73
19e1d359 74 webpage = self._download_webpage(url, track_id)
19e1d359 75
2384f5a6
TI
76 # Legacy path
77 encrypted_play_info = self._search_regex(
78 r'm-play-info="([^"]+)"', webpage, 'play info', default=None)
79
80 if encrypted_play_info is not None:
81 # Decode
5d7d805c 82 encrypted_play_info = compat_b64decode(encrypted_play_info)
2384f5a6
TI
83 else:
84 # New path
85 full_info_json = self._parse_json(self._html_search_regex(
095774e5
S
86 r'<script id="relay-data" type="text/x-mixcloud">([^<]+)</script>',
87 webpage, 'play info'), 'play info')
2384f5a6 88 for item in full_info_json:
095774e5
S
89 item_data = try_get(
90 item, lambda x: x['cloudcast']['data']['cloudcastLookup'],
91 dict)
2384f5a6
TI
92 if try_get(item_data, lambda x: x['streamInfo']['url']):
93 info_json = item_data
94 break
95 else:
96 raise ExtractorError('Failed to extract matching stream info')
da20951a 97
49f523ca
S
98 message = self._html_search_regex(
99 r'(?s)<div[^>]+class="global-message cloudcast-disabled-notice-light"[^>]*>(.+?)<(?:a|/div)',
100 webpage, 'error message', default=None)
101
2384f5a6 102 js_url = self._search_regex(
095774e5
S
103 r'<script[^>]+\bsrc=["\"](https://(?:www\.)?mixcloud\.com/media/(?:js2/www_js_4|js/www)\.[^>]+\.js)',
104 webpage, 'js url')
105 js = self._download_webpage(js_url, track_id, 'Downloading JS')
2384f5a6
TI
106 # Known plaintext attack
107 if encrypted_play_info:
108 kps = ['{"stream_url":']
109 kpa_target = encrypted_play_info
110 else:
111 kps = ['https://', 'http://']
5d7d805c 112 kpa_target = compat_b64decode(info_json['streamInfo']['url'])
2384f5a6
TI
113 for kp in kps:
114 partial_key = self._decrypt_xor_cipher(kpa_target, kp)
115 for quote in ["'", '"']:
095774e5
S
116 key = self._search_regex(
117 r'{0}({1}[^{0}]*){0}'.format(quote, re.escape(partial_key)),
118 js, 'encryption key', default=None)
2384f5a6
TI
119 if key is not None:
120 break
121 else:
122 continue
123 break
124 else:
125 raise ExtractorError('Failed to extract encryption key')
126
127 if encrypted_play_info is not None:
128 play_info = self._parse_json(self._decrypt_xor_cipher(key, encrypted_play_info), 'play info')
129 if message and 'stream_url' not in play_info:
130 raise ExtractorError('%s said: %s' % (self.IE_NAME, message), expected=True)
131 song_url = play_info['stream_url']
132 formats = [{
133 'format_id': 'normal',
134 'url': song_url
135 }]
136
137 title = self._html_search_regex(r'm-title="([^"]+)"', webpage, 'title')
138 thumbnail = self._proto_relative_url(self._html_search_regex(
139 r'm-thumbnail-url="([^"]+)"', webpage, 'thumbnail', fatal=False))
140 uploader = self._html_search_regex(
141 r'm-owner-name="([^"]+)"', webpage, 'uploader', fatal=False)
142 uploader_id = self._search_regex(
143 r'\s+"profile": "([^"]+)",', webpage, 'uploader id', fatal=False)
144 description = self._og_search_description(webpage)
145 view_count = str_to_int(self._search_regex(
146 [r'<meta itemprop="interactionCount" content="UserPlays:([0-9]+)"',
147 r'/listeners/?">([0-9,.]+)</a>',
148 r'(?:m|data)-tooltip=["\']([\d,.]+) plays'],
149 webpage, 'play count', default=None))
150
151 else:
152 title = info_json['name']
095774e5
S
153 thumbnail = urljoin(
154 'https://thumbnailer.mixcloud.com/unsafe/600x600/',
155 try_get(info_json, lambda x: x['picture']['urlRoot'], compat_str))
2384f5a6
TI
156 uploader = try_get(info_json, lambda x: x['owner']['displayName'])
157 uploader_id = try_get(info_json, lambda x: x['owner']['username'])
158 description = try_get(info_json, lambda x: x['description'])
095774e5 159 view_count = int_or_none(try_get(info_json, lambda x: x['plays']))
2384f5a6
TI
160
161 stream_info = info_json['streamInfo']
162 formats = []
095774e5 163
560020da
RA
164 def decrypt_url(f_url):
165 for k in (key, 'IFYOUWANTTHEARTISTSTOGETPAIDDONOTDOWNLOADFROMMIXCLOUD'):
6f2883a2 166 decrypted_url = self._decrypt_xor_cipher(k, f_url)
6cf6b357 167 if re.search(r'^https?://[0-9A-Za-z.]+/[0-9A-Za-z/.?=&_-]+$', decrypted_url):
560020da
RA
168 return decrypted_url
169
095774e5
S
170 for url_key in ('url', 'hlsUrl', 'dashUrl'):
171 format_url = stream_info.get(url_key)
172 if not format_url:
173 continue
6f2883a2 174 decrypted = decrypt_url(compat_b64decode(format_url))
095774e5
S
175 if not decrypted:
176 continue
177 if url_key == 'hlsUrl':
178 formats.extend(self._extract_m3u8_formats(
179 decrypted, track_id, 'mp4', entry_protocol='m3u8_native',
180 m3u8_id='hls', fatal=False))
181 elif url_key == 'dashUrl':
182 formats.extend(self._extract_mpd_formats(
183 decrypted, track_id, mpd_id='dash', fatal=False))
184 else:
185 formats.append({
186 'format_id': 'http',
187 'url': decrypted,
bc5e4aa5
S
188 'downloader_options': {
189 # Mixcloud starts throttling at >~5M
190 'http_chunk_size': 5242880,
191 },
095774e5
S
192 })
193 self._sort_formats(formats)
19e1d359
JMF
194
195 return {
196 'id': track_id,
57c7411f 197 'title': title,
2384f5a6 198 'formats': formats,
57c7411f
PH
199 'description': description,
200 'thumbnail': thumbnail,
201 'uploader': uploader,
202 'uploader_id': uploader_id,
57c7411f 203 'view_count': view_count,
19e1d359 204 }
c96eca42
PH
205
206
9c250931
YCH
207class MixcloudPlaylistBaseIE(InfoExtractor):
208 _PAGE_SIZE = 24
c96eca42 209
e6da9240
YCH
210 def _find_urls_in_page(self, page):
211 for url in re.findall(r'm-play-button m-url="(?P<url>[^"]+)"', page):
212 yield self.url_result(
213 compat_urlparse.urljoin('https://www.mixcloud.com', clean_html(url)),
214 MixcloudIE.ie_key())
215
216 def _fetch_tracks_page(self, path, video_id, page_name, current_page, real_page_number=None):
217 real_page_number = real_page_number or current_page + 1
218 return self._download_webpage(
9c250931
YCH
219 'https://www.mixcloud.com/%s/' % path, video_id,
220 note='Download %s (page %d)' % (page_name, current_page + 1),
221 errnote='Unable to download %s' % page_name,
e6da9240 222 query={'page': real_page_number, 'list': 'main', '_ajax': '1'},
9c250931
YCH
223 headers={'X-Requested-With': 'XMLHttpRequest'})
224
e6da9240
YCH
225 def _tracks_page_func(self, page, video_id, page_name, current_page):
226 resp = self._fetch_tracks_page(page, video_id, page_name, current_page)
227
228 for item in self._find_urls_in_page(resp):
229 yield item
9c250931
YCH
230
231 def _get_user_description(self, page_content):
232 return self._html_search_regex(
a66e2585 233 r'<div[^>]+class="profile-bio"[^>]*>(.+?)</div>',
9c250931
YCH
234 page_content, 'user description', fatal=False)
235
236
237class MixcloudUserIE(MixcloudPlaylistBaseIE):
29c67266 238 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/(?P<type>uploads|favorites|listens)?/?$'
c96eca42
PH
239 IE_NAME = 'mixcloud:user'
240
241 _TESTS = [{
242 'url': 'http://www.mixcloud.com/dholbach/',
243 'info_dict': {
9c250931 244 'id': 'dholbach_uploads',
c96eca42 245 'title': 'Daniel Holbach (uploads)',
a66e2585 246 'description': 'md5:def36060ac8747b3aabca54924897e47',
c96eca42 247 },
9c250931 248 'playlist_mincount': 11,
c96eca42
PH
249 }, {
250 'url': 'http://www.mixcloud.com/dholbach/uploads/',
251 'info_dict': {
9c250931 252 'id': 'dholbach_uploads',
c96eca42 253 'title': 'Daniel Holbach (uploads)',
a66e2585 254 'description': 'md5:def36060ac8747b3aabca54924897e47',
c96eca42 255 },
9c250931 256 'playlist_mincount': 11,
c96eca42
PH
257 }, {
258 'url': 'http://www.mixcloud.com/dholbach/favorites/',
259 'info_dict': {
9c250931 260 'id': 'dholbach_favorites',
c96eca42 261 'title': 'Daniel Holbach (favorites)',
a66e2585 262 'description': 'md5:def36060ac8747b3aabca54924897e47',
c96eca42 263 },
9c250931
YCH
264 'params': {
265 'playlist_items': '1-100',
266 },
267 'playlist_mincount': 100,
c96eca42
PH
268 }, {
269 'url': 'http://www.mixcloud.com/dholbach/listens/',
270 'info_dict': {
9c250931 271 'id': 'dholbach_listens',
c96eca42 272 'title': 'Daniel Holbach (listens)',
a66e2585 273 'description': 'md5:def36060ac8747b3aabca54924897e47',
c96eca42 274 },
9c250931
YCH
275 'params': {
276 'playlist_items': '1-100',
277 },
278 'playlist_mincount': 100,
c96eca42
PH
279 }]
280
c96eca42
PH
281 def _real_extract(self, url):
282 mobj = re.match(self._VALID_URL, url)
9c250931
YCH
283 user_id = mobj.group('user')
284 list_type = mobj.group('type')
c96eca42
PH
285
286 # if only a profile URL was supplied, default to download all uploads
287 if list_type is None:
9c250931 288 list_type = 'uploads'
c96eca42 289
9c250931 290 video_id = '%s_%s' % (user_id, list_type)
c96eca42 291
9c250931
YCH
292 profile = self._download_webpage(
293 'https://www.mixcloud.com/%s/' % user_id, video_id,
294 note='Downloading user profile',
295 errnote='Unable to download user profile')
c96eca42 296
9c250931 297 username = self._og_search_title(profile)
c96eca42
PH
298 description = self._get_user_description(profile)
299
9c250931
YCH
300 entries = OnDemandPagedList(
301 functools.partial(
e6da9240 302 self._tracks_page_func,
9c250931 303 '%s/%s' % (user_id, list_type), video_id, 'list of %s' % list_type),
6be08ce6 304 self._PAGE_SIZE)
c96eca42 305
9c250931
YCH
306 return self.playlist_result(
307 entries, video_id, '%s (%s)' % (username, list_type), description)
c96eca42 308
c96eca42 309
9c250931 310class MixcloudPlaylistIE(MixcloudPlaylistBaseIE):
29c67266 311 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/playlists/(?P<playlist>[^/]+)/?$'
c96eca42
PH
312 IE_NAME = 'mixcloud:playlist'
313
314 _TESTS = [{
315 'url': 'https://www.mixcloud.com/RedBullThre3style/playlists/tokyo-finalists-2015/',
316 'info_dict': {
9c250931 317 'id': 'RedBullThre3style_tokyo-finalists-2015',
c96eca42
PH
318 'title': 'National Champions 2015',
319 'description': 'md5:6ff5fb01ac76a31abc9b3939c16243a3',
320 },
9c250931 321 'playlist_mincount': 16,
c96eca42
PH
322 }, {
323 'url': 'https://www.mixcloud.com/maxvibes/playlists/jazzcat-on-ness-radio/',
a66e2585 324 'only_matching': True,
c96eca42
PH
325 }]
326
c96eca42
PH
327 def _real_extract(self, url):
328 mobj = re.match(self._VALID_URL, url)
9c250931
YCH
329 user_id = mobj.group('user')
330 playlist_id = mobj.group('playlist')
331 video_id = '%s_%s' % (user_id, playlist_id)
c96eca42 332
a66e2585 333 webpage = self._download_webpage(
9c250931
YCH
334 url, user_id,
335 note='Downloading playlist page',
336 errnote='Unable to download playlist page')
c96eca42 337
a66e2585
S
338 title = self._html_search_regex(
339 r'<a[^>]+class="parent active"[^>]*><b>\d+</b><span[^>]*>([^<]+)',
340 webpage, 'playlist title',
341 default=None) or self._og_search_title(webpage, fatal=False)
342 description = self._get_user_description(webpage)
c96eca42 343
9c250931
YCH
344 entries = OnDemandPagedList(
345 functools.partial(
e6da9240 346 self._tracks_page_func,
9c250931
YCH
347 '%s/playlists/%s' % (user_id, playlist_id), video_id, 'tracklist'),
348 self._PAGE_SIZE)
c96eca42 349
a66e2585 350 return self.playlist_result(entries, video_id, title, description)
e6da9240
YCH
351
352
353class MixcloudStreamIE(MixcloudPlaylistBaseIE):
29c67266 354 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<id>[^/]+)/stream/?$'
e6da9240
YCH
355 IE_NAME = 'mixcloud:stream'
356
357 _TEST = {
358 'url': 'https://www.mixcloud.com/FirstEar/stream/',
359 'info_dict': {
360 'id': 'FirstEar',
361 'title': 'First Ear',
362 'description': 'Curators of good music\nfirstearmusic.com',
363 },
364 'playlist_mincount': 192,
365 }
366
367 def _real_extract(self, url):
368 user_id = self._match_id(url)
369
370 webpage = self._download_webpage(url, user_id)
371
372 entries = []
373 prev_page_url = None
374
375 def _handle_page(page):
376 entries.extend(self._find_urls_in_page(page))
377 return self._search_regex(
378 r'm-next-page-url="([^"]+)"', page,
379 'next page URL', default=None)
380
381 next_page_url = _handle_page(webpage)
382
383 for idx in itertools.count(0):
384 if not next_page_url or prev_page_url == next_page_url:
385 break
386
387 prev_page_url = next_page_url
388 current_page = int(self._search_regex(
389 r'\?page=(\d+)', next_page_url, 'next page number'))
390
391 next_page_url = _handle_page(self._fetch_tracks_page(
392 '%s/stream' % user_id, user_id, 'stream', idx,
393 real_page_number=current_page))
394
395 username = self._og_search_title(webpage)
396 description = self._get_user_description(webpage)
397
398 return self.playlist_result(entries, user_id, username, description)