KR/jd_jin_tie.js

550 lines
33 KiB
JavaScript
Raw Normal View History

2022-02-11 16:56:14 +08:00
const { url } = require('inspector');
/*
领金贴(只做签到以及互动任务中部分任务) Fixed By X1a0He
Last Modified time: 2021-09-04 22:25:00
Last Modified By X1a0He
活动入口京东APP首页-领金贴[活动地址](https://active.jd.com/forever/cashback/index/)
脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js
=================QuantumultX==============
[task_local]
#领金贴
10 0 * * * jd_jin_tie.js, tag=领金贴, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png, enabled=true
===========Loon===============
[Script]
cron "10 0 * * *" script-path=https://raw.githubusercontent.com/KingRan/JDJB/main/jd_jin_tie.js,tag=领金贴
=======Surge===========
领金贴 = type=cron,cronexp="10 0 * * *",wake-system=1,timeout=3600,script-path=https://raw.githubusercontent.com/KingRan/JDJB/main/jd_jin_tie.js
==============小火箭=============
领金贴 = type=cron,script-path=https://raw.githubusercontent.com/KingRan/JDJB/main/jd_jin_tie.js, cronexpr="10 0 * * *", timeout=3600, enable=true
*/
const $ = new Env('领金贴');
const notify = $.isNode() ? require('./sendNotify') : '';
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [], cookie = '', message, allMessage = '';
//let shareId = ["19db2d225536431cab967af51dc06fa4", "cbf205415fdf4f29b0ddb1601b6de5f0"][Math.floor((Math.random() * 2))];
if ($.isNode()) {
Object.keys(jdCookieNode).forEach((item) => {
cookiesArr.push(jdCookieNode[item]);
});
if (process.env.JD_DEBUG && process.env.JD_DEBUG === "false") console.log = () => { };
} else {
cookiesArr = [
$.getdata("CookieJD"),
$.getdata("CookieJD2"),
...$.toObj($.getdata("CookiesJD") || "[]").map((item) => item.cookie)].filter((item) => !!item);
}
!(async () => {
if (!cookiesArr[0]) {
$.msg($.name, '【提示】请先获取京东账号一cookie\n直接使用NobyDa的京东签到获取', 'https://bean.m.jd.com/bean/signIndex.action', { "open-url": "https://bean.m.jd.com/bean/signIndex.action" });
return;
}
for (let i = 0; i < cookiesArr.length; i++) {
if (cookiesArr[i]) {
cookie = cookiesArr[i];
$.UserName = decodeURIComponent(cookie.match(/pt_pin=([^; ]+)(?=;?)/) && cookie.match(/pt_pin=([^; ]+)(?=;?)/)[1]);
$.index = i + 1;
$.isLogin = true;
$.nickName = '';
message = '';
await TotalBean();
console.log(`\n******开始【京东账号${$.index}${$.nickName || $.UserName}*********\n`);
if (!$.isLogin) {
$.msg($.name, `【提示】cookie已失效`, `京东账号${$.index} ${$.nickName || $.UserName}\n请重新登录获取\nhttps://bean.m.jd.com/bean/signIndex.action`, { "open-url": "https://bean.m.jd.com/bean/signIndex.action" });
if ($.isNode()) {
await notify.sendNotify(`${$.name}cookie已失效 - ${$.UserName}`, `京东账号${$.index} ${$.UserName}\n请重新登录获取cookie`);
}
continue
}
await main();
}
}
})().catch((e) => {
$.log('', `${$.name}, 失败! 原因: ${e}!`, '')
}).finally(() => {
$.done();
})
async function main() {
try {
await channelUserSignInfo_xh();
await queryMission_xh();
await channelUserSubsidyInfo_xh();
} catch (e) {
$.logErr(e)
}
}
function channelUserSignInfo_xh() {
return new Promise((resolve) => {
const body = JSON.stringify({
"source": "JD_JR_APP",
"channel": "default",
"channelLv": "",
"apiVersion": "4.0.0",
"riskDeviceParam": "{}",
"others": { "shareId": "" }
})
const options = taskUrl_xh('channelUserSignInfo', body, 'jrm');
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '000') {
$.keepSigned = 0;
let state = false;
// console.log(`【京东账号${$.index}(${$.nickName || $.UserName})的邀请码】` + data.resultData.data.shareId)
for (let i in data.resultData.data.signDetail) {
if (data.resultData.data.signDetail[i].signed) $.keepSigned += 1
if (data.resultData.data.dayId === data.resultData.data.signDetail[i].id) {
state = data.resultData.data.signDetail[i].signed
console.log('获取签到状态成功', state ? '今日已签到' : '今日未签到', '连续签到', $.keepSigned, '天\n')
}
}
if (!state) await channelSignInSubsidy_xh()
// if ($.index === 1) shareId = data.resultData.data.shareId
} else {
console.log('获取签到状态失败', data.resultData.msg)
}
} else {
console.log('获取签到状态失败', data.resultMsg)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function channelSignInSubsidy_xh() {
return new Promise((resolve) => {
const body = JSON.stringify({
"source": "JD_JR_APP",
"channel": "default",
"channelLv": "",
"apiVersion": "4.0.0",
"riskDeviceParam": "{}",
"others": { "shareId": "", "token": "" }
})
console.log(body)
const options = taskUrl_xh('channelSignInSubsidy', body, 'jrm');
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '000') {
if (data.resultData.data.signSuccess) {
console.log(`签到成功,获得 0.0${data.resultData.data.rewardAmount}`)
}
} else if (data.resultData.code === '001') {
console.log(`签到失败,可能今天已签到`)
} else {
// console.log(data)
console.log("签到失败")
}
} else {
// console.log(data)
console.log("签到失败")
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function queryMission_xh() {
return new Promise((resolve) => {
$.taskData = [];
const options = {
url: "https://ms.jr.jd.com/gw/generic/mission/h5/m/queryMission?reqData=%7B%22channelCode%22:%22SUBSIDY2%22,%22riskDeviceParam%22:%22%7B%5C%22eid%5C%22:%5C%22%5C%22,%5C%22fp%5C%22:%5C%22%5C%22,%5C%22sdkToken%5C%22:%5C%22%5C%22,%5C%22token%5C%22:%5C%22%5C%22,%5C%22undefined%5C%22:%5C%22%5C%22%7D%22,%22channel%22:%22%22%7D",
headers: {
'Accept': `*/*`,
'Origin': `https://u.jr.jd.com`,
'Accept-Encoding': `gzip, deflate, br`,
'Cookie': cookie,
'Content-Type': `application/x-www-form-urlencoded;charset=UTF-8`,
'Host': `ms.jr.jd.com`,
'Connection': `keep-alive`,
"User-Agent": $.isNode() ? (process.env.JD_USER_AGENT ? process.env.JD_USER_AGENT : (require('./USER_AGENTS').USER_AGENT)) : ($.getdata('JDUA') ? $.getdata('JDUA') : "jdapp;iPhone;9.4.4;14.3;network/4g;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1"),
'Referer': `https://u.jr.jd.com/`,
'Accept-Language': `zh-cn`
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '0000') {
console.log('互动任务获取成功')
$.taskData = data.resultData.data;
for (let task of $.taskData) {
if (task.missionId !== 4648) {
console.log(`\n任务id${task.missionId} 任务状态:${task.status}`)
if (task.status === -1) {
console.log(`正在做任务:${task.missionId}`)
await receiveMission_xh(task.missionId)
if (task.missionId === 4838) {
await getJumpInfo(juid = "db0e3237726a4129ba526a3f37f414b6")
await $.wait(2000)
await awardMission_xh(task.missionId)
} else if (task.missionId === 3060) {
await getJumpInfo(juid = "7bdc22abc32b4caa8059083f800dfd5e")
await $.wait(2000)
await awardMission_xh(task.missionId)
} else {
await queryMissionReceiveAfterStatus_xh(task.missionId)
}
} else if (task.status === 0) {
console.log(`正在做任务:${task.missionId}`)
if (task.missionId === 4838) {
await getJumpInfo(juid = "db0e3237726a4129ba526a3f37f414b6")
await $.wait(2000)
await awardMission_xh(task.missionId)
} else if (task.missionId === 3060) {
await getJumpInfo(juid = "7bdc22abc32b4caa8059083f800dfd5e")
await $.wait(2000)
await awardMission_xh(task.missionId)
} else {
await queryMissionReceiveAfterStatus_xh(task.missionId)
}
} else if (task.status === 1) {
console.log(`正在领取任务:${task.missionId} 奖励`)
await awardMission_xh(task.missionId)
} else if (task.status === 2) {
console.log(`任务id${task.missionId} 已完成`)
}
}
}
} else {
console.log('获取互动任务失败', data)
}
} else {
console.log('获取互动任务失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function receiveMission_xh(missionId) {
return new Promise((resolve) => {
const body = JSON.stringify({
"missionId": `${missionId}`,
"channelCode": "SUBSIDY2",
"timeStamp": new Date().toString(),
"env": "JRAPP"
})
const options = taskUrl_xh('receiveMission', body);
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '0000') {
if (data.resultData.success) {
console.log('领取任务成功')
}
} else if (data.resultData.code === '0005') {
console.log('已经接取过该任务')
} else {
console.log('领取任务失败', data)
}
} else {
console.log('领取任务失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function queryMissionReceiveAfterStatus_xh(taskId) {
return new Promise((resolve) => {
const body = JSON.stringify({ "missionId": `${taskId}` })
const options = taskUrl_xh('queryMissionReceiveAfterStatus', body);
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '0000') {
if (taskId === 4959) {
console.log('正在浏览等待15s')
await $.wait(15000)
await finishReadMission_xh(`${taskId}`, 15)
} else {
console.log('正在浏览等待10s')
await $.wait(10000)
await finishReadMission_xh(`${taskId}`, 10)
}
} else if (data.resultData.code === '0003') {
console.log('任务浏览失败', "非法参数")
} else if (data.resultData.code === '0001') {
console.log('任务浏览失败', "状态不正确")
} else {
console.log("任务浏览失败", data)
}
} else {
console.log('任务浏览失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function finishReadMission_xh(missionId, time) {
return new Promise((resolve) => {
const body = JSON.stringify({
"missionId": `${missionId}`,
"readTime": time
})
const options = taskUrl_xh('finishReadMission', body);
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '0000') {
if (data.resultData.success) {
console.log('任务执行成功')
await awardMission_xh(missionId)
}
} else if (data.resultData.code === '0001' || data.resultData.code === '0004') {
console.log('状态不正确')
} else {
console.log('任务执行失败', data)
}
} else {
console.log('任务执行失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function getJumpInfo(juid) {
return new Promise(async resolve => {
const body = { "juid": juid }
const options = {
"url": `https://ms.jr.jd.com/gw/generic/mission/h5/m/getJumpInfo?reqData=${escape(JSON.stringify(body))}`,
"headers": {
'Host': 'ms.jr.jd.com',
'Origin': 'https://active.jd.com',
'Connection': 'keep-alive',
'Accept': 'application/json',
"Cookie": cookie,
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148/application=JDJR-App&deviceId=1423833363730383d273532393d243445364-d224341443d2938333530323445433033353&eufv=1&clientType=ios&iosType=iphone&clientVersion=6.1.70&HiClVersion=6.1.70&isUpdate=0&osVersion=13.7&osName=iOS&platform=iPhone 6s (A1633/A1688/A1691/A1700)&screen=667*375&src=App Store&netWork=1&netWorkType=1&CpayJS=UnionPay/1.0 JDJR&stockSDK=stocksdk-iphone_3.5.0&sPoint=&jdPay=(*#@jdPaySDK*#@jdPayChannel=jdfinance&jdPayChannelVersion=6.1.70&jdPaySdkVersion=3.00.52.00&jdPayClientName=iOS*#@jdPaySDK*#@)',
'Accept-Language': 'zh-cn',
'Referer': 'https://u1.jr.jd.com/uc-fe-wxgrowing/cloudpig/index/',
'Accept-Encoding': 'gzip, deflate, br'
}
}
$.get(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
if (data) {
console.log('任务执行结果', data)
} else {
console.log(`京东服务器返回空数据`)
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function awardMission_xh(missionId) {
return new Promise((resolve) => {
const body = JSON.stringify({
"missionId": `${missionId}`,
"channelCode": "SUBSIDY2",
"timeStamp": new Date().toString(),
"env": "JRAPP"
})
const options = taskUrl_xh('awardMission', body);
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '0000') {
if (data.resultData.success) {
console.log('领取金贴成功')
}
} else if (data.resultData.code === '0004') {
console.log('不满足领奖条件,可能已经完成')
} else {
console.log('领取金贴失败', data)
}
} else {
console.log('领取金贴失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function channelUserSubsidyInfo_xh() {
return new Promise((resolve) => {
const body = JSON.stringify({
"source": "JD_JR_APP",
"channel": "default",
"channelLv": "",
"apiVersion": "4.0.0",
"riskDeviceParam": "{}",
"others": { "shareId": "" }
})
const options = taskUrl_xh('channelUserSubsidyInfo', body, 'jrm');
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.resultCode === 0) {
if (data.resultData.code === '000') {
console.log(`\n京东账号${$.index} ${$.nickName || $.UserName} 当前总金贴:${data.resultData.data.availableAmount}`)
} else {
console.log('获取当前总金贴失败', data)
}
} else {
console.log('获取当前总金贴失败', data)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function taskUrl_xh(function_id, body, type = 'mission') {
return {
url: `https://ms.jr.jd.com/gw/generic/${type}/h5/m/${function_id}?reqData=${encodeURIComponent(body)}`,
headers: {
'Accept': `*/*`,
'Origin': `https://u.jr.jd.com`,
'Accept-Encoding': `gzip, deflate, br`,
'Cookie': cookie,
'Content-Type': `application/x-www-form-urlencoded;charset=UTF-8`,
'Host': `ms.jr.jd.com`,
'Connection': `keep-alive`,
"User-Agent": $.isNode() ? (process.env.JD_USER_AGENT ? process.env.JD_USER_AGENT : (require('./USER_AGENTS').USER_AGENT)) : ($.getdata('JDUA') ? $.getdata('JDUA') : "jdapp;iPhone;9.4.4;14.3;network/4g;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1"),
'Referer': `https://u.jr.jd.com`,
'Accept-Language': `zh-cn`
}
}
}
function TotalBean() {
return new Promise(async resolve => {
const options = {
url: "https://me-api.jd.com/user_new/info/GetJDUserInfoUnion",
headers: {
Host: "me-api.jd.com",
Accept: "*/*",
Connection: "keep-alive",
Cookie: cookie,
"User-Agent": $.isNode() ? (process.env.JD_USER_AGENT ? process.env.JD_USER_AGENT : (require('./USER_AGENTS').USER_AGENT)) : ($.getdata('JDUA') ? $.getdata('JDUA') : "jdapp;iPhone;9.4.4;14.3;network/4g;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1"),
"Accept-Language": "zh-cn",
"Referer": "https://home.m.jd.com/myJd/newhome.action?sceneval=2&ufc=&",
"Accept-Encoding": "gzip, deflate, br"
}
}
$.get(options, (err, resp, data) => {
try {
if (err) {
$.logErr(err)
} else {
if (data) {
data = JSON.parse(data);
if (data['retcode'] === "1001") {
$.isLogin = false; //cookie过期
return;
}
if (data['retcode'] === "0" && data.data && data.data.hasOwnProperty("userInfo")) {
$.nickName = data.data.userInfo.baseInfo.nickname;
}
} else {
$.log('京东服务器返回空数据');
}
}
} catch (e) {
$.logErr(e)
} finally {
resolve();
}
})
})
}
// prettier-ignore
function Env(t, e) { "undefined" != typeof process && JSON.stringify(process.env).indexOf("GITHUB") > -1 && process.exit(0); class s { constructor(t) { this.env = t } send(t, e = "GET") { t = "string" == typeof t ? { url: t } : t; let s = this.get; return "POST" === e && (s = this.post), new Promise((e, i) => { s.call(this, t, (t, s, r) => { t ? i(t) : e(s) }) }) } get(t) { return this.send.call(this.env, t) } post(t) { return this.send.call(this.env, t, "POST") } } return new class { constructor(t, e) { this.name = t, this.http = new s(this), this.data = null, this.dataFile = "box.dat", this.logs = [], this.isMute = !1, this.isNeedRewrite = !1, this.logSeparator = "\n", this.startTime = (new Date).getTime(), Object.assign(this, e), this.log("", `🔔${this.name}, 开始!`) } isNode() { return "undefined" != typeof module && !!module.exports } isQuanX() { return "undefined" != typeof $task } isSurge() { return "undefined" != typeof $httpClient && "undefined" == typeof $loon } isLoon() { return "undefined" != typeof $loon } toObj(t, e = null) { try { return JSON.parse(t) } catch { return e } } toStr(t, e = null) { try { return JSON.stringify(t) } catch { return e } } getjson(t, e) { let s = e; const i = this.getdata(t); if (i) try { s = JSON.parse(this.getdata(t)) } catch { } return s } setjson(t, e) { try { return this.setdata(JSON.stringify(t), e) } catch { return !1 } } getScript(t) { return new Promise(e => { this.get({ url: t }, (t, s, i) => e(i)) }) } runScript(t, e) { return new Promise(s => { let i = this.getdata("@chavy_boxjs_userCfgs.httpapi"); i = i ? i.replace(/\n/g, "").trim() : i; let r = this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout"); r = r ? 1 * r : 20, r = e && e.timeout ? e.timeout : r; const [o, h] = i.split("@"), n = { url: `http://${h}/v1/scripting/evaluate`, body: { script_text: t, mock_type: "cron", timeout: r }, headers: { "X-Key": o, Accept: "*/*" } }; this.post(n, (t, e, i) => s(i)) }).catch(t => this.logErr(t)) } loaddata() { if (!this.isNode()) return {}; { this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); const t = this.path.resolve(this.dataFile), e = this.path.resolve(process.cwd(), this.dataFile), s = this.fs.existsSync(t), i = !s && this.fs.existsSync(e); if (!s && !i) return {}; { const i = s ? t : e; try { return JSON.parse(this.fs.readFileSync(i)) } catch (t) { return {} } } } } writedata() { if (this.isNode()) { this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); const t = this.path.resolve(this.dataFile), e = this.path.resolve(process.cwd(), this.dataFile), s = this.fs.existsSync(t), i = !s && this.fs.existsSync(e), r = JSON.stringify(this.data); s ? this.fs.writeFileSync(t, r) : i ? this.fs.writeFileSync(e, r) : this.fs.writeFileSync(t, r) } } lodash_get(t, e, s) { const i = e.replace(/\[(\d+)\]/g, ".$1").split("."); let r = t; for (const t of i) if (r = Object(r)[t], void 0 === r) return s; return r } lodash_set(t, e, s) { return Object(t) !== t ? t : (Array.isArray(e) || (e = e.toString().match(/[^.[\]]+/g) || []), e.slice(0, -1).reduce((t, s, i) => Object(t[s]) === t[s] ? t[s] : t[s] = Math.abs(e[i + 1]) >> 0 == +e[i + 1] ? [] : {}, t)[e[e.length - 1]] = s, t) } getdata(t) { let e = this.getval(t); if (/^@/.test(t)) { const [, s, i] = /^@(.*?)\.(.*?)$/.exec(t), r = s ? this.getval(s) : ""; if (r) try { const t = JSON.parse(r); e = t ? this.lodash_get(t, i, "") : e } catch (t) { e = "" } } return e } setdata(t, e) { let s = !1; if (/^@/.test(e)) { const [, i, r] = /^@(.*?)\.(.*?)$/.exec(e), o = this.getval(i), h = i ? "null" === o ? null : o || "{}" : "{}"; try { const e = JSON.parse(h); this.lodash_set(e, r, t), s = this.setval(JSON.stringify(e), i) } catch (e) { const o = {}; this.lodash_set(o, r, t), s = this.setval(JSON.stringify(o), i) } } else s = this.setval(t, e); return s } getval(t) { return this.isSurge() || this.isLoon() ? $persistentStore.read(t) : this.isQuanX() ? $prefs.valueForKey(t) : this.isNode() ? (this.data = this.loaddata(), this.data[t]) : this.data && this.d