You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
const { resourceTypeMap } = require('../util/config.json')
|
|
// 评论
|
|
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'pc'
|
|
query.type = resourceTypeMap[query.type]
|
|
const threadId = query.type + query.id
|
|
const pageSize = query.pageSize || 20
|
|
const pageNo = query.pageNo || 1
|
|
let sortType = Number(query.sortType) || 99
|
|
if (sortType === 1) {
|
|
sortType = 99
|
|
}
|
|
let cursor = ''
|
|
switch (sortType) {
|
|
case 99:
|
|
cursor = (pageNo - 1) * pageSize
|
|
break
|
|
case 2:
|
|
cursor = 'normalHot#' + (pageNo - 1) * pageSize
|
|
break
|
|
case 3:
|
|
cursor = query.cursor || '0'
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
const data = {
|
|
threadId: threadId,
|
|
pageNo,
|
|
showInner: query.showInner || true,
|
|
pageSize,
|
|
cursor: cursor,
|
|
sortType: sortType, //99:按推荐排序,2:按热度排序,3:按时间排序
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/v2/resource/comments`,
|
|
data,
|
|
{
|
|
crypto: 'eapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
url: '/api/v2/resource/comments',
|
|
},
|
|
)
|
|
}
|