mirror of
https://github.com/shufflewzc/faker2.git
synced 2025-04-23 02:48:44 +08:00
update
This commit is contained in:
parent
708fcbb4e3
commit
fa44ce0c39
71
jd_dwapp.js
71
jd_dwapp.js
@ -1,13 +1,16 @@
|
|||||||
/*
|
/*
|
||||||
积分换话费
|
积分换话费
|
||||||
入口:首页-生活·缴费-积分换话费
|
入口:首页-生活·缴费-积分换话费
|
||||||
cron "33 5 * * *" jd_dwapp.js
|
update:2023/6/10
|
||||||
|
33 3,18 * * * jd_dwapp.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const $ = new Env('积分换话费');
|
const $ = new Env('积分换话费');
|
||||||
const notify = $.isNode() ? require('./sendNotify') : '';
|
const notify = $.isNode() ? require('./sendNotify') : '';
|
||||||
|
//Node.js用户请在jdCookie.js处填写京东ck;
|
||||||
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
|
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
|
||||||
CryptoJS = $.isNode() ? require('crypto-js') : CryptoJS;
|
CryptoJS = $.isNode() ? require('crypto-js') : CryptoJS;
|
||||||
|
//IOS等用户直接用NobyDa的jd cookie
|
||||||
let cookiesArr = [], cookie = '';
|
let cookiesArr = [], cookie = '';
|
||||||
if ($.isNode()) {
|
if ($.isNode()) {
|
||||||
Object.keys(jdCookieNode).forEach((item) => { cookiesArr.push(jdCookieNode[item]) })
|
Object.keys(jdCookieNode).forEach((item) => { cookiesArr.push(jdCookieNode[item]) })
|
||||||
@ -28,7 +31,7 @@ if ($.isNode()) {
|
|||||||
$.isLogin = true;
|
$.isLogin = true;
|
||||||
$.nickName = '';
|
$.nickName = '';
|
||||||
message = '';
|
message = '';
|
||||||
//await TotalBean();
|
await TotalBean();
|
||||||
console.log(`\n******开始【京东账号${$.index}】${$.nickName || $.UserName}*********\n`);
|
console.log(`\n******开始【京东账号${$.index}】${$.nickName || $.UserName}*********\n`);
|
||||||
if (!$.isLogin) {
|
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" });
|
$.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" });
|
||||||
@ -48,12 +51,19 @@ async function main() {
|
|||||||
await usersign()
|
await usersign()
|
||||||
await tasklist();
|
await tasklist();
|
||||||
if ($.tasklist) {
|
if ($.tasklist) {
|
||||||
for (let i = 0; i < $.tasklist.length; i++) {
|
for (let i of $.tasklist) {
|
||||||
console.log(`去领取${$.tasklist[i].taskDesc}任务`)
|
if (i.viewStatus == 0) {
|
||||||
await taskrecord($.tasklist[i].id)
|
console.log(`去做 ${i.taskDesc}`);
|
||||||
await $.wait(3000);
|
await taskrecord(i.id);
|
||||||
console.log(`去领取积分`)
|
await $.wait(3000);
|
||||||
await taskreceive($.tasklist[i].id)
|
console.log(`去领积分`);
|
||||||
|
await taskreceive(i.id)
|
||||||
|
} else if (i.viewStatus == 2) {
|
||||||
|
console.log(`去领积分`);
|
||||||
|
await taskreceive(i.id);
|
||||||
|
} else if (i.viewStatus == 1) {
|
||||||
|
$.log(`${i.name} 已完成浏览`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -71,9 +81,9 @@ async function taskrecord(id) {
|
|||||||
if (data) {
|
if (data) {
|
||||||
if (data.code === 200) {
|
if (data.code === 200) {
|
||||||
if (data.data.dwUserTask) {
|
if (data.data.dwUserTask) {
|
||||||
$.log(" 领取任务成功")
|
$.log("----领取任务成功")
|
||||||
} else {
|
} else {
|
||||||
$.log(" 此任务已经领取过了")
|
$.log("----此任务已经领取过了")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(JSON.stringify(data))
|
console.log(JSON.stringify(data))
|
||||||
@ -89,6 +99,7 @@ async function taskrecord(id) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function taskreceive(id) {
|
async function taskreceive(id) {
|
||||||
enc = await sign(id)
|
enc = await sign(id)
|
||||||
let body = { "id": id, ...enc }
|
let body = { "id": id, ...enc }
|
||||||
@ -102,11 +113,11 @@ async function taskreceive(id) {
|
|||||||
data = JSON.parse(data)
|
data = JSON.parse(data)
|
||||||
if (data) {
|
if (data) {
|
||||||
if (data.code === 200 && data.data.success) {
|
if (data.code === 200 && data.data.success) {
|
||||||
console.log(` 领取任务积分:获得${data.data.giveScoreNum}`)
|
console.log(`----领取成功:获得${data.data.giveScoreNum}积分`);
|
||||||
} else if (data.code === 200 && !data.data.success) {
|
} else if (data.code === 200 && !data.data.success) {
|
||||||
console.log(" 积分已经领取完了")
|
console.log("----积分已经领取完了");
|
||||||
} else {
|
} else {
|
||||||
console.log(JSON.stringify(data))
|
console.log(JSON.stringify(data));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -118,6 +129,7 @@ async function taskreceive(id) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async function usersign() {
|
async function usersign() {
|
||||||
body = await sign()
|
body = await sign()
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
@ -127,12 +139,14 @@ async function usersign() {
|
|||||||
console.log(`${err}`)
|
console.log(`${err}`)
|
||||||
console.log(`${$.name} API请求失败,请检查网路重试`)
|
console.log(`${$.name} API请求失败,请检查网路重试`)
|
||||||
} else {
|
} else {
|
||||||
data = JSON.parse(data)
|
data = JSON.parse(data);
|
||||||
|
JSON.stringify(data);
|
||||||
if (data) {
|
if (data) {
|
||||||
if (data.code === 200) {
|
if (data.code === 200) {
|
||||||
console.log(`签到成功:获得积分${data.data.signInfo.signNum}\n`)
|
console.log(`签到成功:获得积分${data.data.signInfo.signNum}`);
|
||||||
|
$.log(`总积分:${data.data.totalNum}\n`);
|
||||||
} else {
|
} else {
|
||||||
console.log("似乎签到完成了\n")
|
console.log("似乎签到完成了\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -144,10 +158,24 @@ async function usersign() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async function tasklist() {
|
async function tasklist() {
|
||||||
body = await sign()
|
body = await sign();
|
||||||
|
body.channelSource = 'txzs';
|
||||||
|
let opt = {
|
||||||
|
url: `https://api.m.jd.com/user/color/task/dwList`,
|
||||||
|
body: `appid=txsm-m&client=h5&functionId=dwapp_task_dwList&body=${encodeURIComponent(JSON.stringify(body))}`,
|
||||||
|
headers: {
|
||||||
|
"Origin": "https://txsm-m.jd.com",
|
||||||
|
"Accept": "*/*",
|
||||||
|
"User-Agent": `jdapp;iPhone;10.1.0;13.5;${$.UUID};network/wifi;model/iPhone11,6;addressid/4596882376;appBuild/167774;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1`,
|
||||||
|
"Referer": "https://txsm-m.jd.com/",
|
||||||
|
"Cookie": cookie,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
$.post(taskPostUrl("task/dwList", body), (err, resp, data) => {
|
$.post(opt, (err, resp, data) => {
|
||||||
try {
|
try {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log(`${err}`)
|
console.log(`${err}`)
|
||||||
@ -185,6 +213,7 @@ function taskPostUrl(function_id, body) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function TotalBean() {
|
function TotalBean() {
|
||||||
return new Promise(async resolve => {
|
return new Promise(async resolve => {
|
||||||
const options = {
|
const options = {
|
||||||
@ -229,6 +258,7 @@ function TotalBean() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUUID(format = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', UpperCase = 0) {
|
function getUUID(format = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', UpperCase = 0) {
|
||||||
return format.replace(/[xy]/g, function (c) {
|
return format.replace(/[xy]/g, function (c) {
|
||||||
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
||||||
@ -240,6 +270,7 @@ function getUUID(format = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', UpperCase
|
|||||||
return uuid;
|
return uuid;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function sign(en) {
|
async function sign(en) {
|
||||||
time = new Date().getTime();
|
time = new Date().getTime();
|
||||||
let encStr = en || '';
|
let encStr = en || '';
|
||||||
|
341
jd_price.js
Normal file
341
jd_price.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user