mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2026-08-12 08:50:38 +00:00
Merge branch 'main' into feat/new-style
This commit is contained in:
commit
4bac2d56ce
17
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
17
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
@ -14,15 +14,16 @@ body:
|
||||
id: terms
|
||||
attributes:
|
||||
label: 确认事项
|
||||
description: 在提交功能请求前,请确认以下事项
|
||||
description: |
|
||||
在提交功能请求前,请确认以下事项
|
||||
|
||||
- 我已经搜索了现有的issues,确认这不是重复请求
|
||||
- 我已经查看了项目文档
|
||||
- 该项目符合该项目的目标和范围
|
||||
- 我确认我提供的接口请求是合理且有意义的
|
||||
|
||||
options:
|
||||
- label: 我已经搜索了现有的issues,确认这不是重复请求
|
||||
required: true
|
||||
- label: 我已经查看了项目文档
|
||||
required: true
|
||||
- label: 该项目符合该项目的目标和范围
|
||||
required: true
|
||||
- label: 我确认我提供的接口请求是合理且有意义的
|
||||
- label: 我已确认以上事项
|
||||
required: true
|
||||
|
||||
|
||||
|
||||
26
.github/workflows/issue-manage.yml
vendored
26
.github/workflows/issue-manage.yml
vendored
@ -6,8 +6,6 @@ permissions:
|
||||
on:
|
||||
issues:
|
||||
types: [opened, labeled]
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
welcome-new-issues:
|
||||
@ -28,30 +26,6 @@ jobs:
|
||||
- 💬 加入[QQ交流群](https://qm.qq.com/q/TpeP9Uv2yk)
|
||||
- 🔍 搜索[现有issues](https://github.com/neteasecloudmusicapienhanced/api-enhanced/issues) 看是否有类似问题
|
||||
|
||||
handle-help-wanted:
|
||||
if: contains(github.event.issue.labels.*.name, 'question')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Add help resources
|
||||
uses: peter-evans/create-or-update-comment@v5
|
||||
with:
|
||||
issue-number: ${{ github.event.issue.number }}
|
||||
body: |
|
||||
🆘 需要帮助?
|
||||
|
||||
这里有一些可能对您有用的资源:
|
||||
|
||||
📚 **文档资源**
|
||||
- [项目文档](https://neteasecloudmusicapienhanced.js.org)
|
||||
|
||||
🔍 **常见问题**
|
||||
- 搜索[已关闭的issues](https://github.com/neteasecloudmusicapienhanced/api-enhanced/issues?q=is%3Aissue+is%3Aclosed) 看看是否有类似的问题已经被解答。
|
||||
|
||||
💬 **即时帮助**
|
||||
- 加入QQ群:https://qm.qq.com/q/TpeP9Uv2yk
|
||||
|
||||
如果以上资源无法解决您的问题,请提供更多详细信息,我们会尽快为您解答!
|
||||
|
||||
stale-issues:
|
||||
if: github.event.action == 'opened'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
59
.github/workflows/opencode-auto.yml
vendored
Normal file
59
.github/workflows/opencode-auto.yml
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
name: OpenCode Automation
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened, ready_for_review]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
concurrency:
|
||||
group: auto-${{ github.event.issue.number || github.event.pull_request.number }}
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
automate:
|
||||
# 排除机器人自己的触发,防止自我循环
|
||||
if: |
|
||||
github.actor != 'takanashi-hoshino-agent[bot]' &&
|
||||
github.actor != 'github-actions[bot]' &&
|
||||
github.actor != 'opencode-agent[bot]'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Generate bot token
|
||||
id: token
|
||||
uses: actions/create-github-app-token@v1
|
||||
with:
|
||||
app-id: ${{ secrets.APP_ID }}
|
||||
private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
||||
owner: ${{ github.repository_owner }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
token: ${{ steps.token.outputs.token }}
|
||||
fetch-depth: 0
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: 22
|
||||
|
||||
- name: Install opencode
|
||||
run: npm i -g opencode-ai@latest
|
||||
|
||||
- name: Run automation
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
||||
MODEL: opencode/deepseek-v4-flash-free
|
||||
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
|
||||
ISSUE_PROMPT: ${{ secrets.OPENCODE_PROMPT }}
|
||||
PR_PROMPT: |
|
||||
${{ secrets.OPENCODE_PROMPT }}
|
||||
${{ secrets.PR_REVIEW_PROMPT }}
|
||||
run: node scripts/opencode-automation.mjs
|
||||
12
.github/workflows/opencode.yml
vendored
12
.github/workflows/opencode.yml
vendored
@ -5,8 +5,6 @@ on:
|
||||
types: [created]
|
||||
pull_request_review_comment:
|
||||
types: [created]
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@ -16,10 +14,13 @@ permissions:
|
||||
jobs:
|
||||
bot:
|
||||
if: |
|
||||
contains(github.event.comment.body, ' /oc') ||
|
||||
(contains(github.event.comment.body, ' /oc') ||
|
||||
startsWith(github.event.comment.body, '/oc') ||
|
||||
contains(github.event.comment.body, ' /opencode') ||
|
||||
startsWith(github.event.comment.body, '/opencode')
|
||||
startsWith(github.event.comment.body, '/opencode')) &&
|
||||
github.actor != 'opencode-agent[bot]' &&
|
||||
github.actor != 'takanashi-hoshino-agent[bot]' &&
|
||||
github.actor != 'github-actions[bot]'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
@ -51,4 +52,5 @@ jobs:
|
||||
with:
|
||||
model: opencode/deepseek-v4-flash-free
|
||||
use_github_token: true
|
||||
prompt: ${{ secrets.OPENCODE_PROMPT }}
|
||||
prompt: |
|
||||
${{ secrets.OPENCODE_PROMPT }}
|
||||
31
interface.d.ts
vendored
31
interface.d.ts
vendored
@ -48,18 +48,26 @@ export function ad_listening_rights(
|
||||
export function ad_listening_rights_gain(
|
||||
params: {
|
||||
reqUid?: string
|
||||
creativeType?: string | number
|
||||
uid?: string | number
|
||||
exposureTime?: string | number
|
||||
clickTime?: string | number
|
||||
extraRightsType?: string | number
|
||||
playContinuously?: boolean | string
|
||||
source?: string | number
|
||||
creativeType?: string | number
|
||||
rightsGainMethod?: string | number
|
||||
rightsGainDuration?: string | number
|
||||
extraRightsGainMethod?: string | number
|
||||
extraRightsGainDuration?: string | number
|
||||
nextRightsGainDuration?: string | number
|
||||
source?: string
|
||||
rightsGainType?: string | number
|
||||
rightsGainDuration?: string | number
|
||||
gainMethodStep?: string | number
|
||||
generalRightsInfo?: string
|
||||
rightsExtJson?: string
|
||||
appInfo?: string
|
||||
contextInfo?: string
|
||||
installed?: string | number
|
||||
sniffTime?: string | number
|
||||
type_ids?: string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
@ -1662,6 +1670,23 @@ export function yunbei_task_finish(
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_ad_task_list(
|
||||
params: RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_ad_task_recommend_song(
|
||||
params: {
|
||||
offset?: number | string
|
||||
limit?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function yunbei_ad_task_finish(
|
||||
params: {
|
||||
yunbeiAmount?: number | string
|
||||
} & RequestBaseConfig,
|
||||
): Promise<Response>
|
||||
|
||||
export function msg_recentcontact(params: RequestBaseConfig): Promise<Response>
|
||||
|
||||
export function hug_comment(
|
||||
|
||||
@ -17,9 +17,24 @@ module.exports = async (query, request) => {
|
||||
try {
|
||||
if (raw?.ads) {
|
||||
const ad = Object.values(raw.ads)[0]
|
||||
if (ad?.extJson) {
|
||||
// 逆向 v9.5.61:客户端从 ad.adExtMap["req_id"] 取 reqUid
|
||||
if (ad?.adExtMap) {
|
||||
if (typeof ad.adExtMap === 'string') {
|
||||
try {
|
||||
reqId = JSON.parse(ad.adExtMap).req_id || ''
|
||||
} catch (_) {}
|
||||
} else {
|
||||
reqId = ad.adExtMap.req_id || ''
|
||||
}
|
||||
}
|
||||
// 兜底:adLogId.requestId / ad.reqId / extJson.contextInfo.req_id
|
||||
if (!reqId && ad?.adLogId?.requestId) reqId = ad.adLogId.requestId
|
||||
if (!reqId && ad?.reqId) reqId = ad.reqId
|
||||
if (!reqId && ad?.extJson) {
|
||||
try {
|
||||
const ext = JSON.parse(ad.extJson)
|
||||
reqId = ext?.contextInfo?.req_id || ''
|
||||
} catch (_) {}
|
||||
}
|
||||
}
|
||||
} catch (_) {}
|
||||
|
||||
@ -1,65 +1,229 @@
|
||||
// 看广告免费听歌 - 领取免费听权益
|
||||
// 请求流程(基于逆向网易云音乐 v9.5.45 RN Hermes 源码):
|
||||
// 请求流程(基于逆向网易云音乐 v9.5.61 原生 Kotlin 源码,classes5/18/19.dex):
|
||||
// 1. 从广告平台拉广告 → 用户看完/点击广告 → 获取 ad 对象的 extJson.contextInfo.req_id 作为 reqUid
|
||||
// 2. 调用本接口传入 reqUid 及相关权益参数,领取免费听权益
|
||||
// 2. 调用本接口传入 reqUid 及相关权益参数,领取权益
|
||||
// 3. 服务器返回 gainFlag 等标识,用于展示领取结果
|
||||
//
|
||||
// 调用链(逆向还原):
|
||||
// AdDSLIncentiveVideoRightsHelper.requestRightsGainInner
|
||||
// → AdDSLUtils.requestRightGain(ad, exposeTime, clickTime, creativeType, cb)
|
||||
// → 构造 ListeningRightRequestParams(21 字段)→ JSON.stringify
|
||||
// → body = { "reqParam": "..." } → POST /api/ad/listening/rights/gain
|
||||
// (注意:客户端 AdDSLIncentiveVideoRightsHelper 写死 creativeType=36)
|
||||
//
|
||||
// 接口不只领取听歌时长,还包含"看视频得云贝"等权益:
|
||||
// rightsGainMethod=6 (LAXIN_EXPOSE_OR_DOWNLOAD 拉新曝光/下载分段权益) 时,
|
||||
// 弹窗 AdLaxinSegmentedGuideDialog 展示 "获得X云贝"(2000 云贝等),
|
||||
// 权益数值由广告下发的 AdLaxinSegmentedRightsGuidePopup.rightsValue 决定,
|
||||
// extraRightsType 作为权益类型随本接口上传。
|
||||
//
|
||||
// rightsGainMethod 枚举(h80/a):
|
||||
// 1=EXPOSE 曝光, 2=EXPOSE_CLICK 曝光+点击, 3=EXPOSE_DOWNLOAD 曝光+下载,
|
||||
// 4=CLICK_STAY 点击+停留, 5=EXPOSURE_OR_CLICK_STAY 曝光或点击停留,
|
||||
// 6=LAXIN_EXPOSE_OR_DOWNLOAD 拉新曝光/下载分段权益
|
||||
|
||||
const createOption = require('../util/option.js')
|
||||
const adGet = require('./ad_get.js')
|
||||
|
||||
// 安全 JSON 解析(字符串字段可能是 JSON 文本)
|
||||
function safeParse(str, fallback) {
|
||||
if (typeof str !== 'string') return fallback
|
||||
try {
|
||||
return JSON.parse(str)
|
||||
} catch (_) {
|
||||
return fallback
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = async (query, request) => {
|
||||
const time = Date.now()
|
||||
|
||||
// 如果未传入 reqUid,自动从 ad_get 获取最新广告的 req_id
|
||||
// 从广告对象自动补齐请求字段。
|
||||
// 实测 v9.5.61 真实 API 返回(/ad/get)确认的字段路径:
|
||||
// reqUid = ad.extJson.contextInfo.req_id(真实响应中唯一存在)
|
||||
// contextInfo = ad.extJson.contextInfo(完整对象序列化)
|
||||
// generalRightsInfo = ad.generalRightsInfo(字符串 JSON)
|
||||
// creativeType = ad.creativeType
|
||||
// rightsGainMethod / extraRightsType / rightsGainDuration / rightsGainType /
|
||||
// extraRightsGainMethod / extraRightsGainDuration / nextRightsGainDuration /
|
||||
// rightsExtJson / source / rightsUpperLimit / qualified
|
||||
// = ad.generalRightsInfo(字符串)解析后取值
|
||||
// (逆向类字段 adExtMap/adLogId/listeningRightHintInfo 真实响应中不存在,仅兜底)
|
||||
// sniffTime = method==3 或 6 时 currentTimeMillis
|
||||
let reqUid = query.reqUid || ''
|
||||
if (!reqUid) {
|
||||
let contextInfo = query.contextInfo
|
||||
let creativeType = query.creativeType
|
||||
let generalRightsInfo = query.generalRightsInfo
|
||||
|
||||
// 广告 hint 配置:仅当调用方未显式传参时用广告下发值兜底
|
||||
const hint = {}
|
||||
|
||||
if (!reqUid || contextInfo === undefined || creativeType === undefined) {
|
||||
try {
|
||||
const adRes = await adGet(
|
||||
{ ...query, type_ids: query.type_ids || '["400002_0"]' },
|
||||
request,
|
||||
)
|
||||
reqUid = adRes?.body?.extra?.reqId || ''
|
||||
const ad = Object.values(adRes?.body?.ads || {})[0]
|
||||
if (!ad) throw new Error('ads 为空(未登录或广告位无广告)')
|
||||
|
||||
// reqUid:真实 API 返回中 req_id 在 ad.extJson.contextInfo.req_id(实测 v9.5.61)
|
||||
// (逆向类字段 adExtMap/adLogId 在真实响应中不存在,仅作兜底)
|
||||
if (!reqUid) {
|
||||
const ext =
|
||||
typeof ad?.extJson === 'string'
|
||||
? safeParse(ad.extJson, {})
|
||||
: ad?.extJson || {}
|
||||
const extMap =
|
||||
typeof ad?.adExtMap === 'string'
|
||||
? safeParse(ad.adExtMap, {})
|
||||
: ad?.adExtMap
|
||||
reqUid =
|
||||
ext?.contextInfo?.req_id ||
|
||||
extMap?.req_id ||
|
||||
ad?.adLogId?.requestId ||
|
||||
ad?.reqId ||
|
||||
adRes?.body?.extra?.reqId ||
|
||||
''
|
||||
}
|
||||
// contextInfo:真实 API 返回中在 ad.extJson.contextInfo(实测 v9.5.61)
|
||||
if (contextInfo === undefined) {
|
||||
const ext =
|
||||
typeof ad?.extJson === 'string'
|
||||
? safeParse(ad.extJson, {})
|
||||
: ad?.extJson || {}
|
||||
const ci =
|
||||
ext?.contextInfo || ad?.adLogId?.contextInfo || ad?.showContext
|
||||
if (ci) {
|
||||
contextInfo = typeof ci === 'string' ? ci : JSON.stringify(ci)
|
||||
}
|
||||
}
|
||||
if (creativeType === undefined && ad?.creativeType !== undefined) {
|
||||
creativeType = ad.creativeType
|
||||
}
|
||||
if (generalRightsInfo === undefined && ad?.generalRightsInfo) {
|
||||
generalRightsInfo =
|
||||
typeof ad.generalRightsInfo === 'string'
|
||||
? ad.generalRightsInfo
|
||||
: JSON.stringify(ad.generalRightsInfo)
|
||||
}
|
||||
// 缓存广告下发的领取配置(后续用于兜底)
|
||||
// 实测 v9.5.61:rightsGainMethod/rightsUpperLimit/qualified 等在
|
||||
// ad.generalRightsInfo(字符串)里,ad.listeningRightHintInfo 真实响应中不存在
|
||||
const hintCfg =
|
||||
typeof ad?.listeningRightHintInfo === 'string'
|
||||
? safeParse(ad.listeningRightHintInfo, {})
|
||||
: ad?.listeningRightHintInfo || {}
|
||||
const gri =
|
||||
typeof ad?.generalRightsInfo === 'string'
|
||||
? safeParse(ad.generalRightsInfo, {})
|
||||
: ad?.generalRightsInfo || {}
|
||||
Object.assign(hint, hintCfg, gri)
|
||||
console.log(`自动获取 reqUid: ${reqUid}`)
|
||||
} catch (e) {
|
||||
// 获取广告失败,后续请求会因缺少 reqUid 被拒绝
|
||||
}
|
||||
}
|
||||
|
||||
const rightsGainMethod = query.rightsGainMethod
|
||||
? parseInt(query.rightsGainMethod)
|
||||
: hint.rightsGainMethod || 2
|
||||
|
||||
const rightsParam = {
|
||||
// 必填: 广告请求 ID,自动从 ad_get 获取
|
||||
reqUid,
|
||||
|
||||
// 广告创意类型 (默认 1)
|
||||
creativeType: parseInt(query.creativeType || 2),
|
||||
// 曝光时间戳
|
||||
exposureTime: query.exposureTime ? parseInt(query.exposureTime) : time,
|
||||
|
||||
// 时间戳
|
||||
exposureTime: query.exposureTime || time,
|
||||
clickTime: query.clickTime || time,
|
||||
// 当前登录用户 ID(原版客户端从 Profile.getUserId() 获取)
|
||||
userId: query.uid ? parseInt(query.uid) : undefined,
|
||||
|
||||
// 权益领取方式
|
||||
rightsGainMethod: parseInt(query.rightsGainMethod || 2),
|
||||
// 点击时间戳
|
||||
clickTime: query.clickTime ? parseInt(query.clickTime) : time,
|
||||
|
||||
// 权益时长相关
|
||||
rightsGainDuration: query.rightsGainDuration
|
||||
? parseInt(query.rightsGainDuration)
|
||||
// 额外权益类型(拉新分段权益等,决定发放云贝/时长/下载,来自广告配置)
|
||||
extraRightsType: query.extraRightsType
|
||||
? parseInt(query.extraRightsType)
|
||||
: hint.extraRightsType !== undefined
|
||||
? parseInt(hint.extraRightsType)
|
||||
: undefined,
|
||||
|
||||
// 是否连续播放(默认 false)
|
||||
playContinuously: query.playContinuously ? true : false,
|
||||
|
||||
// 来源标识(原版从 ad.listeningRightHintInfo.source 读取)
|
||||
source: query.source
|
||||
? parseInt(query.source)
|
||||
: hint.source !== undefined
|
||||
? parseInt(hint.source)
|
||||
: undefined,
|
||||
|
||||
// 广告创意类型(激励视频场景=36,优先取 query / 广告对象)
|
||||
creativeType: creativeType !== undefined ? parseInt(creativeType) : 36,
|
||||
|
||||
// 权益领取方式(1~6 枚举,见文件头注释)
|
||||
rightsGainMethod,
|
||||
|
||||
// 权益扩展方式与时长
|
||||
extraRightsGainMethod: query.extraRightsGainMethod
|
||||
? parseInt(query.extraRightsGainMethod)
|
||||
: hint.extraRightsGainMethod !== undefined
|
||||
? parseInt(hint.extraRightsGainMethod)
|
||||
: undefined,
|
||||
extraRightsGainDuration: query.extraRightsGainDuration
|
||||
? parseInt(query.extraRightsGainDuration)
|
||||
: hint.extraRightsGainDuration !== undefined
|
||||
? parseInt(hint.extraRightsGainDuration)
|
||||
: undefined,
|
||||
nextRightsGainDuration: query.nextRightsGainDuration
|
||||
? parseInt(query.nextRightsGainDuration)
|
||||
: hint.nextRightsGainDuration !== undefined
|
||||
? parseInt(hint.nextRightsGainDuration)
|
||||
: undefined,
|
||||
|
||||
// 来源标识 | 权益扩展信息
|
||||
source: query.source || undefined,
|
||||
rightsExtJson: query.rightsExtJson || undefined,
|
||||
// 权益类型(含 RIGHTS_GAIN_TYPE_CURRENT_DAY 等取值)
|
||||
rightsGainType: query.rightsGainType
|
||||
? parseInt(query.rightsGainType)
|
||||
: hint.rightsGainType !== undefined
|
||||
? parseInt(hint.rightsGainType)
|
||||
: undefined,
|
||||
|
||||
// 权益时长
|
||||
rightsGainDuration: query.rightsGainDuration
|
||||
? parseInt(query.rightsGainDuration)
|
||||
: hint.rightsGainDuration !== undefined
|
||||
? parseInt(hint.rightsGainDuration)
|
||||
: undefined,
|
||||
|
||||
// 领取步骤(UNGAIN/GAINING/GAIN_FINISHED 对应的值)
|
||||
gainMethodStep: query.gainMethodStep
|
||||
? parseInt(query.gainMethodStep)
|
||||
: undefined,
|
||||
|
||||
// 通用权益信息(ad.generalRightsInfo 序列化 JSON)
|
||||
generalRightsInfo,
|
||||
|
||||
// 权益扩展信息
|
||||
rightsExtJson: query.rightsExtJson || hint.rightsExtJson || undefined,
|
||||
|
||||
// 应用信息(下载类广告)
|
||||
appInfo: query.appInfo ? JSON.parse(query.appInfo) : undefined,
|
||||
|
||||
// 广告上下文(ad.adLogId.contextInfo,客户端真实来源)
|
||||
contextInfo,
|
||||
|
||||
// 应用是否已安装(下载类广告)
|
||||
installed: query.installed ? parseInt(query.installed) : undefined,
|
||||
|
||||
// 嗅探时间:逆向确认(classes5.dex AdDSLUtils.requestRightGain):
|
||||
// rightsGainMethod==3(曝光+下载) 或 6(LAXIN) 时传 currentTimeMillis
|
||||
sniffTime:
|
||||
rightsGainMethod === 3 || rightsGainMethod === 6
|
||||
? query.sniffTime
|
||||
? parseInt(query.sniffTime)
|
||||
: time
|
||||
: undefined,
|
||||
}
|
||||
|
||||
// 清理 undefined 字段
|
||||
@ -67,7 +231,7 @@ module.exports = async (query, request) => {
|
||||
if (rightsParam[key] === undefined) delete rightsParam[key]
|
||||
})
|
||||
|
||||
// 将参数序列化为 reqParam 字符串 (与 RN 源码完全一致)
|
||||
// 将参数序列化为 reqParam 字符串 (与原生源码一致)
|
||||
const data = {
|
||||
reqParam: JSON.stringify(rightsParam),
|
||||
}
|
||||
@ -75,7 +239,7 @@ module.exports = async (query, request) => {
|
||||
const res = await request(
|
||||
`/api/ad/listening/rights/gain`,
|
||||
data,
|
||||
createOption(query, 'xeapi', 'v3'),
|
||||
createOption(query, 'xeapi', 'v2'),
|
||||
)
|
||||
|
||||
return {
|
||||
|
||||
@ -1,15 +1,16 @@
|
||||
// 易盾反作弊 Token 注册端点
|
||||
// 调用后获取实时 token 并存入共享存储,供后续带 checkToken 的请求使用
|
||||
//
|
||||
// GET /register/checktoken → 返回当前 token(尚无则自动获取)
|
||||
// POST /register/checktoken → 强制刷新 token
|
||||
// GET /register/checktoken?refresh=1 → 强制刷新
|
||||
// GET /register/checktoken → 实时获取新 token(不缓存)
|
||||
// POST /register/checktoken → 实时获取新 token
|
||||
//
|
||||
// 注意:每次获取都不缓存,模拟真实客户端每次请求使用新鲜 token,
|
||||
// 避免反作弊 token 复用触发风控。
|
||||
//
|
||||
const { default: axios } = require('axios')
|
||||
const { APP_CONF } = require('../util/config.json')
|
||||
|
||||
const URL = APP_CONF.dunDomainV2 + '/v2/config/js?pn=YD00000558929251'
|
||||
let _token = ''
|
||||
|
||||
async function fetch() {
|
||||
const res = await axios.get(URL, { timeout: 10000 })
|
||||
@ -20,13 +21,13 @@ async function fetch() {
|
||||
throw new Error('易盾返回异常: ' + JSON.stringify(data).substring(0, 200))
|
||||
}
|
||||
|
||||
// 端点处理
|
||||
module.exports = async (query) => {
|
||||
const refresh = query.refresh === '1' || query.refresh === 'true'
|
||||
let token = refresh ? null : _token
|
||||
if (!token) {
|
||||
// 端点处理:每次实时获取新 token
|
||||
module.exports = async () => {
|
||||
let token = ''
|
||||
try {
|
||||
token = await fetch()
|
||||
_token = token
|
||||
} catch (e) {
|
||||
// token 获取失败时返回空,由调用方决定是否重试
|
||||
}
|
||||
return {
|
||||
status: 200,
|
||||
@ -34,24 +35,11 @@ module.exports = async (query) => {
|
||||
}
|
||||
}
|
||||
|
||||
// 模块加载时自动获取一次 Token,确保 request.js 使用时不为空
|
||||
fetch()
|
||||
.then((token) => {
|
||||
_token = token
|
||||
})
|
||||
.catch(() => {
|
||||
// 静默失败,后续请求时会重试
|
||||
})
|
||||
|
||||
// 给 request.js 读取用
|
||||
module.exports.getToken = () => {
|
||||
if (!_token) {
|
||||
// 如果 Token 为空,异步触发获取
|
||||
fetch()
|
||||
.then((token) => {
|
||||
_token = token
|
||||
})
|
||||
.catch(() => {})
|
||||
// 给 request.js 读取用:每次调用实时获取新 token,不缓存
|
||||
module.exports.getToken = async () => {
|
||||
try {
|
||||
return await fetch()
|
||||
} catch (e) {
|
||||
return ''
|
||||
}
|
||||
return _token
|
||||
}
|
||||
|
||||
@ -1,15 +1,16 @@
|
||||
// 易盾反作弊 Token 注册端点
|
||||
// 调用后获取实时 token 并存入共享存储,供后续带 checkToken 的请求使用
|
||||
//
|
||||
// GET /register/checktoken → 返回当前 token(尚无则自动获取)
|
||||
// POST /register/checktoken → 强制刷新 token
|
||||
// GET /register/checktoken?refresh=1 → 强制刷新
|
||||
// GET /register/checktoken/v3 → 实时获取新 token(不缓存)
|
||||
// POST /register/checktoken/v3 → 实时获取新 token
|
||||
//
|
||||
// 注意:每次获取都不缓存,模拟真实客户端每次请求使用新鲜 token,
|
||||
// 避免反作弊 token 复用触发风控。
|
||||
//
|
||||
const { default: axios } = require('axios')
|
||||
const { APP_CONF } = require('../util/config.json')
|
||||
|
||||
const URL = APP_CONF.dunDomainV3 + '/v3/b?pn=YD00000558929251'
|
||||
let _token = ''
|
||||
|
||||
async function fetch() {
|
||||
const res = await axios.get(URL, { timeout: 10000 })
|
||||
@ -19,13 +20,13 @@ async function fetch() {
|
||||
throw new Error('易盾返回异常: ' + body.substring(0, 100))
|
||||
}
|
||||
|
||||
// 端点处理
|
||||
module.exports = async (query) => {
|
||||
const refresh = query.refresh === '1' || query.refresh === 'true'
|
||||
let token = refresh ? null : _token
|
||||
if (!token) {
|
||||
// 端点处理:每次实时获取新 token
|
||||
module.exports = async () => {
|
||||
let token = ''
|
||||
try {
|
||||
token = await fetch()
|
||||
_token = token
|
||||
} catch (e) {
|
||||
// token 获取失败时返回空,由调用方决定是否重试
|
||||
}
|
||||
return {
|
||||
status: 200,
|
||||
@ -33,5 +34,11 @@ module.exports = async (query) => {
|
||||
}
|
||||
}
|
||||
|
||||
// 给 request.js 读取用
|
||||
module.exports.getToken = () => _token
|
||||
// 给 request.js 读取用:每次调用实时获取新 token,不缓存
|
||||
module.exports.getToken = async () => {
|
||||
try {
|
||||
return await fetch()
|
||||
} catch (e) {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
@ -17,7 +17,7 @@ module.exports = async (query, request) => {
|
||||
const currentKeyVersion = query.currentKeyVersion || ''
|
||||
|
||||
const data = {
|
||||
appVersion: '9.1.65',
|
||||
appVersion: '9.5.61',
|
||||
currentKeyVersion,
|
||||
deviceId,
|
||||
nonce,
|
||||
@ -35,7 +35,7 @@ module.exports = async (query, request) => {
|
||||
url: APP_CONF.apiDomain + '/api/gorilla/anti/crawler/security/key/get',
|
||||
headers: {
|
||||
'User-Agent':
|
||||
'NeteaseMusic/9.1.65.240927161425(9001065);Dalvik/2.1.0 (Linux; U; Android 14; 23013RK75C Build/UKQ1.230804.001)',
|
||||
'NeteaseMusic/9.5.61.260802021928(9005061);Dalvik/2.1.0 (Linux; U; Android 12; HBN-AL00 Build/cd737a2.0)',
|
||||
Cookie: deviceId ? `deviceId=${encodeURIComponent(deviceId)}` : '',
|
||||
},
|
||||
data: new URLSearchParams(data).toString(),
|
||||
|
||||
@ -1,5 +1,9 @@
|
||||
const createOption = require('../util/option.js')
|
||||
module.exports = (query, request) => {
|
||||
const data = {}
|
||||
return request(`/api/pointmall/user/sign`, data, createOption(query, 'weapi'))
|
||||
return request(
|
||||
`/api/pointmall/user/sign`,
|
||||
data,
|
||||
createOption(query, 'xeapi', 'v3'),
|
||||
)
|
||||
}
|
||||
|
||||
26
module/yunbei_task_finish_v1.js
Normal file
26
module/yunbei_task_finish_v1.js
Normal file
@ -0,0 +1,26 @@
|
||||
// 云贝广告任务 - 完成任务领取云贝
|
||||
// 逆向来源: 云贝任务中心 H5 (st.music.163.com/yunbei-listen) main.js
|
||||
// POST /api/ad/power/yunbei/distribution/create
|
||||
// 参数: yunbeiAmount (单次可得云贝, 客户端从 list 接口的 singleAmount 取值, 当前为 150)
|
||||
// 返回: true (领取成功)
|
||||
//
|
||||
// 实测验证 (2026-08-05):
|
||||
// - 仅传 yunbeiAmount 即可成功领取, 无需真实听歌/看视频
|
||||
// - 单日上限 10 次 × 150 云贝 = 1500 云贝/天
|
||||
// - 超限返回 code:400 "单日完成任务数已达上限"
|
||||
// - 无频率限制, 800ms 间隔连续调用均成功
|
||||
//
|
||||
// 建议: 领取前先调 yunbei_ad_task_list 查询 times, 达到 10 次即停止
|
||||
|
||||
const createOption = require('../util/option.js')
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
yunbeiAmount: query.yunbeiAmount || 150,
|
||||
}
|
||||
return request(
|
||||
`/api/ad/power/yunbei/distribution/create`,
|
||||
data,
|
||||
createOption(query, 'weapi'),
|
||||
)
|
||||
}
|
||||
16
module/yunbei_task_list_v1.js
Normal file
16
module/yunbei_task_list_v1.js
Normal file
@ -0,0 +1,16 @@
|
||||
// 云贝广告任务 - 查询今日任务状态
|
||||
// 逆向来源: 云贝任务中心 H5 (st.music.163.com/yunbei-listen) main.js
|
||||
// GET /api/ad/power/yunbei/distribution/list
|
||||
// 返回: { times: 今日已完成次数, amount: 今日累计云贝, singleAmount: 单次可得云贝 }
|
||||
// 注意: 单日上限 10 次, 单次 150 云贝 (每天最多 1500)
|
||||
|
||||
const createOption = require('../util/option.js')
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {}
|
||||
return request(
|
||||
`/api/ad/power/yunbei/distribution/list`,
|
||||
data,
|
||||
createOption(query, 'weapi'),
|
||||
)
|
||||
}
|
||||
20
module/yunbei_task_recommend_song.js
Normal file
20
module/yunbei_task_recommend_song.js
Normal file
@ -0,0 +1,20 @@
|
||||
// 云贝广告任务 - 获取推荐歌曲
|
||||
// 逆向来源: 云贝任务中心 H5 (st.music.163.com/yunbei-listen) main.js
|
||||
// POST /api/ad/power/yunbei/distribution/recommend/song
|
||||
// 参数: offset (默认 0), limit (默认 10, 客户端一次 10 首)
|
||||
// 返回: 推荐歌曲数组 [{ songId, songName, artistName, albumUrl, songChorusStartTime, likeFlag, alg }]
|
||||
// 注意: alg 均为 alg_payrec_yunBei_*, 为"听歌得云贝"任务专属推荐
|
||||
|
||||
const createOption = require('../util/option.js')
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
offset: query.offset || 0,
|
||||
limit: query.limit || 10,
|
||||
}
|
||||
return request(
|
||||
`/api/ad/power/yunbei/distribution/recommend/song`,
|
||||
data,
|
||||
createOption(query, 'weapi'),
|
||||
)
|
||||
}
|
||||
48
module_example/yunbei_ad_task.js
Normal file
48
module_example/yunbei_ad_task.js
Normal file
@ -0,0 +1,48 @@
|
||||
const {
|
||||
login_cellphone,
|
||||
yunbei_ad_task_list,
|
||||
yunbei_ad_task_recommend_song,
|
||||
yunbei_ad_task_finish,
|
||||
} = require('../main')
|
||||
|
||||
// 云贝广告任务(听歌/看视频得云贝)完整流程示例
|
||||
// 1. list - 查询今日任务状态(次数/云贝)
|
||||
// 2. finish - 领取云贝, 仅需传 yunbeiAmount(单次 150), 无需真实听歌/看视频
|
||||
// 3. recommend/song - 可选, 获取推荐歌曲列表
|
||||
// 注意: 单日上限 10 次 x 150 = 1500 云贝/天
|
||||
|
||||
async function main() {
|
||||
const login = await login_cellphone({
|
||||
phone: '手机号',
|
||||
password: '密码',
|
||||
})
|
||||
const cookie = login.body.cookie
|
||||
|
||||
// 1. 查询今日任务状态
|
||||
const list = await yunbei_ad_task_list({ cookie })
|
||||
const { times, amount, singleAmount } = list.body
|
||||
console.log(
|
||||
`今日已完成 ${times} 次, 累计 ${amount} 云贝, 单次可得 ${singleAmount} 云贝`,
|
||||
)
|
||||
if (times >= 10) {
|
||||
console.log('已达单日上限, 明天再来吧')
|
||||
return
|
||||
}
|
||||
|
||||
// 2. 领取云贝(单次 150)
|
||||
const finish = await yunbei_ad_task_finish({
|
||||
yunbeiAmount: singleAmount,
|
||||
cookie,
|
||||
})
|
||||
console.log('领取结果:', finish.body)
|
||||
|
||||
// 3. 获取推荐歌曲(听歌任务专属推荐, 可选)
|
||||
const rcmd = await yunbei_ad_task_recommend_song({
|
||||
offset: 0,
|
||||
limit: 10,
|
||||
cookie,
|
||||
})
|
||||
console.log('推荐歌曲:', rcmd.body.map((s) => s.songName).join(', '))
|
||||
}
|
||||
|
||||
main()
|
||||
10
package.json
10
package.json
@ -75,7 +75,7 @@
|
||||
"data"
|
||||
],
|
||||
"dependencies": {
|
||||
"@neteasecloudmusicapienhanced/unblockmusic-utils": "^0.3.4",
|
||||
"@neteasecloudmusicapienhanced/unblockmusic-utils": "^0.4.0",
|
||||
"axios": "^1.19.0",
|
||||
"crypto-js": "^4.2.0",
|
||||
"dotenv": "^17.4.2",
|
||||
@ -98,17 +98,17 @@
|
||||
"@types/express-fileupload": "^1.5.1",
|
||||
"@types/mocha": "^10.0.10",
|
||||
"@types/node": "25.9.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
||||
"@typescript-eslint/parser": "^8.65.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.66.0",
|
||||
"@typescript-eslint/parser": "^8.66.0",
|
||||
"eslint": "^9.39.5",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-html": "^8.1.4",
|
||||
"eslint-plugin-prettier": "^5.5.6",
|
||||
"globals": "^17.8.0",
|
||||
"globals": "^17.9.0",
|
||||
"husky": "^9.1.7",
|
||||
"intelli-espower-loader": "^1.1.0",
|
||||
"lint-staged": "^16.4.0",
|
||||
"mocha": "^11.7.6",
|
||||
"mocha": "^11.8.0",
|
||||
"nodemon": "^3.1.14",
|
||||
"pkg": "^5.8.1",
|
||||
"power-assert": "^1.6.1",
|
||||
|
||||
4415
pnpm-lock.yaml
generated
4415
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1264,7 +1264,6 @@ tags: 歌单标签
|
||||
|
||||
> 如果你设置 limit=50&offset=100,你就会得到第 101-150 首歌曲
|
||||
|
||||
|
||||
### 歌单详情动态
|
||||
|
||||
说明 : 调用后可获取歌单详情动态部分,如评论数,是否收藏,播放数
|
||||
@ -3626,6 +3625,36 @@ type='1009' 获取其 id, 如`/search?keywords= 代码时间 &type=1009`
|
||||
|
||||
**调用例子 :** `/yunbei/task/finish?userTaskId=5146243240&depositCode=0`
|
||||
|
||||
### 云贝广告任务 - 今日任务状态
|
||||
|
||||
说明 :登录后调用此接口可查询云贝广告任务("听歌/看视频得云贝")今日状态。逆向自云贝任务中心 H5 页面(st.music.163.com/yunbei-listen)。返回 `times`(今日已完成次数)、`amount`(今日累计云贝)、`singleAmount`(单次可得云贝)。单日上限 10 次。
|
||||
|
||||
**接口地址 :** `/yunbei/task/list/v1`
|
||||
|
||||
**调用例子 :** `/yunbei/task/list/v1`
|
||||
|
||||
### 云贝广告任务 - 获取推荐歌曲
|
||||
|
||||
说明 :登录后调用此接口可获取云贝广告任务的推荐歌曲列表。返回数组项含 `songId`、`songName`、`artistName`、`albumUrl`、`songChorusStartTime`、`likeFlag`、`alg`(均为 `alg_payrec_yunBei_*`)。
|
||||
|
||||
**可选参数 :** `offset`: 偏移数量,默认为 0
|
||||
|
||||
`limit`: 取出数量,默认为 10(客户端每次固定取 10 首)
|
||||
|
||||
**接口地址 :** `/yunbei/task/recommend/song`
|
||||
|
||||
**调用例子 :** `/yunbei/task/recommend/song` `/yunbei/task/recommend/song?offset=0&limit=10`
|
||||
|
||||
### 云贝广告任务 - 完成任务领取云贝
|
||||
|
||||
说明 :登录后调用此接口可完成任务并领取云贝。实测仅需传 `yunbeiAmount`(单次云贝数,客户端从 `list` 接口的 `singleAmount` 取值,当前为 150)即可成功领取,无需真实听歌/看视频。单日上限 10 次 × 150 = 1500 云贝/天,超限返回 `code:400 "单日完成任务数已达上限"`。建议领取前先调用 `/yunbei/task/list/v1` 查询今日剩余次数。
|
||||
|
||||
**可选参数 :** `yunbeiAmount`: 单次云贝数,默认为 150
|
||||
|
||||
**接口地址 :** `/yunbei/task/finish/v1`
|
||||
|
||||
**调用例子 :** `/yunbei/task/finish/v1?yunbeiAmount=150`
|
||||
|
||||
### 云贝收入
|
||||
|
||||
说明 :登录后调用此接口可获取云贝收入
|
||||
@ -5194,7 +5223,6 @@ let data = encodeURIComponent(
|
||||
|
||||
**调用例子:** `/broadcast/sub?id=5&t=1`
|
||||
|
||||
|
||||
### 用户的创建歌单列表
|
||||
|
||||
说明 : 调用此接口, 传入用户id, 获取用户的创建歌单列表
|
||||
@ -5269,7 +5297,6 @@ let data = encodeURIComponent(
|
||||
|
||||
**调用例子 :** `/voicelist/my/created`
|
||||
|
||||
|
||||
### DIFM电台 - 分类
|
||||
|
||||
说明: 调用此接口, 获取DIFM电台分类
|
||||
@ -5448,7 +5475,7 @@ let data = encodeURIComponent(
|
||||
|
||||
**接口地址 :** `/comment/report`
|
||||
|
||||
**调用例子 :* `/comment/report?id=2058263032&cid=123456789&reason=人身攻击`
|
||||
*_调用例子 :_ `/comment/report?id=2058263032&cid=123456789&reason=人身攻击`
|
||||
|
||||
### 多级行政区划数据
|
||||
|
||||
@ -5538,13 +5565,23 @@ let data = encodeURIComponent(
|
||||
|
||||
**调用例子 :** `/ad/get`
|
||||
|
||||
### 获取30分钟免费听歌时长
|
||||
### 看广告领取权益(免费听歌时长 / 云贝等)
|
||||
|
||||
说明 : 登录后调用此接口, 获取30分钟免费听歌时长
|
||||
说明 : 登录后调用此接口, 领取广告权益。权益类型由广告平台下发的配置决定, 不仅限于 30 分钟免费听歌时长, 还包括"看视频获得最高 2000 云贝"等拉新分段权益(`rightsGainMethod=6`)。除下方常用参数外, 权益类型/时长/扩展权益等其余字段会自动从广告下发配置补齐, 无需手动传入。
|
||||
|
||||
!> 警告: 通过调取接口出现的任何问题由调用者自行承担
|
||||
|
||||
**可选参数 :** `reqUid` 通过`/ad/get` 获取的广告ID
|
||||
**可选参数 :**
|
||||
|
||||
`reqUid` : 广告请求 ID, 通过 `/ad/get` 获取, 未传时自动获取
|
||||
|
||||
`uid` : 当前登录用户 ID, 不传时服务端从 Cookie 识别
|
||||
|
||||
`rightsGainMethod` : 权益领取方式, `1`: 曝光, `2`: 曝光+点击(默认), `3`: 曝光+下载, `4`: 点击+停留, `5`: 曝光或点击停留, `6`: 拉新曝光/下载分段权益(看视频得云贝)
|
||||
|
||||
`type_ids` : 广告位类型, 默认 `["400002_0"]`
|
||||
|
||||
`creativeType` : 广告创意类型, 激励视频场景为 `36`, 默认 `36`
|
||||
|
||||
**接口地址 :** `/ad/listening/rights/gain`
|
||||
|
||||
|
||||
@ -61,21 +61,22 @@
|
||||
<h3>调试部分</h3>
|
||||
<pre><code>curl -s {origin}/inner/version
|
||||
curl -s {origin}/search?keywords=网易云</code></pre>
|
||||
<div class="chips">
|
||||
<a href="/api.html">交互式调试</a>
|
||||
<a href="/qrlogin.html">二维码登录示例</a>
|
||||
<a href="/unblock_test.html">解灰测试</a>
|
||||
<a href="/audio_match_demo/index.html">听歌识曲 Demo</a>
|
||||
<a href="/cloud.html">云盘上传</a>
|
||||
<a href="/playlist_import.html">歌单导入</a>
|
||||
<a href="/api_decrypt.html">API 解密</a>
|
||||
<a href="/listen_together_host.html">一起听示例</a>
|
||||
<a href="/playlist_cover_update.html">更新歌单封面示例</a>
|
||||
<a href="/avatar_update.html">头像更新示例</a>
|
||||
<a href="/scrobble.html">听歌打卡示例</a>
|
||||
<a href="/yidun.html">获取 CheckToken</a>
|
||||
<a href="/free_listen.html">免费听权益</a>
|
||||
<a href="/ugc.html">云小编任务中心</a>
|
||||
<div style="margin-top:10px; line-height:2;">
|
||||
<a href="/api.html">交互式调试</a> ·
|
||||
<a href="/qrlogin.html">二维码登录示例</a> ·
|
||||
<a href="/unblock_test.html">解灰测试</a> ·
|
||||
<a href="/audio_match_demo/index.html">听歌识曲 Demo</a> ·
|
||||
<a href="/cloud.html">云盘上传</a> ·
|
||||
<a href="/playlist_import.html">歌单导入</a> ·
|
||||
<a href="/api_decrypt.html">API 解密</a> ·
|
||||
<a href="/listen_together_host.html">一起听示例</a> ·
|
||||
<a href="/playlist_cover_update.html">更新歌单封面示例</a> ·
|
||||
<a href="/avatar_update.html">头像更新示例</a> ·
|
||||
<a href="/scrobble.html">听歌打卡示例</a> ·
|
||||
<a href="/yidun.html">获取 CheckToken</a> ·
|
||||
<a href="/free_listen.html">免费听权益</a> ·
|
||||
<a href="/yunbei_task.html">云贝广告任务</a> ·
|
||||
<a href="/ugc.html">云小编任务中心</a> ·
|
||||
<a href="/ugc_lottery.html">云小编每日抽奖</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
622
public/yunbei_task.html
Normal file
622
public/yunbei_task.html
Normal file
@ -0,0 +1,622 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<title>云贝广告任务 — 网易云音乐 API Enhanced</title>
|
||||
<style>
|
||||
:root {
|
||||
--fg: #333;
|
||||
--muted: #666;
|
||||
--border: #ddd;
|
||||
--bg: #f5f5f5;
|
||||
--panel: #ffffff;
|
||||
--accent: #333;
|
||||
}
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family:
|
||||
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
color: var(--fg);
|
||||
background: var(--bg);
|
||||
line-height: 1.6;
|
||||
}
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.container {
|
||||
margin: 20px auto;
|
||||
padding: 0 16px;
|
||||
}
|
||||
header.site-header h1 {
|
||||
font-size: 22px;
|
||||
}
|
||||
.block {
|
||||
padding: 16px;
|
||||
}
|
||||
}
|
||||
header.site-header {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
header.site-header h1 {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
}
|
||||
.sub {
|
||||
margin-top: 4px;
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
}
|
||||
.block {
|
||||
background: var(--panel);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
margin-bottom: 16px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.block h3 {
|
||||
margin: 0 0 4px;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.block .desc {
|
||||
margin: 0 0 12px;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
pre {
|
||||
margin: 0;
|
||||
background: #f9f9f9;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
padding: 12px;
|
||||
overflow-x: auto;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 13px;
|
||||
max-height: 200px;
|
||||
overflow: auto;
|
||||
}
|
||||
pre.data {
|
||||
max-height: 360px;
|
||||
}
|
||||
.row {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
button {
|
||||
padding: 8px 18px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
background: var(--panel);
|
||||
color: var(--fg);
|
||||
transition: all 0.15s;
|
||||
}
|
||||
button:hover {
|
||||
background: #eee;
|
||||
}
|
||||
button.primary {
|
||||
background: var(--fg);
|
||||
color: var(--panel);
|
||||
border-color: var(--fg);
|
||||
}
|
||||
button.primary:hover {
|
||||
opacity: 0.85;
|
||||
}
|
||||
button:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
button.danger {
|
||||
background: #a11;
|
||||
color: #fff;
|
||||
border-color: #a11;
|
||||
}
|
||||
button.danger:hover {
|
||||
opacity: 0.85;
|
||||
}
|
||||
.tag {
|
||||
display: inline-block;
|
||||
padding: 2px 10px;
|
||||
border-radius: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.tag.ok {
|
||||
background: #e6f7e6;
|
||||
color: #1a7a1a;
|
||||
border-color: #b7e6b7;
|
||||
}
|
||||
.tag.no {
|
||||
background: #ffe6e6;
|
||||
color: #a11;
|
||||
border-color: #f5c6c6;
|
||||
}
|
||||
.tag.busy {
|
||||
background: #fff3cd;
|
||||
color: #856404;
|
||||
border-color: #ffeeba;
|
||||
}
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
.flex.sb {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.step {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.step .num {
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
background: var(--fg);
|
||||
color: var(--panel);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
margin-top: 1px;
|
||||
}
|
||||
.step .num.done {
|
||||
background: #1a7a1a;
|
||||
}
|
||||
.step .body {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 80px 1fr;
|
||||
gap: 4px 12px;
|
||||
font-size: 13px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.info-grid .lbl {
|
||||
color: var(--muted);
|
||||
}
|
||||
footer.site-footer {
|
||||
margin-top: 32px;
|
||||
padding-top: 12px;
|
||||
border-top: 1px solid var(--border);
|
||||
color: var(--muted);
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
}
|
||||
footer.site-footer a {
|
||||
color: var(--fg);
|
||||
text-decoration: none;
|
||||
}
|
||||
footer.site-footer a:hover {
|
||||
border-bottom: 1px dotted var(--fg);
|
||||
}
|
||||
|
||||
/* ---- 今日进度条 ---- */
|
||||
.progress-wrap {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.progress-bar {
|
||||
height: 10px;
|
||||
border-radius: 5px;
|
||||
background: #eee;
|
||||
border: 1px solid var(--border);
|
||||
overflow: hidden;
|
||||
}
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
border-radius: 5px;
|
||||
background: #1a7a1a;
|
||||
transition: width 0.4s ease;
|
||||
}
|
||||
.progress-text {
|
||||
margin-top: 4px;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* ---- 歌曲列表 ---- */
|
||||
.song-list {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.song-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
margin-bottom: 6px;
|
||||
background: #fafafa;
|
||||
}
|
||||
.song-item img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 6px;
|
||||
object-fit: cover;
|
||||
background: #eee;
|
||||
}
|
||||
.song-item .song-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.song-item .song-artist {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
}
|
||||
.song-item .song-like {
|
||||
margin-left: auto;
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="container">
|
||||
<header class="site-header">
|
||||
<h1>🪙 云贝广告任务 · 看视频得云贝</h1>
|
||||
<p class="sub">
|
||||
云贝任务中心「看广告视频得云贝」— 查询今日状态、领取云贝、获取推荐歌曲
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<!-- 步骤 1: 查询今日任务状态 -->
|
||||
<div class="block">
|
||||
<div class="step">
|
||||
<div class="num" id="s1num">1</div>
|
||||
<div class="body">
|
||||
<div class="flex sb">
|
||||
<h3>查询今日任务状态</h3>
|
||||
<span id="s1tag" class="tag no">未开始</span>
|
||||
</div>
|
||||
<p class="desc">
|
||||
调用
|
||||
/yunbei/task/list/v1,查看今日已完成次数、累计云贝与单次可得云贝
|
||||
</p>
|
||||
<div class="row">
|
||||
<button id="step1" class="primary">① 查询状态</button>
|
||||
</div>
|
||||
<div class="info-grid" id="s1info" style="display: none">
|
||||
<div class="lbl">已完成</div>
|
||||
<div id="s1times">-</div>
|
||||
<div class="lbl">累计云贝</div>
|
||||
<div id="s1amount">-</div>
|
||||
<div class="lbl">单次可得</div>
|
||||
<div id="s1single">-</div>
|
||||
</div>
|
||||
<div class="progress-wrap" id="s1progress" style="display: none">
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="s1fill"></div>
|
||||
</div>
|
||||
<div class="progress-text" id="s1ptext"></div>
|
||||
</div>
|
||||
<pre id="s1pre">(尚未执行)</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 步骤 2: 领取云贝 -->
|
||||
<div class="block">
|
||||
<div class="step">
|
||||
<div class="num" id="s2num">2</div>
|
||||
<div class="body">
|
||||
<div class="flex sb">
|
||||
<h3>领取云贝</h3>
|
||||
<span id="s2tag" class="tag no">未开始</span>
|
||||
</div>
|
||||
<p class="desc">
|
||||
调用 /yunbei/task/finish/v1 完成任务并领取云贝。实测仅需传
|
||||
yunbeiAmount(单次 150),无需真实听歌/看视频。单日上限 10 次 ×
|
||||
150 = 1500 云贝/天。
|
||||
</p>
|
||||
<div class="row">
|
||||
<button id="step2" class="primary" disabled>
|
||||
② 领取一次 (+150)
|
||||
</button>
|
||||
<button id="step2x" disabled>连续领取至上限</button>
|
||||
</div>
|
||||
<div class="info-grid" id="s2info" style="display: none">
|
||||
<div class="lbl">本次结果</div>
|
||||
<div id="s2result">-</div>
|
||||
<div class="lbl">今日累计</div>
|
||||
<div id="s2amount">-</div>
|
||||
</div>
|
||||
<pre id="s2pre">(尚未执行)</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 步骤 3: 获取推荐歌曲 -->
|
||||
<div class="block">
|
||||
<div class="step">
|
||||
<div class="num" id="s3num">3</div>
|
||||
<div class="body">
|
||||
<div class="flex sb">
|
||||
<h3>获取推荐歌曲</h3>
|
||||
<span id="s3tag" class="tag no">未开始</span>
|
||||
</div>
|
||||
<p class="desc">
|
||||
调用
|
||||
/yunbei/task/recommend/song,获取「听歌得云贝」任务专属推荐(alg
|
||||
均为 alg_payrec_yunBei_*)
|
||||
</p>
|
||||
<div class="row">
|
||||
<button id="step3" class="primary" disabled>③ 获取推荐</button>
|
||||
</div>
|
||||
<div class="song-list" id="s3list" style="display: none"></div>
|
||||
<pre id="s3pre">(尚未执行)</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 一键全流程 -->
|
||||
<div class="block">
|
||||
<div class="flex sb">
|
||||
<h3>一键运行</h3>
|
||||
<span id="allTag" class="tag no">就绪</span>
|
||||
</div>
|
||||
<p class="desc" style="margin-top: 4px">
|
||||
查询今日状态 → 领取一次云贝 → 获取推荐歌曲
|
||||
</p>
|
||||
<div class="row">
|
||||
<button id="runAll" class="primary">▶ 一键运行</button>
|
||||
<button id="clearAll" class="danger">✕ 清空</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer">
|
||||
<a href="/">← 返回首页</a>
|
||||
</footer>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
const $ = (id) => document.getElementById(id)
|
||||
const base = location.origin
|
||||
|
||||
function setTag(id, type, text) {
|
||||
const el = $(id)
|
||||
el.className = 'tag ' + type
|
||||
el.textContent = text
|
||||
}
|
||||
|
||||
function setNum(id, done) {
|
||||
$(id).className = 'num' + (done ? ' done' : '')
|
||||
}
|
||||
|
||||
function nocache(url) {
|
||||
const sep = url.indexOf('?') > -1 ? '&' : '?'
|
||||
return url + sep + '_t=' + Date.now()
|
||||
}
|
||||
|
||||
/** 今日进度展示: times/10 */
|
||||
function renderProgress(times, singleAmount) {
|
||||
const pct = Math.min(100, Math.round((times / 10) * 100))
|
||||
$('s1fill').style.width = pct + '%'
|
||||
$('s1ptext').textContent =
|
||||
'今日进度: ' +
|
||||
times +
|
||||
' / 10 次' +
|
||||
(times >= 10
|
||||
? '(已达上限,明天再来吧)'
|
||||
: '(剩余 ' + (10 - times) + ' 次 × ' + singleAmount + ' 云贝)')
|
||||
}
|
||||
|
||||
// ===== 步骤 1: 查询状态 =====
|
||||
async function step1() {
|
||||
const btn = $('step1')
|
||||
btn.disabled = true
|
||||
setTag('s1tag', 'busy', '查询中…')
|
||||
setNum('s1num', false)
|
||||
try {
|
||||
const res = await fetch(nocache(base + '/yunbei/task/list/v1'))
|
||||
const data = await res.json()
|
||||
$('s1pre').textContent = JSON.stringify(data, null, 2)
|
||||
const body = data.data || {}
|
||||
if (data.code === 200 && typeof body.times === 'number') {
|
||||
setTag('s1tag', 'ok', '已查询')
|
||||
setNum('s1num', true)
|
||||
$('s1info').style.display = 'grid'
|
||||
$('s1times').textContent = body.times
|
||||
$('s1amount').textContent = body.amount + ' 云贝'
|
||||
$('s1single').textContent = body.singleAmount + ' 云贝'
|
||||
$('s1progress').style.display = 'block'
|
||||
renderProgress(body.times, body.singleAmount)
|
||||
|
||||
$('step2').disabled = body.times >= 10
|
||||
$('step2x').disabled = body.times >= 10
|
||||
$('step3').disabled = false
|
||||
window.__singleAmount = body.singleAmount || 150
|
||||
return body
|
||||
}
|
||||
setTag('s1tag', 'no', '查询失败')
|
||||
return null
|
||||
} catch (e) {
|
||||
$('s1pre').textContent = JSON.stringify({ error: e.message }, null, 2)
|
||||
setTag('s1tag', 'no', e.message)
|
||||
return null
|
||||
} finally {
|
||||
btn.disabled = false
|
||||
}
|
||||
}
|
||||
$('step1').onclick = step1
|
||||
|
||||
// ===== 步骤 2: 领取云贝 =====
|
||||
async function claimOnce() {
|
||||
const btn = $('step2')
|
||||
btn.disabled = true
|
||||
$('step2x').disabled = true
|
||||
setTag('s2tag', 'busy', '领取中…')
|
||||
setNum('s2num', false)
|
||||
try {
|
||||
const amount = window.__singleAmount || 150
|
||||
const res = await fetch(
|
||||
nocache(base + '/yunbei/task/finish/v1?yunbeiAmount=' + amount),
|
||||
)
|
||||
const data = await res.json()
|
||||
$('s2pre').textContent = JSON.stringify(data, null, 2)
|
||||
if (data.code === 200) {
|
||||
setTag('s2tag', 'ok', '已领取 +' + amount)
|
||||
setNum('s2num', true)
|
||||
$('s2info').style.display = 'grid'
|
||||
$('s2result').textContent = String(data.data)
|
||||
await step1()
|
||||
return true
|
||||
}
|
||||
setTag('s2tag', 'no', '领取失败: ' + (data.message || data.code))
|
||||
$('s2info').style.display = 'none'
|
||||
return false
|
||||
} catch (e) {
|
||||
$('s2pre').textContent = JSON.stringify({ error: e.message }, null, 2)
|
||||
setTag('s2tag', 'no', e.message)
|
||||
return false
|
||||
} finally {
|
||||
btn.disabled = false
|
||||
$('step2x').disabled = false
|
||||
}
|
||||
}
|
||||
$('step2').onclick = claimOnce
|
||||
|
||||
// 连续领取至上限
|
||||
$('step2x').onclick = async function () {
|
||||
const btn = this
|
||||
btn.disabled = true
|
||||
$('step2').disabled = true
|
||||
setTag('s2tag', 'busy', '连续领取中…')
|
||||
let okCount = 0
|
||||
let failed = false
|
||||
for (let i = 0; i < 10; i++) {
|
||||
const state = await step1()
|
||||
if (!state) {
|
||||
failed = true
|
||||
break
|
||||
}
|
||||
if (state.times >= 10) break
|
||||
const ok = await claimOnce()
|
||||
if (!ok) {
|
||||
failed = true
|
||||
break
|
||||
}
|
||||
okCount++
|
||||
}
|
||||
setTag(
|
||||
's2tag',
|
||||
failed ? 'no' : 'ok',
|
||||
failed ? '中断' : '已领满 ' + okCount + ' 次',
|
||||
)
|
||||
btn.disabled = false
|
||||
$('step2').disabled = false
|
||||
}
|
||||
|
||||
// ===== 步骤 3: 获取推荐歌曲 =====
|
||||
$('step3').onclick = async function () {
|
||||
const btn = this
|
||||
btn.disabled = true
|
||||
setTag('s3tag', 'busy', '获取中…')
|
||||
setNum('s3num', false)
|
||||
$('s3list').style.display = 'none'
|
||||
try {
|
||||
const res = await fetch(
|
||||
nocache(base + '/yunbei/task/recommend/song?offset=0&limit=10'),
|
||||
)
|
||||
const data = await res.json()
|
||||
$('s3pre').textContent = JSON.stringify(data, null, 2)
|
||||
const list = data.data || []
|
||||
if (data.code === 200 && Array.isArray(list) && list.length) {
|
||||
setTag('s3tag', 'ok', '共 ' + list.length + ' 首')
|
||||
setNum('s3num', true)
|
||||
const box = $('s3list')
|
||||
box.style.display = 'block'
|
||||
box.innerHTML = ''
|
||||
list.forEach((s) => {
|
||||
const item = document.createElement('div')
|
||||
item.className = 'song-item'
|
||||
item.innerHTML =
|
||||
'<img src="' +
|
||||
(s.albumUrl || '') +
|
||||
'" alt="" onerror="this.style.visibility=\'hidden\'">' +
|
||||
'<div><div class="song-name">' +
|
||||
(s.songName || '-') +
|
||||
'</div>' +
|
||||
'<div class="song-artist">' +
|
||||
(s.artistName || '-') +
|
||||
'</div></div>' +
|
||||
'<div class="song-like">' +
|
||||
(s.likeFlag ? '♥ 已喜欢' : '♡ 未喜欢') +
|
||||
'</div>'
|
||||
box.appendChild(item)
|
||||
})
|
||||
return list
|
||||
}
|
||||
setTag('s3tag', 'no', '获取失败')
|
||||
return null
|
||||
} catch (e) {
|
||||
$('s3pre').textContent = JSON.stringify({ error: e.message }, null, 2)
|
||||
setTag('s3tag', 'no', e.message)
|
||||
return null
|
||||
} finally {
|
||||
btn.disabled = false
|
||||
}
|
||||
}
|
||||
|
||||
// ===== 一键运行 =====
|
||||
$('runAll').onclick = async function () {
|
||||
const btn = this
|
||||
btn.disabled = true
|
||||
setTag('allTag', 'busy', '运行中…')
|
||||
await step1()
|
||||
const state = window.__singleAmount ? true : false
|
||||
if (state) await claimOnce()
|
||||
await $('step3').onclick()
|
||||
setTag('allTag', 'ok', '完成')
|
||||
btn.disabled = false
|
||||
}
|
||||
|
||||
// ===== 清空 =====
|
||||
$('clearAll').onclick = function () {
|
||||
const steps = ['s1', 's2', 's3']
|
||||
const tags = { s1: '未开始', s2: '未开始', s3: '未开始' }
|
||||
steps.forEach((s) => {
|
||||
setTag(s + 'tag', 'no', tags[s])
|
||||
setNum(s + 'num', false)
|
||||
$(s + 'pre').textContent = '(尚未执行)'
|
||||
const info = $(s + 'info')
|
||||
if (info) info.style.display = 'none'
|
||||
})
|
||||
$('s1progress').style.display = 'none'
|
||||
$('s3list').style.display = 'none'
|
||||
$('step1').disabled = false
|
||||
$('step2').disabled = true
|
||||
$('step2x').disabled = true
|
||||
$('step3').disabled = true
|
||||
setTag('allTag', 'no', '就绪')
|
||||
$('runAll').disabled = false
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
204
scripts/opencode-automation.mjs
Normal file
204
scripts/opencode-automation.mjs
Normal file
@ -0,0 +1,204 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import { spawnSync } from 'node:child_process'
|
||||
import { readFileSync, writeFileSync } from 'node:fs'
|
||||
import { tmpdir } from 'node:os'
|
||||
import { join } from 'node:path'
|
||||
|
||||
const eventName = process.env.GITHUB_EVENT_NAME
|
||||
const eventPath = process.env.GITHUB_EVENT_PATH
|
||||
const token = process.env.GITHUB_TOKEN
|
||||
const repo = process.env.GITHUB_REPOSITORY
|
||||
const model = process.env.MODEL || 'opencode/deepseek-v4-flash-free'
|
||||
const botLogin = process.env.BOT_LOGIN || 'takanashi-hoshino-agent[bot]'
|
||||
|
||||
if (!eventPath || !token || !repo) {
|
||||
console.error(
|
||||
'Missing required env: GITHUB_EVENT_PATH / GITHUB_TOKEN / GITHUB_REPOSITORY',
|
||||
)
|
||||
process.exit(1)
|
||||
}
|
||||
if (!process.env.OPENCODE_API_KEY) {
|
||||
console.error('Missing OPENCODE_API_KEY')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
const event = JSON.parse(readFileSync(eventPath, 'utf8'))
|
||||
const [owner, repoName] = repo.split('/')
|
||||
const api = `https://api.github.com/repos/${owner}/${repoName}`
|
||||
const headers = {
|
||||
Authorization: `Bearer ${token}`,
|
||||
Accept: 'application/vnd.github+json',
|
||||
'X-GitHub-Api-Version': '2022-11-28',
|
||||
'User-Agent': 'opencode-automation',
|
||||
}
|
||||
|
||||
async function get(path) {
|
||||
const res = await fetch(`${api}${path}`, { headers })
|
||||
if (!res.ok) throw new Error(`GET ${path}: HTTP ${res.status}`)
|
||||
return res.json()
|
||||
}
|
||||
|
||||
async function post(path, body) {
|
||||
const res = await fetch(`${api}${path}`, {
|
||||
method: 'POST',
|
||||
headers,
|
||||
body: JSON.stringify(body),
|
||||
})
|
||||
const text = await res.text()
|
||||
if (!res.ok) throw new Error(`POST ${path}: HTTP ${res.status} ${text}`)
|
||||
return text ? JSON.parse(text) : null
|
||||
}
|
||||
|
||||
/** 无头模式跑 opencode,返回模型输出的文本 */
|
||||
function runOpencode(prompt, contextFile) {
|
||||
const args = ['run', '--auto', '-m', model, '--format', 'default', prompt]
|
||||
if (contextFile) args.push('-f', contextFile)
|
||||
console.log(
|
||||
`Running: opencode run --auto -m ${model} (prompt ${prompt.length} chars${contextFile ? ', context attached' : ''})`,
|
||||
)
|
||||
const res = spawnSync('opencode', args, {
|
||||
encoding: 'utf8',
|
||||
maxBuffer: 128 * 1024 * 1024,
|
||||
})
|
||||
if (res.error) throw res.error
|
||||
if (res.status !== 0) {
|
||||
if (res.stderr) console.error('opencode stderr:\n' + res.stderr)
|
||||
throw new Error(`opencode exited with code ${res.status}`)
|
||||
}
|
||||
return (res.stdout || '').trim()
|
||||
}
|
||||
|
||||
/** 该 issue/PR 是否已有 bot 评论(用于去重,避免 synchronize 重复评论) */
|
||||
async function hasBotComment(target) {
|
||||
const comments = await get(`/issues/${target}/comments?per_page=100`)
|
||||
return comments.some((c) => c.user?.login === botLogin)
|
||||
}
|
||||
|
||||
async function comment(target, body) {
|
||||
if (!body) {
|
||||
console.log('No output from agent, skip comment')
|
||||
return
|
||||
}
|
||||
if (body.length > 60000) body = body.slice(0, 60000) + '\n\n_...(truncated)_'
|
||||
await post(`/issues/${target}/comments`, { body })
|
||||
console.log(`Commented on #${target}`)
|
||||
}
|
||||
|
||||
async function handleIssue(issue) {
|
||||
const n = issue.number
|
||||
console.log(`Handling issue #${n}`)
|
||||
if (await hasBotComment(n)) {
|
||||
console.log(`Already handled by bot, skip`)
|
||||
return
|
||||
}
|
||||
|
||||
const comments = await get(`/issues/${n}/comments?per_page=100`)
|
||||
const thread = comments
|
||||
.filter((c) => c.user?.login !== botLogin)
|
||||
.map(
|
||||
(c) =>
|
||||
`- **${c.user?.login}** (${c.created_at}):\n ${(c.body || '').replace(/\n/g, '\n ')}`,
|
||||
)
|
||||
.join('\n')
|
||||
|
||||
const ctx = [
|
||||
`# Issue #${n}: ${issue.title}`,
|
||||
``,
|
||||
`- State: ${issue.state}`,
|
||||
`- Author: ${issue.user?.login}`,
|
||||
`- Created: ${issue.created_at}`,
|
||||
``,
|
||||
`## Body`,
|
||||
``,
|
||||
issue.body || '(empty)',
|
||||
...(thread ? [`\n## Comments\n\n${thread}`] : []),
|
||||
].join('\n')
|
||||
|
||||
const ctxFile = join(tmpdir(), 'opencode-issue-context.md')
|
||||
writeFileSync(ctxFile, ctx)
|
||||
|
||||
const prompt =
|
||||
process.env.ISSUE_PROMPT ||
|
||||
[
|
||||
`You are a maintainer bot for the ${repo} repository.`,
|
||||
`Read the attached file for the issue context.`,
|
||||
`If the issue has a clear fix or points to relevant docs, reply with documentation links and/or`,
|
||||
`error-handling guidance for code examples. If nothing actionable, reply with exactly "NO_ACTION".`,
|
||||
`Do NOT modify any files, do NOT commit, do NOT push. Output only the comment text.`,
|
||||
].join('\n')
|
||||
|
||||
const output = runOpencode(prompt, ctxFile)
|
||||
if (output === 'NO_ACTION' || output.startsWith('NO_ACTION')) {
|
||||
console.log('Agent decided no action needed')
|
||||
return
|
||||
}
|
||||
await comment(n, output)
|
||||
}
|
||||
|
||||
async function handlePullRequest(pr) {
|
||||
const n = pr.number
|
||||
console.log(`Handling PR #${n}`)
|
||||
if (await hasBotComment(n)) {
|
||||
console.log(`Already handled by bot, skip`)
|
||||
return
|
||||
}
|
||||
|
||||
let files = []
|
||||
try {
|
||||
files = await get(`/pulls/${n}/files?per_page=100`)
|
||||
} catch (e) {
|
||||
console.warn(`Failed to fetch changed files: ${e.message}`)
|
||||
}
|
||||
const fileList = files
|
||||
.map((f) => `- ${f.status} ${f.filename} (+${f.additions}/-${f.deletions})`)
|
||||
.join('\n')
|
||||
|
||||
const ctx = [
|
||||
`# PR #${n}: ${pr.title}`,
|
||||
``,
|
||||
`- State: ${pr.state}`,
|
||||
`- Author: ${pr.user?.login}`,
|
||||
`- Base: ${pr.base?.ref} <- Head: ${pr.head?.ref}`,
|
||||
`- Created: ${pr.created_at}`,
|
||||
`- Stats: +${pr.additions}/-${pr.deletions}, ${pr.changed_files} files`,
|
||||
``,
|
||||
`## Body`,
|
||||
``,
|
||||
pr.body || '(empty)',
|
||||
...(fileList ? [`\n## Changed files\n\n${fileList}`] : []),
|
||||
].join('\n')
|
||||
|
||||
const ctxFile = join(tmpdir(), 'opencode-pr-context.md')
|
||||
writeFileSync(ctxFile, ctx)
|
||||
|
||||
const prompt =
|
||||
process.env.PR_PROMPT ||
|
||||
[
|
||||
`You are a maintainer bot for the ${repo} repository.`,
|
||||
`Read the attached file for the PR context. The PR branch is already checked out.`,
|
||||
`Run \`git diff HEAD^1 HEAD\` (or \`git diff origin/${pr.base?.ref}...HEAD\`) to see the changes.`,
|
||||
`Review the code changes: point out bugs, risks and improvements, and suggest fixes for obvious issues.`,
|
||||
`If the PR looks good, say so concisely.`,
|
||||
`Do NOT modify any files, do NOT commit, do NOT push. Output only the review comment text.`,
|
||||
].join('\n')
|
||||
|
||||
const output = runOpencode(prompt, ctxFile)
|
||||
await comment(n, output)
|
||||
}
|
||||
|
||||
async function main() {
|
||||
console.log(`Event: ${eventName} on ${repo}`)
|
||||
if (eventName === 'issues') {
|
||||
await handleIssue(event.issue)
|
||||
} else if (eventName === 'pull_request') {
|
||||
await handlePullRequest(event.pull_request)
|
||||
} else {
|
||||
console.log(`Unhandled event type: ${eventName}`)
|
||||
}
|
||||
}
|
||||
|
||||
main().catch((e) => {
|
||||
console.error(`Automation failed: ${e.message}`)
|
||||
process.exit(1)
|
||||
})
|
||||
@ -17,7 +17,7 @@ const {
|
||||
generateRandomChineseIP,
|
||||
} = require('./index')
|
||||
const { URLSearchParams, URL } = require('url')
|
||||
const { APP_CONF } = require('../util/config.json')
|
||||
const { APP_CONF } = require('./config.json')
|
||||
const {
|
||||
getToken: antiCheatTokenV2,
|
||||
} = require('../module/register_checktoken_v2')
|
||||
@ -114,7 +114,7 @@ const userAgentMap = {
|
||||
api: {
|
||||
pc: 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Safari/537.36 Chrome/91.0.4472.164 NeteaseMusicDesktop/3.1.29.205117',
|
||||
android:
|
||||
'NeteaseMusic/9.1.65.240927161425(9001065);Dalvik/2.1.0 (Linux; U; Android 14; 23013RK75C Build/UKQ1.230804.001)',
|
||||
'NeteaseMusic/9.5.61.260802021928(9005061);Dalvik/2.1.0 (Linux; U; Android 12; HBN-AL00 Build/cd737a2.0)',
|
||||
iphone: 'NeteaseMusic 9.0.90/5038 (iPhone; iOS 16.2; zh_CN)',
|
||||
},
|
||||
}
|
||||
@ -187,14 +187,16 @@ const generateRequestId = () => {
|
||||
.padStart(4, '0')}`
|
||||
}
|
||||
|
||||
const createRequest = (uri, data, options) => {
|
||||
const createRequest = async (uri, data, options) => {
|
||||
let token = ''
|
||||
switch (options.checkToken) {
|
||||
case 'v2':
|
||||
token = antiCheatTokenV2()
|
||||
// 每次实时获取反作弊 token,不缓存
|
||||
token = await antiCheatTokenV2()
|
||||
break
|
||||
case 'v3':
|
||||
token = antiCheatTokenV3()
|
||||
// 每次实时获取反作弊 token,不缓存
|
||||
token = await antiCheatTokenV3()
|
||||
break
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user