* 修复wy源热搜词失效 * 更新kg最新评论接口(cmtlist->newest) & kg源歌手相关 --------- Co-authored-by: Folltoshe <folltoshe@foxmail.com>
60 lines
2.3 KiB
JavaScript
60 lines
2.3 KiB
JavaScript
import { httpFetch } from '../../request'
|
|
// import { decodeName, formatPlayTime, sizeFormate } from '../../index'
|
|
// import { signatureParams } from './util'
|
|
import { getMusicInfosByList } from './musicInfo'
|
|
|
|
export default {
|
|
filterAlbum(rawList) {
|
|
let returnList = []
|
|
rawList.forEach((albumInfo) => {
|
|
returnList.push({
|
|
name: albumInfo.albumname,
|
|
author: albumInfo.singername,
|
|
img: albumInfo.replaceAll('{size}', '480'),
|
|
album_id: albumInfo.albumid,
|
|
})
|
|
})
|
|
},
|
|
async getSingerInfo(singerid) {
|
|
if (singerid == 0) throw new Error('歌手不存在') // kg源某些歌曲在歌手没被kg收录时返回的歌手id为0
|
|
const requestObj = httpFetch(`http://mobiles.kugou.com/api/v5/singer/info?singerid=${singerid}`)
|
|
let { body, statusCode } = await requestObj.promise
|
|
if (statusCode !== 200) throw new Error('获取歌手信息失败')
|
|
return {
|
|
source: 'kg',
|
|
singerid,
|
|
info: {
|
|
name: body.data.singername,
|
|
desc: body.data.intro,
|
|
img: body.data.imgurl.replace('{size}', '480')
|
|
}
|
|
}
|
|
},
|
|
async getSingerSongList(singerid, page, limit) {
|
|
if (singerid == 0) throw new Error('歌手不存在') // kg源某些歌曲在歌手没被kg收录时返回的歌手id为0
|
|
const requestObj = httpFetch(`http://mobiles.kugou.com/api/v5/singer/song?singerid=${singerid}&page=${page}&pagesize=${limit}`)
|
|
let { body, statusCode } = await requestObj.promise
|
|
if (statusCode !== 200) throw new Error('获取歌手歌曲列表失败')
|
|
let listData = await getMusicInfosByList(body.data.info)
|
|
return {
|
|
source: 'kg',
|
|
list: listData,
|
|
id: `kg__singer_${singerid}`,
|
|
singerid,
|
|
total: body.data.total,
|
|
allPage: Math.ceil(body.data.total / limit),
|
|
}
|
|
},
|
|
async getSingerAlbumList(singerid, page, limit) {
|
|
if (singerid == 0) throw new Error('歌手不存在') // kg源某些歌曲在歌手没被kg收录时返回的歌手id为0
|
|
const requestObj = httpFetch(`http://mobiles.kugou.com/api/v5/singer/song?singerid=${singerid}&page=${page}&pagesize=${limit}`)
|
|
let { body, statusCode } = await requestObj.promise
|
|
if (statusCode !== 200) throw new Error('获取歌手专辑列表失败')
|
|
return {
|
|
source: 'kg',
|
|
albums: this.filterAlbum(body.data.info),
|
|
singerid,
|
|
}
|
|
}
|
|
}
|