mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
chore: remove netease api code from repo
This commit is contained in:
parent
e1f1d18aa4
commit
4bce2c7071
228 changed files with 1 additions and 20219 deletions
|
|
@ -1,38 +0,0 @@
|
|||
// 相关歌单
|
||||
|
||||
module.exports = (query, request) => {
|
||||
return request(
|
||||
'GET',
|
||||
`https://music.163.com/playlist?id=${query.id}`,
|
||||
{},
|
||||
{
|
||||
ua: 'pc',
|
||||
cookie: query.cookie,
|
||||
proxy: query.proxy,
|
||||
realIP: query.realIP,
|
||||
},
|
||||
).then((response) => {
|
||||
try {
|
||||
const pattern = /<div class="cver u-cover u-cover-3">[\s\S]*?<img src="([^"]+)">[\s\S]*?<a class="sname f-fs1 s-fc0" href="([^"]+)"[^>]*>([^<]+?)<\/a>[\s\S]*?<a class="nm nm f-thide s-fc3" href="([^"]+)"[^>]*>([^<]+?)<\/a>/g;
|
||||
let result,
|
||||
playlists = [];
|
||||
while ((result = pattern.exec(response.body)) != null) {
|
||||
playlists.push({
|
||||
creator: {
|
||||
userId: result[4].slice('/user/home?id='.length),
|
||||
nickname: result[5],
|
||||
},
|
||||
coverImgUrl: result[1].slice(0, -'?param=50y50'.length),
|
||||
name: result[3],
|
||||
id: result[2].slice('/playlist?id='.length),
|
||||
});
|
||||
}
|
||||
response.body = { code: 200, playlists: playlists };
|
||||
return response;
|
||||
} catch (err) {
|
||||
response.status = 500;
|
||||
response.body = { code: 500, msg: err.stack };
|
||||
return Promise.reject(response);
|
||||
}
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue