]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/qqmusic.py
[qqmusic] Fix code formatting
[yt-dlp.git] / youtube_dl / extractor / qqmusic.py
CommitLineData
5d98908b
YCH
1# coding: utf-8
2from __future__ import unicode_literals
3
a2043572
YCH
4import random
5import time
8afff9f8 6import re
a2043572 7
5d98908b 8from .common import InfoExtractor
5edea45f
YCH
9from ..utils import (
10 strip_jsonp,
11 unescapeHTML,
41333b97 12 js_to_json,
5edea45f 13)
8afff9f8 14from ..compat import compat_urllib_request
5d98908b 15
5d98908b
YCH
16
17class QQMusicIE(InfoExtractor):
18 _VALID_URL = r'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
19 _TESTS = [{
20 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
21 'md5': 'bed90b6db2a7a7a7e11bc585f471f63a',
22 'info_dict': {
23 'id': '004295Et37taLD',
24 'ext': 'm4a',
25 'title': '可惜没如果',
26 'upload_date': '20141227',
27 'creator': '林俊杰',
c9a77969 28 'description': 'md5:4348ff1dd24036906baa7b6f973f8d30',
5d98908b
YCH
29 }
30 }]
31
a2043572
YCH
32 # Reference: m_r_GetRUin() in top_player.js
33 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
34 @staticmethod
35 def m_r_get_ruin():
36 curMs = int(time.time() * 1000) % 1000
37 return int(round(random.random() * 2147483647) * curMs % 1E10)
38
5d98908b
YCH
39 def _real_extract(self, url):
40 mid = self._match_id(url)
41
42 detail_info_page = self._download_webpage(
43 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid,
8afff9f8 44 mid, note='Download song detail info',
c9a77969 45 errnote='Unable to get song detail info', encoding='gbk')
5d98908b
YCH
46
47 song_name = self._html_search_regex(
48 r"songname:\s*'([^']+)'", detail_info_page, 'song name')
49
50 publish_time = self._html_search_regex(
51 r'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page,
a685ae51
YCH
52 'publish time', default=None)
53 if publish_time:
54 publish_time = publish_time.replace('-', '')
5d98908b
YCH
55
56 singer = self._html_search_regex(
a685ae51
YCH
57 r"singer:\s*'([^']+)", detail_info_page, 'singer', default=None)
58
59 lrc_content = self._html_search_regex(
60 r'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
61 detail_info_page, 'LRC lyrics', default=None)
5d98908b 62
a2043572
YCH
63 guid = self.m_r_get_ruin()
64
5d98908b
YCH
65 vkey = self._download_json(
66 'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid,
67 mid, note='Retrieve vkey', errnote='Unable to get vkey',
68 transform_source=strip_jsonp)['key']
69 song_url = 'http://cc.stream.qqmusic.qq.com/C200%s.m4a?vkey=%s&guid=%s&fromtag=0' % (mid, vkey, guid)
70
71 return {
72 'id': mid,
73 'url': song_url,
74 'title': song_name,
75 'upload_date': publish_time,
76 'creator': singer,
a685ae51 77 'description': lrc_content,
5d98908b 78 }
8afff9f8
YCH
79
80
5edea45f
YCH
81class QQPlaylistBaseIE(InfoExtractor):
82 @staticmethod
83 def qq_static_url(category, mid):
84 return 'http://y.qq.com/y/static/%s/%s/%s/%s.html' % (category, mid[-2], mid[-1], mid)
85
5edea45f
YCH
86 @classmethod
87 def get_entries_from_page(cls, page):
88 entries = []
89
90 for item in re.findall(r'class="data"[^<>]*>([^<>]+)</', page):
91 song_mid = unescapeHTML(item).split('|')[-5]
92 entries.append(cls.url_result(
a685ae51
YCH
93 'http://y.qq.com/#type=song&mid=' + song_mid, 'QQMusic',
94 song_mid))
5edea45f
YCH
95
96 return entries
97
98
99class QQMusicSingerIE(QQPlaylistBaseIE):
8afff9f8
YCH
100 _VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
101 _TEST = {
102 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
103 'info_dict': {
104 'id': '001BLpXF2DyJe2',
105 'title': '林俊杰',
106 'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
107 },
108 'playlist_count': 12,
109 }
110
111 def _real_extract(self, url):
112 mid = self._match_id(url)
113
114 singer_page = self._download_webpage(
5edea45f 115 self.qq_static_url('singer', mid), mid, 'Download singer page')
8afff9f8 116
5edea45f 117 entries = self.get_entries_from_page(singer_page)
8afff9f8
YCH
118
119 singer_name = self._html_search_regex(
120 r"singername\s*:\s*'([^']+)'", singer_page, 'singer name',
121 default=None)
122
123 singer_id = self._html_search_regex(
124 r"singerid\s*:\s*'([0-9]+)'", singer_page, 'singer id',
125 default=None)
126
127 singer_desc = None
128
129 if singer_id:
130 req = compat_urllib_request.Request(
131 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_get_singer_desc.fcg?utf8=1&outCharset=utf-8&format=xml&singerid=%s' % singer_id)
132 req.add_header(
133 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
134 singer_desc_page = self._download_xml(
5edea45f 135 req, mid, 'Donwload singer description XML')
8afff9f8
YCH
136
137 singer_desc = singer_desc_page.find('./data/info/desc').text
138
139 return self.playlist_result(entries, mid, singer_name, singer_desc)
5edea45f
YCH
140
141
142class QQMusicAlbumIE(QQPlaylistBaseIE):
143 _VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
144
145 _TEST = {
146 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1&play=0',
147 'info_dict': {
148 'id': '000gXCTb2AhRR1',
149 'title': '我们都是这样长大的',
150 'description': 'md5:d216c55a2d4b3537fe4415b8767d74d6',
151 },
152 'playlist_count': 4,
153 }
154
155 def _real_extract(self, url):
156 mid = self._match_id(url)
157
158 album_page = self._download_webpage(
159 self.qq_static_url('album', mid), mid, 'Download album page')
160
161 entries = self.get_entries_from_page(album_page)
162
163 album_name = self._html_search_regex(
164 r"albumname\s*:\s*'([^']+)',", album_page, 'album name',
165 default=None)
166
167 album_detail = self._html_search_regex(
168 r'<div class="album_detail close_detail">\s*<p>((?:[^<>]+(?:<br />)?)+)</p>',
169 album_page, 'album details', default=None)
170
171 return self.playlist_result(entries, mid, album_name, album_detail)
41333b97 172
173
174class QQMusicToplistIE(QQPlaylistBaseIE):
175 _VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
176
177 _TESTS = [{
178 'url': 'http://y.qq.com/#type=toplist&p=global_12',
179 'info_dict': {
180 'id': 'global_12',
181 'title': 'itunes榜',
182 },
183 'playlist_count': 10,
184 }, {
185 'url': 'http://y.qq.com/#type=toplist&p=top_6',
186 'info_dict': {
187 'id': 'top_6',
188 'title': 'QQ音乐巅峰榜·欧美',
189 },
190 'playlist_count': 100,
191 }]
192
193 @staticmethod
194 def strip_qq_jsonp(code):
195 return js_to_json(re.sub(r'^MusicJsonCallback\((.*?)\)/\*.+?\*/$', r'\1', code))
196
197 def _real_extract(self, url):
198 list_id = self._match_id(url)
199
200 list_type = list_id.split("_")[0]
201 num_id = list_id.split("_")[1]
202
b480e787 203 list_page = self._download_webpage(
204 "http://y.qq.com/y/static/toplist/index/%s.html" % list_id,
205 list_id, 'Download toplist page')
41333b97 206 entries = []
207 if list_type == 'top':
208 list = self._download_json(
209 "http://y.qq.com/y/static/toplist/json/top/%s/1.js" % num_id,
b480e787 210 list_id, note='Retrieve toplist json', errnote='Unable to get toplist json',
211 transform_source=self.strip_qq_jsonp)
41333b97 212
213 for song in list['l']:
214 s = song['s']
215 song_mid = s.split("|")[20]
216 entries.append(self.url_result(
217 'http://y.qq.com/#type=song&mid=' + song_mid, 'QQMusic',
218 song_mid))
219
220 elif list_type == 'global':
221 entries = self.get_entries_from_page(list_page)
222
223 list_name = self._html_search_regex(
224 r'<h2 id="top_name">([^\']+)</h2>', list_page, 'top list name',
225 default=None)
226 list_desc = None
227
b480e787 228 return self.playlist_result(entries, list_id, list_name, list_desc)
229