1 from __future__ 
import unicode_literals
 
   7 from .common 
import InfoExtractor
 
  13     compat_urllib_parse_unquote
, 
  28 class MixcloudIE(InfoExtractor
): 
  29     _VALID_URL 
= r
'https?://(?:(?:www|beta|m)\.)?mixcloud\.com/([^/]+)/(?!stream|uploads|favorites|listens|playlists)([^/]+)' 
  33         'url': 'http://www.mixcloud.com/dholbach/cryptkeeper/', 
  35             'id': 'dholbach-cryptkeeper', 
  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', 
  41             'thumbnail': r
're:https?://.*\.jpg', 
  45         'url': 'http://www.mixcloud.com/gillespeterson/caribou-7-inch-vinyl-mix-chat/', 
  47             'id': 'gillespeterson-caribou-7-inch-vinyl-mix-chat', 
  49             'title': 'Caribou 7 inch Vinyl Mix & Chat', 
  50             'description': 'md5:2b8aec6adce69f9d41724647c65875e8', 
  51             'uploader': 'Gilles Peterson Worldwide', 
  52             'uploader_id': 'gillespeterson', 
  53             'thumbnail': 're:https?://.*', 
  57         'url': 'https://beta.mixcloud.com/RedLightRadio/nosedrip-15-red-light-radio-01-18-2016/', 
  58         'only_matching': True, 
  62     def _decrypt_xor_cipher(key
, ciphertext
): 
  63         """Encrypt/Decrypt XOR cipher. Both ways are possible because it's XOR.""" 
  65             compat_chr(compat_ord(ch
) ^ 
compat_ord(k
)) 
  66             for ch
, k 
in compat_zip(ciphertext
, itertools
.cycle(key
))]) 
  68     def _real_extract(self
, url
): 
  69         mobj 
= re
.match(self
._VALID
_URL
, url
) 
  70         uploader 
= mobj
.group(1) 
  71         cloudcast_name 
= mobj
.group(2) 
  72         track_id 
= compat_urllib_parse_unquote('-'.join((uploader
, cloudcast_name
))) 
  74         webpage 
= self
._download
_webpage
(url
, track_id
) 
  77         encrypted_play_info 
= self
._search
_regex
( 
  78             r
'm-play-info="([^"]+)"', webpage
, 'play info', default
=None) 
  80         if encrypted_play_info 
is not None: 
  82             encrypted_play_info 
= compat_b64decode(encrypted_play_info
) 
  85             full_info_json 
= self
._parse
_json
(self
._html
_search
_regex
( 
  86                 r
'<script id="relay-data" type="text/x-mixcloud">([^<]+)</script>', 
  87                 webpage
, 'play info'), 'play info') 
  88             for item 
in full_info_json
: 
  90                     item
, lambda x
: x
['cloudcast']['data']['cloudcastLookup'], 
  92                 if try_get(item_data
, lambda x
: x
['streamInfo']['url']): 
  96                 raise ExtractorError('Failed to extract matching stream info') 
  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) 
 102         js_url 
