546 lines
47 KiB
JavaScript
546 lines
47 KiB
JavaScript
|
/*
|
|||
|
甜蜜七夕 跨越时空中意你
|
|||
|
*/
|
|||
|
const $ = new Env("甜蜜七夕 跨越时空中意你");
|
|||
|
const jdCookieNode = $.isNode() ? require("./jdCookie.js") : "";
|
|||
|
const notify = $.isNode() ? require("./sendNotify") : "";
|
|||
|
let cookiesArr = [], cookie = "", message = "";
|
|||
|
let ownCode = null;
|
|||
|
let authorCodeList = [];
|
|||
|
if ($.isNode()) {
|
|||
|
Object.keys(jdCookieNode).forEach((item) => {
|
|||
|
cookiesArr.push(jdCookieNode[item]);
|
|||
|
});
|
|||
|
if (process.env.JD_DEBUG && process.env.JD_DEBUG === "false") console.log = () => {};
|
|||
|
} else {
|
|||
|
let cookiesData = $.getdata("CookiesJD") || "[]";
|
|||
|
cookiesData = JSON.parse(cookiesData);
|
|||
|
cookiesArr = cookiesData.map((item) => item.cookie);
|
|||
|
cookiesArr.reverse();
|
|||
|
cookiesArr.push(...[$.getdata("CookieJD2"), $.getdata("CookieJD")]);
|
|||
|
cookiesArr.reverse();
|
|||
|
cookiesArr = cookiesArr.filter((item) => !!item);
|
|||
|
}
|
|||
|
!(async () => {
|
|||
|
$.getAuthorCodeListerr = false;
|
|||
|
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;
|
|||
|
}
|
|||
|
// authorCodeList = await getAuthorCodeList('https://raw.githubusercontent.com/okyyds/duck/master/code/lzdz10.json')
|
|||
|
// if ($.getAuthorCodeListerr === false) {
|
|||
|
// authorCodeList = [
|
|||
|
// 'f7d7bcdc4d3e408ea0a584f27f617e4b',
|
|||
|
// '78cd453ae0af483e8c7da5d3f8a857bd',
|
|||
|
// '40619ea93a2c42c3ae46a1e37111a7ea',
|
|||
|
// ]
|
|||
|
// }
|
|||
|
for (let i = 0; i < cookiesArr.length; i++) {
|
|||
|
if (cookiesArr[i]) {
|
|||
|
cookie = cookiesArr[i];
|
|||
|
originCookie = cookiesArr[i];
|
|||
|
newCookie = "";
|
|||
|
$.UserName = decodeURIComponent(cookie.match(/pt_pin=(.+?);/) && cookie.match(/pt_pin=(.+?);/)[1]);
|
|||
|
$.index = i + 1;
|
|||
|
$.isLogin = true;
|
|||
|
$.nickName = "";
|
|||
|
await checkCookie();
|
|||
|
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;
|
|||
|
}
|
|||
|
$.bean = 0;
|
|||
|
$.ADID = getUUID("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", 1);
|
|||
|
$.UUID = getUUID("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
|
|||
|
authorCodeList = [
|
|||
|
'f28c07d319e646ebbf5f1fdb5742e8fb',
|
|||
|
// '8462a2fbeb32488fbe85d26d282f05c7',
|
|||
|
// '4bd1f2cb22d14e13b8203467048fd2f4',
|
|||
|
];
|
|||
|
// $.authorCode = authorCodeList[random(0, authorCodeList.length)];
|
|||
|
$.authorCode = ownCode ? ownCode : authorCodeList[random(0, authorCodeList.length)]
|
|||
|
$.authorNum = `${random(1000000, 9999999)}`;
|
|||
|
$.randomCode = random(1000000, 9999999);
|
|||
|
$.activityId = "dz32b9e7834db5821a2c983c10d854";
|
|||
|
$.activityShopId = "1000003835";
|
|||
|
$.activityUrl = `https://lzdz1-isv.isvjcloud.com/dingzhi/jul/qixiSecond/activity?activityId=${$.activityId}&shareUuid=${encodeURIComponent($.authorCode)}&adsource=null&shareuserid4minipg=${encodeURIComponent($.secretPin)}&shopid=${$.activityShopId}&lng=00.000000&lat=00.000000&sid=&un_area=`;
|
|||
|
await member();
|
|||
|
await $.wait(3000);
|
|||
|
if ($.bean > 0) {
|
|||
|
message += `\n【京东账号${$.index}】${$.nickName || $.UserName} \n └ 获得 ${$.bean} 京豆。`;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (message !== "") {
|
|||
|
if ($.isNode()) {
|
|||
|
await notify.sendNotify($.name, message, "", `\n`);
|
|||
|
} else {
|
|||
|
$.msg($.name, "有点儿收获", message);
|
|||
|
}
|
|||
|
}
|
|||
|
})()
|
|||
|
.catch((e) => {
|
|||
|
$.log("", `❌ ${$.name}, 失败! 原因: ${e}!`, "");
|
|||
|
})
|
|||
|
.finally(() => {
|
|||
|
$.done();
|
|||
|
});
|
|||
|
|
|||
|
async function member() {
|
|||
|
$.token = null;
|
|||
|
$.secretPin = null;
|
|||
|
$.openCardActivityId = null;
|
|||
|
lz_cookie = {};
|
|||
|
await getFirstLZCK();
|
|||
|
await getToken();
|
|||
|
await task("dz/common/getSimpleActInfoVo", `activityId=${$.activityId}`, 1);
|
|||
|
if ($.token) {
|
|||
|
await getMyPing();
|
|||
|
if ($.secretPin) {
|
|||
|
console.log("去助力 -> " + $.authorCode);
|
|||
|
await taskaccessLog("common/accessLogWithAD", `venderId=${$.activityShopId}&code=99&pin=${encodeURIComponent($.secretPin)}&activityId=${$.activityId}&pageUrl=${$.activityUrl}&subType=app&adSource=null`, 1);
|
|||
|
await $.wait(1000);
|
|||
|
await task("wxActionCommon/getUserInfo", `pin=${encodeURIComponent($.secretPin)}`, 1);
|
|||
|
if ($.index === 1) {
|
|||
|
await task("jul/qixiSecond/activityContent", `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}&pinImg=&nick=${encodeURIComponent($.pin)}&cjyxPin=&cjhyPin=&shareUuid=${encodeURIComponent($.authorCode)}`, 0, 1);
|
|||
|
} else {
|
|||
|
await task("jul/qixiSecond/activityContent", `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}&pinImg=&nick=${encodeURIComponent($.pin)}&cjyxPin=&cjhyPin=&shareUuid=${encodeURIComponent($.authorCode)}`);
|
|||
|
}
|
|||
|
$.log("关注店铺");
|
|||
|
await task("jul/qixiSecond/saveTask", `activityId=${$.activityId}&actorUuid=${encodeURIComponent($.actorUuid)}&pin=${encodeURIComponent($.secretPin)}&taskType=23&taskValue=23&shareUuid=${encodeURIComponent($.authorCode)}`);
|
|||
|
await $.wait(1000);
|
|||
|
await task("taskact/common/drawContent", `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
await $.wait(1000);
|
|||
|
await task("jul/qixiSecond/initOpenCard", `pin=${encodeURIComponent($.secretPin)}&activityId=${$.activityId}&shareUuid=${encodeURIComponent($.authorCode)}`);
|
|||
|
$.log("加入店铺会员");
|
|||
|
if ($.openCardList) {
|
|||
|
for (const vo of $.openCardList) {
|
|||
|
console.log(vo.openStatus)
|
|||
|
$.log(`>>> 去加入 ${vo.venderId}`);
|
|||
|
if (vo.openStatus === false) {
|
|||
|
$.log(`>>> 准备加入会员`);
|
|||
|
await getShopOpenCardInfo({ venderId: `${vo.venderId}`, channel: "401" }, vo.venderId);
|
|||
|
await bindWithVender({ venderId: `${vo.venderId}`, bindByVerifyCodeFlag: 1, registerExtend: {}, writeChildFlag: 0, activityId: $.openCardActivityId, channel: 401 }, vo.venderId);
|
|||
|
await $.wait(1000);
|
|||
|
} else {
|
|||
|
$.log(`>>> 已经是会员`);
|
|||
|
}
|
|||
|
}
|
|||
|
} else {
|
|||
|
$.log("没有获取到对应的任务。\n");
|
|||
|
}
|
|||
|
await $.wait(1000);
|
|||
|
await task("jul/qixiSecond/initOpenCard", `pin=${encodeURIComponent($.secretPin)}&activityId=${$.activityId}&shareUuid=${encodeURIComponent($.authorCode)}`);
|
|||
|
console.log("去助力 -> " + $.authorCode);
|
|||
|
// await task("linkgame/assist/status", `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}&shareUuid=${$.authorCode}`);
|
|||
|
// await task("linkgame/assist", `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}&shareUuid=${$.authorCode}`);
|
|||
|
// await task('linkgame/help/list', `pin=${encodeURIComponent($.secretPin)}&activityId=${$.activityId}`)
|
|||
|
|
|||
|
// await task('linkgame/task/info', `pin=${encodeURIComponent($.secretPin)}&activityId=${$.activityId}`)
|
|||
|
// console.log('任务 -> ')
|
|||
|
// await $.wait(2000)
|
|||
|
// await task('opencard/addCart', `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
// await $.wait(2000)
|
|||
|
// await task('linkgame/sendAllCoupon', `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
// await getFirstLZCK()
|
|||
|
// await getToken();
|
|||
|
// console.log('抽奖 -> ')
|
|||
|
// await $.wait(2000)
|
|||
|
// await task('linkgame/draw', `activityId=${$.activityId}&actorUuid=${$.actorUuid}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
// console.log('100 -> ')
|
|||
|
// await getFirstLZCK()
|
|||
|
// await getToken();
|
|||
|
await $.wait(2000)
|
|||
|
// await task('linkgame/draw/record', `activityId=${$.activityId}&actorUuid=${$.actorUuid}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
await task('jul/qixiSecond/draw', `activityId=${$.activityId}&pin=${encodeURIComponent($.secretPin)}`);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function task(function_id, body, isCommon = 0, own = 0) {
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.post(taskUrl(function_id, body, isCommon), async (err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
$.log(err);
|
|||
|
} else {
|
|||
|
if (data) {
|
|||
|
data = JSON.parse(data);
|
|||
|
if (data.result) {
|
|||
|
switch (function_id) {
|
|||
|
case "dz/common/getSimpleActInfoVo":
|
|||
|
$.jdActivityId = data.data.jdActivityId;
|
|||
|
$.venderId = data.data.venderId;
|
|||
|
$.activityType = data.data.activityType;
|
|||
|
// console.log($.venderId)
|
|||
|
break;
|
|||
|
case "wxActionCommon/getUserInfo":
|
|||
|
break;
|
|||
|
case "jul/qixiSecond/activityContent":
|
|||
|
if (!data.data.hasEnd) {
|
|||
|
$.log(`开启【${data.data.activityName}】活动`);
|
|||
|
$.log("-------------------");
|
|||
|
if ($.index === 1) {
|
|||
|
ownCode = data.data.actorUuid;
|
|||
|
console.log(ownCode);
|
|||
|
}
|
|||
|
$.actorUuid = data.data.actorUuid;
|
|||
|
} else {
|
|||
|
$.log("活动已经结束");
|
|||
|
}
|
|||
|
break;
|
|||
|
case "jul/qixiSecond/initOpenCard":
|
|||
|
$.openCardList = data.data.openInfo;
|
|||
|
$.openCardStatus = data.data.allOpenCard;
|
|||
|
// console.log(data)
|
|||
|
break;
|
|||
|
case "jul/qixiSecond/saveTask":
|
|||
|
console.log(data);
|
|||
|
break;
|
|||
|
case "linkgame/sign":
|
|||
|
console.log(data);
|
|||
|
break;
|
|||
|
case "opencard/addCart":
|
|||
|
if (data.data) {
|
|||
|
console.log(data.data);
|
|||
|
}
|
|||
|
break;
|
|||
|
case "linkgame/sendAllCoupon":
|
|||
|
if (data.data) {
|
|||
|
console.log(data.data);
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
case "interaction/write/writePersonInfo":
|
|||
|
console.log(data);
|
|||
|
break;
|
|||
|
case "jul/qixiSecond/draw":
|
|||
|
console.log(data);
|
|||
|
break;
|
|||
|
case "linkgame/draw/record":
|
|||
|
console.log(data.data);
|
|||
|
break;
|
|||
|
case "linkgame/assist/status":
|
|||
|
$.log(JSON.stringify(data));
|
|||
|
break;
|
|||
|
case "linkgame/assist":
|
|||
|
$.log(JSON.stringify(data));
|
|||
|
break;
|
|||
|
case "opencard/help/list":
|
|||
|
$.log(JSON.stringify(data));
|
|||
|
break;
|
|||
|
default:
|
|||
|
// $.log(JSON.stringify(data))
|
|||
|
break;
|
|||
|
}
|
|||
|
} else {
|
|||
|
// $.log(JSON.stringify(data))
|
|||
|
}
|
|||
|
} else {
|
|||
|
// $.log("京东没有返回数据")
|
|||
|
}
|
|||
|
}
|
|||
|
} catch (error) {
|
|||
|
$.log(error);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
function taskaccessLog(function_id, body, isCommon = 0) {
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.post(taskUrl(function_id, body, isCommon), async (err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
$.log(err);
|
|||
|
} else {
|
|||
|
// console.log(resp);
|
|||
|
if (resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${originCookie};`;
|
|||
|
for (let sk of resp["headers"]["set-cookie"]) {
|
|||
|
lz_cookie[sk.split(";")[0].substr(0, sk.split(";")[0].indexOf("="))] = sk.split(";")[0].substr(sk.split(";")[0].indexOf("=") + 1);
|
|||
|
}
|
|||
|
for (const vo of Object.keys(lz_cookie)) {
|
|||
|
cookie += vo + "=" + lz_cookie[vo] + ";";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
} catch (error) {
|
|||
|
console.log(error);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
function getAuthorCodeList(url) {
|
|||
|
return new Promise((resolve) => {
|
|||
|
const options = {
|
|||
|
url: `${url}?${new Date()}`,
|
|||
|
timeout: 10000,
|
|||
|
headers: {
|
|||
|
"User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1 Edg/87.0.4280.88",
|
|||
|
},
|
|||
|
};
|
|||
|
$.get(options, async (err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
// $.log(err)
|
|||
|
$.getAuthorCodeListerr = false;
|
|||
|
} else {
|
|||
|
if (data) data = JSON.parse(data);
|
|||
|
$.getAuthorCodeListerr = true;
|
|||
|
}
|
|||
|
} catch (e) {
|
|||
|
$.logErr(e, resp);
|
|||
|
data = null;
|
|||
|
} finally {
|
|||
|
resolve(data);
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
function taskUrl(function_id, body, isCommon) {
|
|||
|
return {
|
|||
|
url: isCommon ? `https://lzdz1-isv.isvjcloud.com/${function_id}` : `https://lzdz1-isv.isvjcloud.com/dingzhi/${function_id}`,
|
|||
|
headers: {
|
|||
|
Host: "lzdz1-isv.isvjcloud.com",
|
|||
|
Accept: "application/json",
|
|||
|
"X-Requested-With": "XMLHttpRequest",
|
|||
|
"Accept-Language": "zh-cn",
|
|||
|
"Accept-Encoding": "gzip, deflate, br",
|
|||
|
"Content-Type": "application/x-www-form-urlencoded",
|
|||
|
Origin: "https://lzdz1-isv.isvjcloud.com",
|
|||
|
"User-Agent": `jdapp;iPhone;9.5.4;13.6;${$.UUID};network/wifi;ADID/${$.ADID};model/iPhone10,3;addressid/0;appBuild/167668;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1`,
|
|||
|
Connection: "keep-alive",
|
|||
|
Referer: $.activityUrl,
|
|||
|
Cookie: $.cookie,
|
|||
|
},
|
|||
|
body: body,
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
function getMyPing() {
|
|||
|
let opt = {
|
|||
|
url: `https://lzdz1-isv.isvjcloud.com/customer/getMyPing`,
|
|||
|
headers: {
|
|||
|
Host: "lzdz1-isv.isvjcloud.com",
|
|||
|
Accept: "application/json",
|
|||
|
"X-Requested-With": "XMLHttpRequest",
|
|||
|
"Accept-Language": "zh-cn",
|
|||
|
"Accept-Encoding": "gzip, deflate, br",
|
|||
|
"Content-Type": "application/x-www-form-urlencoded",
|
|||
|
Origin: "https://lzdz1-isv.isvjcloud.com",
|
|||
|
"User-Agent": `jdapp;iPhone;9.5.4;13.6;${$.UUID};network/wifi;ADID/${$.ADID};model/iPhone10,3;addressid/0;appBuild/167668;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1`,
|
|||
|
Connection: "keep-alive",
|
|||
|
Referer: $.activityUrl,
|
|||
|
Cookie: cookie,
|
|||
|
},
|
|||
|
body: `userId=${$.activityShopId}&token=${$.token}&fromType=APP&riskType=1`,
|
|||
|
};
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.post(opt, (err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
$.log(err);
|
|||
|
} else {
|
|||
|
if (resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${originCookie}`;
|
|||
|
if ($.isNode()) {
|
|||
|
for (let sk of resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${cookie}${sk.split(";")[0]};`;
|
|||
|
}
|
|||
|
} else {
|
|||
|
for (let ck of resp["headers"]["Set-Cookie"].split(",")) {
|
|||
|
cookie = `${cookie}${ck.split(";")[0]};`;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (resp["headers"]["Set-Cookie"]) {
|
|||
|
cookie = `${originCookie}`;
|
|||
|
if ($.isNode()) {
|
|||
|
for (let sk of resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${cookie}${sk.split(";")[0]};`;
|
|||
|
}
|
|||
|
} else {
|
|||
|
for (let ck of resp["headers"]["Set-Cookie"].split(",")) {
|
|||
|
cookie = `${cookie}${ck.split(";")[0]};`;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (data) {
|
|||
|
data = JSON.parse(data);
|
|||
|
if (data.result) {
|
|||
|
$.log(`你好:${data.data.nickname}`);
|
|||
|
$.pin = data.data.nickname;
|
|||
|
$.secretPin = data.data.secretPin;
|
|||
|
cookie = `${cookie};AUTH_C_USER=${data.data.secretPin}`;
|
|||
|
} else {
|
|||
|
$.log(data.errorMessage);
|
|||
|
}
|
|||
|
} else {
|
|||
|
$.log("京东返回了空数据");
|
|||
|
}
|
|||
|
$.cookie = cookie
|
|||
|
}
|
|||
|
} catch (error) {
|
|||
|
$.log(error);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
function getFirstLZCK() {
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.get(
|
|||
|
{
|
|||
|
url: $.activityUrl,
|
|||
|
headers: {
|
|||
|
"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",
|
|||
|
},
|
|||
|
},
|
|||
|
(err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
console.log(err);
|
|||
|
} else {
|
|||
|
if (resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${originCookie}`;
|
|||
|
if ($.isNode()) {
|
|||
|
for (let sk of resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${cookie}${sk.split(";")[0]};`;
|
|||
|
}
|
|||
|
} else {
|
|||
|
for (let ck of resp["headers"]["Set-Cookie"].split(",")) {
|
|||
|
cookie = `${cookie}${ck.split(";")[0]};`;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (resp["headers"]["Set-Cookie"]) {
|
|||
|
cookie = `${originCookie}`;
|
|||
|
if ($.isNode()) {
|
|||
|
for (let sk of resp["headers"]["set-cookie"]) {
|
|||
|
cookie = `${cookie}${sk.split(";")[0]};`;
|
|||
|
}
|
|||
|
} else {
|
|||
|
for (let ck of resp["headers"]["Set-Cookie"].split(",")) {
|
|||
|
cookie = `${cookie}${ck.split(";")[0]};`;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
} catch (error) {
|
|||
|
console.log(error);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
}
|
|||
|
);
|
|||
|
});
|
|||
|
}
|
|||
|
function getToken() {
|
|||
|
let opt = {
|
|||
|
url: `https://api.m.jd.com/client.action?functionId=isvObfuscator`,
|
|||
|
headers: {
|
|||
|
Host: "api.m.jd.com",
|
|||
|
"Content-Type": "application/x-www-form-urlencoded",
|
|||
|
Accept: "*/*",
|
|||
|
Connection: "keep-alive",
|
|||
|
Cookie: cookie,
|
|||
|
"User-Agent": "JD4iPhone/167650 (iPhone; iOS 13.7; Scale/3.00)",
|
|||
|
"Accept-Language": "zh-Hans-CN;q=1",
|
|||
|
"Accept-Encoding": "gzip, deflate, br",
|
|||
|
},
|
|||
|
body: `body=%7B%22url%22%3A%20%22https%3A//lzkj-isv.isvjcloud.com%22%2C%20%22id%22%3A%20%22%22%7D&uuid=hjudwgohxzVu96krv&client=apple&clientVersion=9.4.0&st=1620476162000&sv=111&sign=f9d1b7e3b943b6a136d54fe4f892af05`,
|
|||
|
};
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.post(opt, (err, resp, data) => {
|
|||
|
try {
|
|||
|
if (err) {
|
|||
|
$.log(err);
|
|||
|
} else {
|
|||
|
if (data) {
|
|||
|
data = JSON.parse(data);
|
|||
|
if (data.code === "0") {
|
|||
|
$.token = data.token;
|
|||
|
}
|
|||
|
} else {
|
|||
|
$.log("京东返回了空数据");
|
|||
|
}
|
|||
|
}
|
|||
|
} catch (error) {
|
|||
|
$.log(error);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
function random(min, max) {
|
|||
|
return Math.floor(Math.random() * (max - min)) + min;
|
|||
|
}
|
|||
|
function getUUID(format = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", UpperCase = 0) {
|
|||
|
return format.replace(/[xy]/g, function (c) {
|
|||
|
var r = (Math.random() * 16) | 0,
|
|||
|
v = c == "x" ? r : (r & 0x3) | 0x8;
|
|||
|
if (UpperCase) {
|
|||
|
uuid = v.toString(36).toUpperCase();
|
|||
|
} else {
|
|||
|
uuid = v.toString(36);
|
|||
|
}
|
|||
|
return uuid;
|
|||
|
});
|
|||
|
}
|
|||
|
function checkCookie() {
|
|||
|
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": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1",
|
|||
|
"Accept-Language": "zh-cn",
|
|||
|
Referer: "https://home.m.jd.com/myJd/newhome.action?sceneval=2&ufc=&",
|
|||
|
"Accept-Encoding": "gzip, deflate, br",
|
|||
|
},
|
|||
|
};
|
|||
|
return new Promise((resolve) => {
|
|||
|
$.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.hasOwnProperty("userInfo")) {
|
|||
|
$.nickName = data.data.userInfo.baseInfo.nickname;
|
|||
|
}
|
|||
|
} else {
|
|||
|
$.log("京东返回了空数据");
|
|||
|
}
|
|||
|
}
|
|||
|
} catch (e) {
|
|||
|
$.logErr(e);
|
|||
|
} finally {
|
|||
|
resolve();
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
// prettier-ignore
|
|||
|
var _0xod2='jsjiami.com.v6',_0xod2_=['_0xod2'],_0x2521=[_0xod2,'\x66\x53\x5a\x6a\x61\x47\x46\x75\x62\x6d\x56\x73\x50\x54\x51\x77\x4d\x53\x5a\x79\x5a\x58\x52\x31\x63\x6d\x35\x56\x63\x6d\x77\x39','\x61\x30\x70\x69\x59\x32\x67\x3d','\x64\x30\x6c\x71\x59\x55\x30\x3d','\x53\x46\x6c\x48\x5a\x6e\x41\x3d','\x53\x31\x4e\x45\x56\x45\x6f\x3d','\x65\x57\x70\x36\x51\x6b\x59\x3d','\x56\x6b\x4e\x4a\x54\x46\x6b\x3d','\x57\x6d\x5a\x6b\x57\x47\x38\x3d','\x62\x55\x5a\x70\x5a\x32\x34\x3d','\x65\x6e\x52\x6a\x65\x47\x4d\x3d','\x53\x46\x52\x42\x52\x45\x51\x3d','\x63\x30\x52\x74\x63\x6b\x34\x3d','\x64\x47\x4e\x32\x64\x6d\x6f\x3d','\x51\x6b\x56\x52\x64\x45\x30\x3d','\x64\x6e\x5a\x61\x51\x58\x4d\x3d','\x57\x57\x56\x77\x54\x31\x63\x3d','\x4f\x47\x46\x6b\x5a\x6d\x49\x3d','\x61\x6d\x52\x66\x63\x32\x68\x76\x63\x46\x39\x74\x5a\x57\x31\x69\x5a\x58\x49\x3d','\x4f\x53\x34\x79\x4c\x6a\x41\x3d','\x61\x6d\x52\x7a\x61\x57\x64\x75\x4c\x6d\x4e\x6d','\x57\x57\x78\x42\x64\x6d\x67\x3d','\x59\x58\x52\x70\x63\x46\x6f\x3d','\x59\x58\x42\x77\x62\x47\x6c\x6a\x59\x58\x52\x70\x62\x32\x34\x76\x61\x6e\x4e\x76\x62\x67\x3d\x3d','\x55\x56\x52\x45\x52\x31\x59\x3d','\x56\x57\x5a\x6a\x61\x32\x59\x3d','\x64\x30\x64\x35\x63\x32\x30\x3d','\x5a\x56\x42\x70\x59\x55\x34\x3d','\x61\x6d\x56\x6c\x62\x45\x77\x3d','\x64\x56\x56\x69\x63\x6d\x6f\x3d','\x5a\x30\x52\x43\x64\x56\x67\x3d','\x62\x31\x52\x42\x62\x6b\x73\x3d','\x59\x6e\x5a\x34\x62\x6b\x49\x3d','\x53\x46\x4a\x46\x59\x32\x51\x3d','\x62\x47\x39\x6e\x52\x58\x4a\x79','\x64\x58\x70\x79\x59\x55\x34\x3d','\x53\x45\x39\x77\x52\x46\x45\x3d','\x62\x48\x4e\x72\x63\x45\x55\x3d','\x61\x45\x74\x35\x54\x6b\x4d\x3d','\x5a\x57\x35\x32','\x55\x30\x6c\x48\x54\x6c\x39\x56\x55\x6b\x77\x3d','\x55\x57\x31\x50\x63\x6c\x51\x3d','\x64\x55\x4a\x30\x62\x6b\x63\x3d','\x63\x31\x56\x47\x52\x45\x34\x3d','\x5a\x6d\x78\x76\x62\x33\x49\x3d','\x63\x6d\x46\x75\x5a\x47\x39\x74','\x62\x47\x56\x75\x5a\x33\x52\x6f','\x61\x48\x52\x30\x63\x48\x4d\x36\x4c\x79\x39\x6a\x5a\x47\x34\x75\x62\x6e\x6f\x75\x62\x48\x55\x76\x5a\x32\x56\x30\x61\x44\x56\x7a\x64\x41\x3d\x3d','\x61\x31\x6c\x51\x52\x6c\x49\x3d','\x63\x47\x39\x7a\x64\x41\x3d\x3d','\x63\x6c\x5a\x56\x62\x46\x6b\x3d','\x56\x30\x56\x31\x51\x6c\x49\x3d','\x63\x57\x5a\x48\x54\x48\x51\x3d','\x59\x58\x42\x77\x62\x48\x6b\x3d','\x52\x55\x64\x6f\x52\x33\x63\x3d','\x55\x6b\x52\x32\x56\x32\x73\x3d','\x59\x56\x4e\x6c\x52\x30\x4d\x3d','\x64\x31\x4e\x4f\x55\x48\x63\x3d','\x63\x33\x5a\x71\x53\x30\x67\x3d','\x52\x55\x78\x75\x63\x56\x59\x3d','\x56\x47\x64\x6c\x62\x57\x38\x3d','\x59\x58\x4e\x33\x59\x33\x59\x3d','\x51\x6b\x39\x58\x62\x58\x45\x3d','\x54\x6b\x70\x44\x59\x6d\x73\x3d','\x61\x33\x70\x47\x57\x45\x55\x3d','\x53\x47\x46\x48\x56\x57\x59\x3d','\x63\x6e\x42\x56\x52\x58\x41\x3d','\x59\x58\x42\x70\x4c\x6d\x30\x75\x61\x6d\x51\x75\x59\x32\x39\x74','\x4b\x69\x38\x71','\x61\x32\x56\x6c\x63\x43\x31\x68\x62\x47\x6c\x32\x5a\x51\x3d\x3d','\x65\x6d\x67\x74\x59\x32\x34\x3d','\x5a\x33\x70\x70\x63\x43\x77\x67\x5a\x47\x56\x6d\x62\x47\x46\x30\x5a\x53\x77\x67\x59\x6e\x49\x3d','\x61\x48\x52\x30\x63\x48\x4d\x36\x4c\x79\x39\x68\x63\x47\x6b\x75\x62\x53\x35\x71\x5a\x43\x35\x6a\x62\x32\x30\x76\x59\x32\x78\x70\x5a\x57\x35\x30\x4c\x6d\x46\x6a\x64\x47\x6c\x76\x62\x6a\x39\x68\x63\x48\x42\x70\x5a\x44\x31\x71\x5a\x46\x39\x7a\x61\x47\x39\x77\x58\x32\x31\x6c\x62\x57\x4a\x6c\x63\x69\x5a\x6d\x64\x57\x35\x6a\x64\x47\x6c\x76\x62\x6b\x6c\x6b\x50\x57\x64\x6c\x64\x46\x4e\x6f\x62\x33\x42\x50\x63\x47\x56\x75\x51\x32\x46\x79\x5a\x45\x6c\x75\x5a\x6d\x38\x6d\x59\x6d\x39\x6b\x65\x54\x30\x3d','\x57\x6e\x6c\x76\x61\x57\x73\x3d','\x63\x33\x52\x79\x61\x57\x35\x6e\x61\x57\x5a\x35','\x4a\x6d\x4e\x73\x61\x57\x56\x75\x64\x44\x31\x49\x4e\x53\x5a\x6a\x62\x47\x6c\x6c\x62\x6e\x52\x57\x5a\x58\x4a\x7a\x61\x57\x39\x75\x50\x54\x6b\x75\x4d\x69\x34\x77\x4a\x6e\x56\x31\x61\x57\x51\x39\x4f\x44\x67\x34\x4f\x44\x67\x3d','\x5a\x56\x64\x6b\x55\x6d\x55\x3d','\x52\x56\x4e\x31\x65\x57\x6f\x3d','\x55\x30\x56\x5a\x65\x6c\x6f\x3d','\x61\x6d\x52\x68\x63\x48\x41\x37\x61\x56\x42\x6f\x62\x32\x35\x6c\x4f\x7a\x6b\x75\x4e\x53\x34\x30\x4f\x7a\x45\x7a\x4c\x6a\x59\x37','\x56\x56\x56\x4a\x52\x41\x3d\x3d','\x4f\x32\x35
|
|||
|
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.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"])
|