## API ### kg源 - 增加歌单歌曲flac24bit显示 - 修复酷狗码只能导入500首的问题 - 更新排行榜 ### mg源 - 修复搜索不显示时长的问题 - 修复评论加载失败的问题 - 更新排行榜 ### tx源 - 增加热门评论图片显示 - 更新排行榜 ### wy源 - 更新排行榜 ## 其他 - 添加自定义源zlib模块的支持 --------- Co-authored-by: 彭狸花喵 <94218819+helloplhm-qwq@users.noreply.github.com> Co-authored-by: lyswhut <lyswhut@qq.com>
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
import { httpFetch } from '../../request'
|
|
|
|
export default {
|
|
getPic(songInfo) {
|
|
const requestObj = httpFetch(
|
|
'http://media.store.kugou.com/v1/get_res_privilege',
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
'KG-RC': 1,
|
|
'KG-THash': 'expand_search_manager.cpp:852736169:451',
|
|
'User-Agent': 'KuGou2012-9020-ExpandSearchManager',
|
|
},
|
|
body: {
|
|
appid: 1001,
|
|
area_code: '1',
|
|
behavior: 'play',
|
|
clientver: '9020',
|
|
need_hash_offset: 1,
|
|
relate: 1,
|
|
resource: [
|
|
{
|
|
album_audio_id:
|
|
songInfo.songmid.length == 32 // 修复歌曲ID存储变更导致图片获取失败的问题
|
|
? songInfo.audioId.split('_')[0]
|
|
: songInfo.songmid,
|
|
album_id: songInfo.albumId,
|
|
hash: songInfo.hash,
|
|
id: 0,
|
|
name: `${songInfo.singer} - ${songInfo.name}.mp3`,
|
|
type: 'audio',
|
|
},
|
|
],
|
|
token: '',
|
|
userid: 2626431536,
|
|
vip: 1,
|
|
},
|
|
},
|
|
)
|
|
return requestObj.promise.then(({ body }) => {
|
|
if (body.error_code !== 0) return Promise.reject('图片获取失败')
|
|
let info = body.data[0].info
|
|
const img = info.imgsize ? info.image.replace('{size}', info.imgsize[0]) : info.image
|
|
if (!img) return Promise.reject('Pic get failed')
|
|
return img
|
|
})
|
|
},
|
|
}
|