= self
._search
_regex
( 
 103             r
'<script[^>]+\bsrc=["\"](https://(?:www\.)?mixcloud\.com/media/(?:js2/www_js_4|js/www)\.[^>]+\.js)', 
 105         js 
= self
._download
_webpage
(js_url
, track_id
, 'Downloading JS') 
 106         # Known plaintext attack 
 107         if encrypted_play_info
: 
 108             kps 
= ['{"stream_url":'] 
 109             kpa_target 
= encrypted_play_info
 
 111             kps 
= ['https://', 'http://'] 
 112             kpa_target 
= compat_b64decode(info_json
['streamInfo']['url']) 
 114             partial_key 
= self
._decrypt
_xor
_cipher
(kpa_target
, kp
) 
 115             for quote 
in ["'", '"']: 
 116                 key 
= self
._search
_regex
( 
 117                     r
'{0}({1}[^{0}]*){0}'.format(quote
, re
.escape(partial_key
)), 
 118                     js
, 'encryption key', default
=None) 
 125             raise ExtractorError('Failed to extract encryption key') 
 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'] 
 133                 'format_id': 'normal', 
 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)) 
 152             title = info_json['name
'] 
 154                 'https
://thumbnailer
.mixcloud
.com
/unsafe
/600x600
/', 
 155                 try_get(info_json, lambda x: x['picture
']['urlRoot
'], compat_str)) 
 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
']) 
 159             view_count = int_or_none(try_get(info_json, lambda x: x['plays
'])) 
 161             stream_info = info_json['streamInfo
'] 
 164             for url_key in ('url
', 'hlsUrl
', 'dashUrl
'): 
 165                 format_url = stream_info.get(url_key) 
 168                 decrypted = self._decrypt_xor_cipher(key, compat_b64decode(format_url)) 
 171                 if url_key == 'hlsUrl
': 
 172                     formats.extend(self._extract_m3u8_formats( 
 173                         decrypted, track_id, 'mp4
', entry_protocol='m3u8_native
', 
 174                         m3u8_id='hls
', fatal=False)) 
 175                 elif url_key == 'dashUrl
': 
 176                     formats.extend(self._extract_mpd_formats( 
 177                         decrypted, track_id, mpd_id='dash
', fatal=False)) 
 182                         'downloader_options
': { 
 183                             # Mixcloud starts throttling at >~5M 
 184                             'http_chunk_size
': 5242880, 
 187             self._sort_formats(formats) 
 193             'description
': description, 
 194             'thumbnail
': thumbnail, 
 195             'uploader
': uploader, 
 196             'uploader_id
': uploader_id, 
 197             'view_count
': view_count, 
 201 class MixcloudPlaylistBaseIE(InfoExtractor): 
 204     def _find_urls_in_page(self, page): 
 205         for url in re.findall(r'm
-play
-button m
-url
="(?P<url>[^"]+)"', page): 
 206             yield self.url_result( 
 207                 compat_urlparse.urljoin('https://www.mixcloud.com', clean_html(url)), 
 210     def _fetch_tracks_page(self, path, video_id, page_name, current_page, real_page_number=None): 
 211         real_page_number = real_page_number or current_page + 1 
 212         return self._download_webpage( 
 213             'https://www.mixcloud.com/%s/' % path, video_id, 
 214             note='Download %s (page %d)' % (page_name, current_page + 1), 
 215             errnote='Unable to download %s' % page_name, 
 216             query={'page': real_page_number, 'list': 'main', '_ajax': '1'}, 
 217             headers={'X-Requested-With': 'XMLHttpRequest'}) 
 219     def _tracks_page_func(self, page, video_id, page_name, current_page): 
 220         resp = self._fetch_tracks_page(page, video_id, page_name, current_page) 
 222         for item in self._find_urls_in_page(resp): 
 225     def _get_user_description(self, page_content): 
 226         return self._html_search_regex( 
 227             r'<div[^>]+class="profile
-bio
"[^>]*>(.+?)</div>', 
 228             page_content, 'user description', fatal=False) 
 231 class MixcloudUserIE(MixcloudPlaylistBaseIE): 
 232     _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/(?P<type>uploads|favorites|listens)?/?$' 
 233     IE_NAME = 'mixcloud:user' 
 236         'url': 'http://www.mixcloud.com/dholbach/', 
 238             'id': 'dholbach_uploads', 
 239             'title': 'Daniel Holbach (uploads)', 
 240             'description': 'md5:def36060ac8747b3aabca54924897e47', 
 242         'playlist_mincount': 11, 
 244         'url': 'http://www.mixcloud.com/dholbach/uploads/', 
 246             'id': 'dholbach_uploads', 
 247             'title': 'Daniel Holbach (uploads)', 
 248             'description': 'md5:def36060ac8747b3aabca54924897e47', 
 250         'playlist_mincount': 11, 
 252         'url': 'http://www.mixcloud.com/dholbach/favorites/', 
 254             'id': 'dholbach_favorites', 
 255             'title': 'Daniel Holbach (favorites)', 
 256             'description': 'md5:def36060ac8747b3aabca54924897e47', 
 259             'playlist_items': '1-100', 
 261         'playlist_mincount': 100, 
 263         'url': 'http://www.mixcloud.com/dholbach/listens/', 
 265             'id': 'dholbach_listens', 
 266             'title': 'Daniel Holbach (listens)', 
 267             'description': 'md5:def36060ac8747b3aabca54924897e47', 
 270             'playlist_items': '1-100', 
 272         'playlist_mincount': 100, 
 275     def _real_extract(self, url): 
 276         mobj = re.match(self._VALID_URL, url) 
 277         user_id = mobj.group('user') 
 278         list_type = mobj.group('type') 
 280         # if only a profile URL was supplied, default to download all uploads 
 281         if list_type is None: 
 282             list_type = 'uploads' 
 284         video_id = '%s_%s' % (user_id, list_type) 
 286         profile = self._download_webpage( 
 287             'https://www.mixcloud.com/%s/' % user_id, video_id, 
 288             note='Downloading user profile', 
 289             errnote='Unable to download user profile') 
 291         username = self._og_search_title(profile) 
 292         description = self._get_user_description(profile) 
 294         entries = OnDemandPagedList( 
 296                 self._tracks_page_func, 
 297                 '%s/%s' % (user_id, list_type), video_id, 'list of %s' % list_type), 
 300         return self.playlist_result( 
 301             entries, video_id, '%s (%s)' % (username, list_type), description) 
 304 class MixcloudPlaylistIE(MixcloudPlaylistBaseIE): 
 305     _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/playlists/(?P<playlist>[^/]+)/?$' 
 306     IE_NAME = 'mixcloud:playlist' 
 309         'url': 'https://www.mixcloud.com/RedBullThre3style/playlists/tokyo-finalists-2015/', 
 311             'id': 'RedBullThre3style_tokyo-finalists-2015', 
 312             'title': 'National Champions 2015', 
 313             'description': 'md5:6ff5fb01ac76a31abc9b3939c16243a3', 
 315         'playlist_mincount': 16, 
 317         'url': 'https://www.mixcloud.com/maxvibes/playlists/jazzcat-on-ness-radio/', 
 318         'only_matching': True, 
 321     def _real_extract(self, url): 
 322         mobj = re.match(self._VALID_URL, url) 
 323         user_id = mobj.group('user') 
 324         playlist_id = mobj.group('playlist') 
 325         video_id = '%s_%s' % (user_id, playlist_id) 
 327         webpage = self._download_webpage( 
 329             note='Downloading playlist page', 
 330             errnote='Unable to download playlist page') 
 332         title = self._html_search_regex( 
 333             r'<a[^>]+class="parent active
"[^>]*><b>\d+</b><span[^>]*>([^<]+)', 
 334             webpage, 'playlist title', 
 335             default=None) or self._og_search_title(webpage, fatal=False) 
 336         description = self._get_user_description(webpage) 
 338         entries = OnDemandPagedList( 
 340                 self._tracks_page_func, 
 341                 '%s/playlists/%s' % (user_id, playlist_id), video_id, 'tracklist'), 
 344         return self.playlist_result(entries, video_id, title, description) 
 347 class MixcloudStreamIE(MixcloudPlaylistBaseIE): 
 348     _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<id>[^/]+)/stream/?$' 
 349     IE_NAME = 'mixcloud:stream' 
 352         'url': 'https://www.mixcloud.com/FirstEar/stream/', 
 355             'title': 'First Ear', 
 356             'description': 'Curators of good music\nfirstearmusic.com', 
 358         'playlist_mincount': 192, 
 361     def _real_extract(self, url): 
 362         user_id = self._match_id(url) 
 364         webpage = self._download_webpage(url, user_id) 
 369         def _handle_page(page): 
 370             entries.extend(self._find_urls_in_page(page)) 
 371             return self._search_regex( 
 372                 r'm-next-page-url="([^
"]+)"', page, 
 373                 'next page URL
', default=None) 
 375         next_page_url = _handle_page(webpage) 
 377         for idx in itertools.count(0): 
 378             if not next_page_url or prev_page_url == next_page_url: 
 381             prev_page_url = next_page_url 
 382             current_page = int(self._search_regex( 
 383                 r'\?page
=(\d
+)', next_page_url, 'next page number
')) 
 385             next_page_url = _handle_page(self._fetch_tracks_page( 
 386                 '%s/stream
' % user_id, user_id, 'stream
', idx, 
 387                 real_page_number=current_page)) 
 389         username = self._og_search_title(webpage) 
 390         description = self._get_user_description(webpage) 
 392         return self.playlist_result(entries, user_id, username, description)