[qqmusic] Add localized name
[youtube-dl] / youtube_dl / extractor / qqmusic.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import random
5 import time
6 import re
7
8 from .common import InfoExtractor
9 from ..utils import (
10     strip_jsonp,
11     unescapeHTML,
12     clean_html,
13 )
14 from ..compat import compat_urllib_request
15
16
17 class QQMusicIE(InfoExtractor):
18     IE_NAME = 'qqmusic'
19     IE_DESC = 'QQ音乐'
20     _VALID_URL = r'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
21     _TESTS = [{
22         'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
23         'md5': '9ce1c1c8445f561506d2e3cfb0255705',
24         'info_dict': {
25             'id': '004295Et37taLD',
26             'ext': 'mp3',
27             'title': '可惜没如果',
28             'upload_date': '20141227',
29             'creator': '林俊杰',
30             'description': 'md5:d327722d0361576fde558f1ac68a7065',
31             'thumbnail': 're:^https?://.*\.jpg$',
32         }
33     }, {
34         'note': 'There is no mp3-320 version of this song.',
35         'url': 'http://y.qq.com/#type=song&mid=004MsGEo3DdNxV',
36         'md5': 'fa3926f0c585cda0af8fa4f796482e3e',
37         'info_dict': {
38             'id': '004MsGEo3DdNxV',
39             'ext': 'mp3',
40             'title': '如果',
41             'upload_date': '20050626',
42             'creator': '李季美',
43             'description': 'md5:46857d5ed62bc4ba84607a805dccf437',
44             'thumbnail': 're:^https?://.*\.jpg$',
45         }
46     }]
47
48     _FORMATS = {
49         'mp3-320': {'prefix': 'M800', 'ext': 'mp3', 'preference': 40, 'abr': 320},
50         'mp3-128': {'prefix': 'M500', 'ext': 'mp3', 'preference': 30, 'abr': 128},
51         'm4a': {'prefix': 'C200', 'ext': 'm4a', 'preference': 10}
52     }
53
54     # Reference: m_r_GetRUin() in top_player.js
55     # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
56     @staticmethod
57     def m_r_get_ruin():
58         curMs = int(time.time() * 1000) % 1000
59         return int(round(random.random() * 2147483647) * curMs % 1E10)
60
61     def _real_extract(self, url):
62         mid = self._match_id(url)
63
64         detail_info_page = self._download_webpage(
65             'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid,
66             mid, note='Download song detail info',
67             errnote='Unable to get song detail info', encoding='gbk')
68
69         song_name = self._html_search_regex(
70             r"songname:\s*'([^']+)'", detail_info_page, 'song name')
71
72         publish_time = self._html_search_regex(
73             r'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page,
74             'publish time', default=None)
75         if publish_time:
76             publish_time = publish_time.replace('-', '')
77
78         singer = self._html_search_regex(
79             r"singer:\s*'([^']+)", detail_info_page, 'singer', default=None)
80
81         lrc_content = self._html_search_regex(
82             r'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
83             detail_info_page, 'LRC lyrics', default=None)
84         if lrc_content:
85             lrc_content = lrc_content.replace('\\n', '\n')
86
87         thumbnail_url = None
88         albummid = self._search_regex(
89             [r'albummid:\'([0-9a-zA-Z]+)\'', r'"albummid":"([0-9a-zA-Z]+)"'],
90             detail_info_page, 'album mid', default=None)
91         if albummid:
92             thumbnail_url = "http://i.gtimg.cn/music/photo/mid_album_500/%s/%s/%s.jpg" \
93                             % (albummid[-2:-1], albummid[-1], albummid)
94
95         guid = self.m_r_get_ruin()
96
97         vkey = self._download_json(
98             'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid,
99             mid, note='Retrieve vkey', errnote='Unable to get vkey',
100             transform_source=strip_jsonp)['key']
101
102         formats = []
103         for format_id, details in self._FORMATS.items():
104             formats.append({
105                 'url': 'http://cc.stream.qqmusic.qq.com/%s%s.%s?vkey=%s&guid=%s&fromtag=0'
106                        % (details['prefix'], mid, details['ext'], vkey, guid),
107                 'format': format_id,
108                 'format_id': format_id,
109                 'preference': details['preference'],
110                 'abr': details.get('abr'),
111             })
112         self._check_formats(formats, mid)
113         self._sort_formats(formats)
114
115         return {
116             'id': mid,
117             'formats': formats,
118             'title': song_name,
119             'upload_date': publish_time,
120             'creator': singer,
121             'description': lrc_content,
122             'thumbnail': thumbnail_url,
123         }
124
125
126 class QQPlaylistBaseIE(InfoExtractor):
127     @staticmethod
128     def qq_static_url(category, mid):
129         return 'http://y.qq.com/y/static/%s/%s/%s/%s.html' % (category, mid[-2], mid[-1], mid)
130
131     @classmethod
132     def get_entries_from_page(cls, page):
133         entries = []
134
135         for item in re.findall(r'class="data"[^<>]*>([^<>]+)</', page):
136             song_mid = unescapeHTML(item).split('|')[-5]
137             entries.append(cls.url_result(
138                 'http://y.qq.com/#type=song&mid=' + song_mid, 'QQMusic',
139                 song_mid))
140
141         return entries
142
143
144 class QQMusicSingerIE(QQPlaylistBaseIE):
145     IE_NAME = 'qqmusic:singer'
146     _VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
147     _TEST = {
148         'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
149         'info_dict': {
150             'id': '001BLpXF2DyJe2',
151             'title': '林俊杰',
152             'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
153         },
154         'playlist_count': 12,
155     }
156
157     def _real_extract(self, url):
158         mid = self._match_id(url)
159
160         singer_page = self._download_webpage(
161             self.qq_static_url('singer', mid), mid, 'Download singer page')
162
163         entries = self.get_entries_from_page(singer_page)
164
165         singer_name = self._html_search_regex(
166             r"singername\s*:\s*'([^']+)'", singer_page, 'singer name',
167             default=None)
168
169         singer_id = self._html_search_regex(
170             r"singerid\s*:\s*'([0-9]+)'", singer_page, 'singer id',
171             default=None)
172
173         singer_desc = None
174
175         if singer_id:
176             req = compat_urllib_request.Request(
177                 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_get_singer_desc.fcg?utf8=1&outCharset=utf-8&format=xml&singerid=%s' % singer_id)
178             req.add_header(
179                 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
180             singer_desc_page = self._download_xml(
181                 req, mid, 'Donwload singer description XML')
182
183             singer_desc = singer_desc_page.find('./data/info/desc').text
184
185         return self.playlist_result(entries, mid, singer_name, singer_desc)
186
187
188 class QQMusicAlbumIE(QQPlaylistBaseIE):
189     IE_NAME = 'qqmusic:album'
190     _VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
191
192     _TESTS = [{
193         'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1',
194         'info_dict': {
195             'id': '000gXCTb2AhRR1',
196             'title': '我们都是这样长大的',
197             'description': 'md5:179c5dce203a5931970d306aa9607ea6',
198         },
199         'playlist_count': 4,
200     }, {
201         'url': 'http://y.qq.com/#type=album&mid=002Y5a3b3AlCu3',
202         'info_dict': {
203             'id': '002Y5a3b3AlCu3',
204             'title': '그리고...',
205             'description': 'md5:a48823755615508a95080e81b51ba729',
206         },
207         'playlist_count': 8,
208     }]
209
210     def _real_extract(self, url):
211         mid = self._match_id(url)
212
213         album = self._download_json(
214             'http://i.y.qq.com/v8/fcg-bin/fcg_v8_album_info_cp.fcg?albummid=%s&format=json' % mid,
215             mid, 'Download album page')['data']
216
217         entries = [
218             self.url_result(
219                 'http://y.qq.com/#type=song&mid=' + song['songmid'], 'QQMusic', song['songmid']
220             ) for song in album['list']
221         ]
222         album_name = album.get('name')
223         album_detail = album.get('desc')
224         if album_detail is not None:
225             album_detail = album_detail.strip()
226
227         return self.playlist_result(entries, mid, album_name, album_detail)
228
229
230 class QQMusicToplistIE(QQPlaylistBaseIE):
231     IE_NAME = 'qqmusic:toplist'
232     _VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
233
234     _TESTS = [{
235         'url': 'http://y.qq.com/#type=toplist&p=global_123',
236         'info_dict': {
237             'id': 'global_123',
238             'title': '美国iTunes榜',
239         },
240         'playlist_count': 10,
241     }, {
242         'url': 'http://y.qq.com/#type=toplist&p=top_3',
243         'info_dict': {
244             'id': 'top_3',
245             'title': 'QQ音乐巅峰榜·欧美',
246             'description': 'QQ音乐巅峰榜·欧美根据用户收听行为自动生成,集结当下最流行的欧美新歌!:更新时间:每周四22点|统'
247                            '计周期:一周(上周四至本周三)|统计对象:三个月内发行的欧美歌曲|统计数量:100首|统计算法:根据'
248                            '歌曲在一周内的有效播放次数,由高到低取前100名(同一歌手最多允许5首歌曲同时上榜)|有效播放次数:'
249                            '登录用户完整播放一首歌曲,记为一次有效播放;同一用户收听同一首歌曲,每天记录为1次有效播放'
250         },
251         'playlist_count': 100,
252     }, {
253         'url': 'http://y.qq.com/#type=toplist&p=global_106',
254         'info_dict': {
255             'id': 'global_106',
256             'title': '韩国Mnet榜',
257         },
258         'playlist_count': 50,
259     }]
260
261     def _real_extract(self, url):
262         list_id = self._match_id(url)
263
264         list_type, num_id = list_id.split("_")
265
266         toplist_json = self._download_json(
267             'http://i.y.qq.com/v8/fcg-bin/fcg_v8_toplist_cp.fcg?type=%s&topid=%s&format=json'
268             % (list_type, num_id),
269             list_id, 'Download toplist page')
270
271         entries = [
272             self.url_result(
273                 'http://y.qq.com/#type=song&mid=' + song['data']['songmid'], 'QQMusic', song['data']['songmid']
274             ) for song in toplist_json['songlist']
275         ]
276
277         topinfo = toplist_json.get('topinfo', {})
278         list_name = topinfo.get('ListName')
279         list_description = topinfo.get('info')
280         return self.playlist_result(entries, list_id, list_name, list_description)
281
282
283 class QQMusicPlaylistIE(QQPlaylistBaseIE):
284     IE_NAME = 'qqmusic:playlist'
285     _VALID_URL = r'http://y\.qq\.com/#type=taoge&id=(?P<id>[0-9]+)'
286
287     _TEST = {
288         'url': 'http://y.qq.com/#type=taoge&id=3462654915',
289         'info_dict': {
290             'id': '3462654915',
291             'title': '韩国5月新歌精选下旬',
292             'description': 'md5:d2c9d758a96b9888cf4fe82f603121d4',
293         },
294         'playlist_count': 40,
295     }
296
297     def _real_extract(self, url):
298         list_id = self._match_id(url)
299
300         list_json = self._download_json(
301             'http://i.y.qq.com/qzone-music/fcg-bin/fcg_ucc_getcdinfo_byids_cp.fcg?type=1&json=1&utf8=1&onlysong=0&disstid=%s'
302             % list_id, list_id, 'Download list page',
303             transform_source=strip_jsonp)['cdlist'][0]
304
305         entries = [
306             self.url_result(
307                 'http://y.qq.com/#type=song&mid=' + song['songmid'], 'QQMusic', song['songmid']
308             ) for song in list_json['songlist']
309         ]
310
311         list_name = list_json.get('dissname')
312         list_description = clean_html(unescapeHTML(list_json.get('desc')))
313         return self.playlist_result(entries, list_id, list_name, list_description)