mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-06 23:52:07 +08:00
change router export mode
This commit is contained in:
70
module/comment.js
Normal file
70
module/comment.js
Normal file
@ -0,0 +1,70 @@
|
||||
// module.exports = (req, res, createWebAPIRequest, request) => {
|
||||
// const cookie = req.get('Cookie') ? req.get('Cookie') : ''
|
||||
// const id = req.query.id
|
||||
// const action = req.query.action == 1 ? 'add' : 'delete'
|
||||
// const typeMap = {
|
||||
// 0: 'R_SO_4_', //歌曲
|
||||
// 1: 'R_MV_5_', //mv
|
||||
// 2: 'A_PL_0_', //歌单
|
||||
// 3: 'R_AL_3_', //专辑
|
||||
// 4: 'A_DJ_1_', //电台
|
||||
// 5: 'R_VI_62_' // 视频
|
||||
// }
|
||||
// const type = typeMap[req.query.type]
|
||||
|
||||
// let data = {
|
||||
// threadId: `${type}${id}`,
|
||||
// csrf_token: ''
|
||||
// }
|
||||
|
||||
// if (action == 'add') {
|
||||
// data = {
|
||||
// ...data,
|
||||
// content: req.query.content
|
||||
// }
|
||||
// }
|
||||
|
||||
// if (action == 'delete') {
|
||||
// data = {
|
||||
// ...data,
|
||||
// commentId: req.query.commentId
|
||||
// }
|
||||
// }
|
||||
|
||||
// const url = `/weapi/resource/comments/${action}`
|
||||
|
||||
// // console.log({ url, data })
|
||||
// createWebAPIRequest(
|
||||
// 'music.163.com',
|
||||
// url,
|
||||
// 'POST',
|
||||
// data,
|
||||
// cookie,
|
||||
// music_req => res.send(music_req),
|
||||
// err => res.status(502).send('fetch error')
|
||||
// )
|
||||
// }
|
||||
|
||||
module.exports = (query, request) => {
|
||||
query.cookie = 'os=pc;' + query.cookie
|
||||
query.action = (query.action == 1 ? 'add' : 'delete')
|
||||
query.type = {
|
||||
0: 'R_SO_4_', // 歌曲
|
||||
1: 'R_MV_5_', // mv
|
||||
2: 'A_PL_0_', // 歌单
|
||||
3: 'R_AL_3_', // 专辑
|
||||
4: 'A_DJ_1_', // 电台,
|
||||
5: 'R_VI_62_' // 视频
|
||||
}[query.type]
|
||||
const data = {
|
||||
threadId: `${query.type}${query.id}`
|
||||
}
|
||||
if(action == 'add')
|
||||
data.content = query.content
|
||||
else if(action == 'delete')
|
||||
data.commentId = query.commentId
|
||||
return request(
|
||||
'POST', `http://music.163.com/weapi/resource/comments/${query.action}`, data,
|
||||
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user