Fetch the repository succeeded.
This action will force synchronization from 祝勇成/scripts, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/*
京小超(活动入口:京东APP-》首页-》京东超市-》底部东东超市)
更新时间:2020-10-19
现有功能:每日签到,日常任务(分享游戏,逛会场,关注店铺,卖货能手),收取金币,收取蓝币,商圈活动
Some Functions Modified From https://github.com/Zero-S1/JD_tools/blob/master/JD_superMarket.py
支持京东双账号
京小超兑换奖品请使用此脚本 https://raw.githubusercontent.com/lxk0301/scripts/master/jd_blueCoin.js
脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js
// QuantumultX
[task_local]
#京小超
11 1-23/5 * * * https://raw.githubusercontent.com/lxk0301/scripts/master/jd_superMarket.js, tag=京小超, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true
// Loon
[Script]
cron "11 1-23/5 * * *" script-path=https://raw.githubusercontent.com/lxk0301/scripts/master/jd_superMarket.js,tag=京小超
// Surge
京小超 = type=cron,cronexp="11 1-23/5 * * *",wake-system=1,timeout=320,script-path=https://raw.githubusercontent.com/lxk0301/scripts/master/jd_superMarket.js
*/
const $ = new Env('京小超');
//Node.js用户请在jdCookie.js处填写京东ck;
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [], cookie = '', jdSuperMarketShareArr = [], notify, newShareCodes;
let jdNotify = true;//用来是否关闭弹窗通知,true表示关闭,false表示开启。
let superMarketUpgrade = true;//自动升级,顺序:解锁升级商品、升级货架,true表示自动升级,false表示关闭自动升级
let businessCircleJump = true;//小于对方300热力值自动更换商圈队伍,true表示运行,false表示禁止
let drawLotteryFlag = true;//是否用金币去抽奖,true表示开启,false表示关闭。默认开启
let UserName = '', message = '', subTitle;
const JD_API_HOST = 'https://api.m.jd.com/api';
//助力好友分享码
//此此内容是IOS用户下载脚本到本地使用,填写互助码的地方,同一京东账号的好友互助码请使用@符号隔开。
//下面给出两个账号的填写示例(iOS只支持2个京东账号)
let shareCodes = [ // IOS本地脚本用户这个列表填入你要助力的好友的shareCode
//账号一的好友shareCode,不同好友的shareCode中间用@符号隔开
'-4msulYas0O2JsRhE-2TA5XZmBQ@eU9Yar_mb_9z92_WmXNG0w@eU9YaejjYv4g8T2EwnsVhQ',
//账号二的好友shareCode,不同好友的shareCode中间用@符号隔开
'aURoM7PtY_Q@eU9Ya-y2N_5z9DvXwyIV0A@eU9YaOnjYK4j-GvWmXIWhA',
]
!(async () => {
await requireConfig();
if (!cookiesArr[0]) {
$.msg($.name, '【提示】请先获取京东账号一cookie\n直接使用NobyDa的京东签到获取', 'https://bean.m.jd.com/', {"open-url": "https://bean.m.jd.com/"});
}
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;
$.coincount = 0;//收取了多少个蓝币
$.coinerr = "";
$.blueCionTimes = 0;
console.log(`\n开始【京东账号${$.index}】${UserName}\n`);
message = '';
subTitle = '';
await shareCodesFormat();//格式化助力码
await jdSuperMarket();
// await receiveLimitProductBlueCoin();
}
}
})()
.catch((e) => {
$.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '')
})
.finally(() => {
$.done();
})
async function jdSuperMarket() {
await receiveGoldCoin();//收金币
if ($.goldCoinData.data.bizCode === 300) {
$.msg($.name, `【提示】京东账号${$.index}${UserName} cookie已过期!请先获取cookie\n直接使用NobyDa的京东签到获取`, 'https://bean.m.jd.com/', {"open-url": "https://bean.m.jd.com/"});
if ($.index === 1) {
$.setdata('', 'CookieJD');//cookie失效,故清空cookie。
} else if ($.index === 2){
$.setdata('', 'CookieJD2');//cookie失效,故清空cookie。
}
if ($.isNode()) {
await notify.sendNotify(`${$.name}cookie已失效`, `京东账号${$.index} ${UserName}\n请重新登录获取cookie`);
}
return
}
await businessCircleActivity();//商圈活动
await receiveBlueCoin();//收蓝币(小费)
await receiveLimitProductBlueCoin();//收限时商品的蓝币
await smtgSign();//每日签到
await doDailyTask();//做日常任务,分享,关注店铺,
await help();//商圈助力
await smtgQueryPkTask();//做商品PK任务
await myProductList();//货架
await drawLottery();
await upgrade();//升级货架和商品
await manageProduct();
await limitTimeProduct();
await smtgHome();
await showMsg();
}
function showMsg() {
$.log(`\n${message}\n`);
jdNotify = $.getdata('jdSuperMarketNotify') ? $.getdata('jdSuperMarketNotify') : jdNotify;
if (!jdNotify || jdNotify === 'false') {
$.msg($.name, subTitle ,`【京东账号${$.index}】${UserName}\n${message}`);
}
}
//抽奖功能(招财进宝)
async function drawLottery() {
const smtg_lotteryIndexRes = await smtg_lotteryIndex();
drawLotteryFlag = $.getdata('jdSuperMarketLottery') ? $.getdata('jdSuperMarketLottery') : drawLotteryFlag;
if ($.isNode() && process.env.jdSuperMarketLottery) {
drawLotteryFlag = process.env.jdSuperMarketLottery;
}
if (`${drawLotteryFlag}` === 'true') {
if (smtg_lotteryIndexRes && smtg_lotteryIndexRes.data.bizCode === 0) {
const { result } = smtg_lotteryIndexRes.data
if (result.goldCoins > result.costCoins && result.remainedDrawTimes > 0) {
const drawLotteryRes = await smtg_drawLottery();
console.log(`\n抽奖结果${JSON.stringify(drawLotteryRes)}`);
await drawLottery();
} else {
console.log(`\n已抽奖或者金币不足`);
console.log(`详情:${JSON.stringify(smtg_lotteryIndexRes)}`)
}
}
} else {
console.log(`设置的为不抽奖`)
}
}
async function help() {
console.log(`\n开始助力好友`);
for (let code of newShareCodes) {
if (!code) continue;
const res = await smtgDoAssistPkTask(code);
console.log(`助力好友${JSON.stringify(res)}`);
}
}
async function doDailyTask() {
const smtgQueryShopTaskRes = await smtgQueryShopTask();
if (smtgQueryShopTaskRes.code === 0 && smtgQueryShopTaskRes.data.success) {
const taskList = smtgQueryShopTaskRes.data.result.taskList;
console.log(`\n日常赚钱任务 完成状态`)
for (let item of taskList) {
console.log(` ${item['title'].length < 4 ? item['title']+`\xa0` : item['title']} ${item['finishNum'] === item['targetNum'] ? '已完成':'未完成'} ${item['finishNum']}/${item['targetNum']}`)
//领奖
if (item.taskStatus === 1 && item.prizeStatus === 1) {
const res = await smtgObtainShopTaskPrize(item.taskId);
console.log(`领取做完任务的奖励${JSON.stringify(res)}`)
}
if (item.type === 1 && item.taskStatus === 0) {
// 分享任务
const res = await smtgDoShopTask(item.taskId);
console.log(`${item.subTitle}结果${JSON.stringify(res)}`)
}
if (item.type === 2) {
//逛会场
if (item.taskStatus === 0) {
console.log('开始逛会场')
const itemId = item.content[item.type].itemId;
const res = await smtgDoShopTask(item.taskId, itemId);
console.log(`${item.subTitle}结果${JSON.stringify(res)}`);
}
}
if (item.type === 8) {
//关注店铺
if (item.taskStatus === 0) {
console.log('开始关注店铺')
const itemId = item.content[item.type].itemId;
const res = await smtgDoShopTask(item.taskId, itemId);
console.log(`${item.subTitle}结果${JSON.stringify(res)}`);
}
}
if ((item.type === 8 || item.type === 2) && item.taskStatus === 0) {
await doDailyTask();
}
}
}
}
async function receiveGoldCoin() {
$.goldCoinData = await smtgReceiveCoin(0);
if ($.goldCoinData.data.bizCode === 0) {
console.log(`领取金币成功${$.goldCoinData.data.result.receivedGold}`)
message += `【领取金币】${$.goldCoinData.data.result.receivedGold}个\n`;
} else {
console.log(`${$.goldCoinData.data.bizMsg}`);
}
}
//领限时商品的蓝币
async function receiveLimitProductBlueCoin() {
const res = await smtgReceiveCoin(1);
console.log(`\n限时商品领蓝币结果:[${res.data.bizMsg}]\n`);
if (res.data.bizCode === 0) {
message += `【限时商品】获得${res.data.result.receivedBlue}个蓝币\n`;
}
}
//领蓝币
function receiveBlueCoin(timeout = 0) {
return new Promise((resolve) => {
setTimeout( ()=>{
$.get(taskUrl('smtg_receiveCoin', { type: 2 }), async (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
$.data = data;
if ($.data.data.bizCode !== 0 && $.data.data.bizCode !== 809) {
$.coinerr = `${$.data.data.bizMsg}`;
message += `【收取小费】${$.data.data.bizMsg}\n`;
console.log(`收取蓝币失败:${$.data.data.bizMsg}`)
return
}
if ($.data.data.bizCode === 0) {
$.coincount += $.data.data.result.receivedBlue;
$.blueCionTimes ++;
console.log(`【京东账号${$.index}】${UserName} 第${$.blueCionTimes}次领蓝币成功,获得${$.data.data.result.receivedBlue}个\n`)
if (!$.data.data.result.isNextReceived) {
message += `【收取小费】${$.coincount}个\n`;
return
}
}
await receiveBlueCoin(3000);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve()
}
})
},timeout)
})
}
//每日签到
function smtgSign() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_sign'), async (err, resp, data) => {
try {
// console.log('ddd----ddd', data)
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
// console.log('ddd----ddd', data)
const signList = await smtgSignList();
if (signList.data.bizCode === 0) {
$.todayDay = signList.data.result.todayDay;
}
if (data.code === 0 && data.data.success) {
message += `【第${$.todayDay}日签到】成功,奖励${data.data.result.rewardBlue}蓝币\n`
} else {
message += `【第${$.todayDay}日签到】${data.data.bizMsg}\n`
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
// 商圈活动
async function businessCircleActivity() {
// console.log(`\n商圈PK奖励,次日商圈大战开始的时候自动领领取\n`)
const myCircleId = '-4msulYas0O2JsRhE-2TA5XZmBQ_1602947898742';
const businessCirclePKDetailRes = await smtg_businessCirclePKDetail();
if (businessCirclePKDetailRes && businessCirclePKDetailRes.data.bizCode === 0) {
const { businessCircleVO, otherBusinessCircleVO, inviteCode, pkSettleTime } = businessCirclePKDetailRes.data.result;
console.log(`\n【您的商圈inviteCode互助码】:\n${inviteCode}\n\n`);
const businessCircleIndexRes = await smtg_businessCircleIndex();
const { result } = businessCircleIndexRes.data;
const { pkPrizeStatus, pkStatus } = result;
if (pkPrizeStatus === 2) {
console.log(`开始领取商圈PK奖励`);
const getPkPrizeRes = await smtg_getPkPrize();
console.log(`商圈PK奖励领取结果:${JSON.stringify(getPkPrizeRes)}`)
if (getPkPrizeRes.data.bizCode === 0) {
const { pkPersonPrizeInfoVO, pkTeamPrizeInfoVO } = getPkPrizeRes.data.result;
message += `【商圈PK奖励】${pkPersonPrizeInfoVO.blueCoin + pkTeamPrizeInfoVO.blueCoin}蓝币领取成功\n`;
}
}
console.log(`我方商圈人气值/对方商圈人气值:${businessCircleVO.hotPoint}/${otherBusinessCircleVO.hotPoint}`);
console.log(`我方商圈成员数量/对方商圈成员数量:${businessCircleVO.memberCount}/${otherBusinessCircleVO.memberCount}`);
message += `【我方商圈】${businessCircleVO.memberCount}/${businessCircleVO.hotPoint}\n`;
message += `【对方商圈】${otherBusinessCircleVO.memberCount}/${otherBusinessCircleVO.hotPoint}\n`;
// message += `【我方商圈人气值】${businessCircleVO.hotPoint}\n`;
// message += `【对方商圈人气值】${otherBusinessCircleVO.hotPoint}\n`;
businessCircleJump = $.getdata('jdBusinessCircleJump') ? $.getdata('jdBusinessCircleJump') : businessCircleJump;
if ($.isNode() && process.env.jdBusinessCircleJump) {
businessCircleJump = process.env.jdBusinessCircleJump;
}
if (`${businessCircleJump}` === 'false') {
console.log(`\n小于对方300热力值自动更换商圈队伍: 您设置的是禁止自动更换商圈队伍\n`);
return
}
if (otherBusinessCircleVO.hotPoint - businessCircleVO.hotPoint > 300 && (Date.now() > (pkSettleTime - 24 * 60 * 60 * 1000))) {
//退出该商圈
if (inviteCode === '-4msulYas0O2JsRhE-2TA5XZmBQ') return;
console.log(`商圈PK已过1天,对方商圈人气值还大于我方商圈人气值300,退出该商圈重新加入`);
await smtg_quitBusinessCircle();
} else if (otherBusinessCircleVO.hotPoint > businessCircleVO.hotPoint && (Date.now() > (pkSettleTime - 24 * 60 * 60 * 1000 * 2))) {
//退出该商圈
if (inviteCode === '-4msulYas0O2JsRhE-2TA5XZmBQ') return;
console.log(`商圈PK已过2天,对方商圈人气值还大于我方商圈人气值,退出该商圈重新加入`);
await smtg_quitBusinessCircle();
}
} else if (businessCirclePKDetailRes && businessCirclePKDetailRes.data.bizCode === 222) {
console.log(`${businessCirclePKDetailRes.data.bizMsg}`);
console.log(`开始领取商圈PK奖励`);
const getPkPrizeRes = await smtg_getPkPrize();
console.log(`商圈PK奖励领取结果:${JSON.stringify(getPkPrizeRes)}`)
if (getPkPrizeRes && getPkPrizeRes.data.bizCode === 0) {
const { pkPersonPrizeInfoVO, pkTeamPrizeInfoVO } = getPkPrizeRes.data.result;
$.msg($.name, '', `【京东账号${$.index}】 ${UserName}\n【商圈PK奖励】${pkPersonPrizeInfoVO.blueCoin + pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
if ($.isNode()) {
await notify.sendNotify(`${$.name}`, `【京东账号${$.index}】 ${UserName}\n【商圈PK奖励】${pkPersonPrizeInfoVO.blueCoin + pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
}
}
} else if (businessCirclePKDetailRes && businessCirclePKDetailRes.data.bizCode === 206) {
console.log(`您暂未加入商圈,现在给您加入lxk0301的商圈`);
const joinBusinessCircleRes = await smtg_joinBusinessCircle(myCircleId);
console.log(`参加商圈结果:${JSON.stringify(joinBusinessCircleRes)}`)
if (joinBusinessCircleRes.data.bizCode !== 0) {
console.log(`您加入lxk0301的商圈失败,现在给您随机加入一个商圈`);
const BusinessCircleList = await smtg_getBusinessCircleList();
if (BusinessCircleList.data.bizCode === 0) {
const { businessCircleVOList } = BusinessCircleList.data.result;
const { circleId } = businessCircleVOList[randomFriendPin(0, businessCircleVOList.length -1)];
const joinBusinessCircleRes = await smtg_joinBusinessCircle(circleId);
console.log(`随机加入商圈结果:${JSON.stringify(joinBusinessCircleRes)}`)
}
}
} else {
console.log(`访问商圈详情失败:${JSON.stringify(businessCirclePKDetailRes)}`);
}
}
//我的货架
async function myProductList() {
const shelfListRes = await smtg_shelfList();
if (shelfListRes.data.bizCode === 0) {
const { shelfList } = shelfListRes.data.result;
console.log(`货架数量:${shelfList && shelfList.length}`)
for (let item of shelfList) {
console.log(`\nshelfId/name : ${item.shelfId}/${item.name}`);
console.log(`货架等级 level ${item.level}/${item.maxLevel}`);
console.log(`上架状态 groundStatus ${item.groundStatus}`);
console.log(`解锁状态 unlockStatus ${item.unlockStatus}`);
console.log(`升级状态 upgradeStatus ${item.upgradeStatus}`);
if (item.unlockStatus === 0) {
console.log(`${item.name}不可解锁`)
} else if (item.unlockStatus === 1) {
console.log(`${item.name}可解锁`);
await smtg_unlockShelf(item.shelfId);
} else if (item.unlockStatus === 2) {
console.log(`${item.name}已经解锁`)
}
if (item.groundStatus === 1) {
console.log(`${item.name}可上架`);
const productListRes = await smtg_shelfProductList(item.shelfId);
if (productListRes.data.bizCode === 0) {
const { productList } = productListRes.data.result;
if (productList && productList.length > 0) {
// 此处限时商品未分配才会出现
let limitTimeProduct = [];
for (let item of productList) {
if (item.productType === 2) {
limitTimeProduct.push(item);
}
}
if (limitTimeProduct && limitTimeProduct.length > 0) {
//上架限时商品
await smtg_ground(limitTimeProduct[0].productId, item.shelfId);
} else {
await smtg_ground(productList[productList.length - 1].productId, item.shelfId);
}
} else {
console.log("无可上架产品");
await unlockProductByCategory(item.shelfId.split('-')[item.shelfId.split('-').length - 1])
}
}
} else if (item.groundStatus === 2 || item.groundStatus === 3) {
if (item.productInfo.productType === 2) {
console.log(`[${item.name}][限时商品]`)
} else if (item.productInfo.productType === 1){
console.log(`[${item.name}]`)
} else {
console.log(`[${item.name}][productType:${item.productInfo.productType}]`)
}
}
}
}
}
//根据类型解锁一个商品,货架可上架商品时调用
async function unlockProductByCategory(category) {
const smtgProductListRes = await smtg_productList();
if (smtgProductListRes.data.bizCode === 0) {
let productListByCategory = [];
const { productList } = smtgProductListRes.data.result;
for (let item of productList) {
if (item['unlockStatus'] === 1 && item['shelfCategory'].toString() === category) {
productListByCategory.push(item);
}
}
if (productListByCategory && productListByCategory.length > 0) {
console.log(`待解锁的商品数量:${productListByCategory.length}`);
await smtg_unlockProduct(productListByCategory[productListByCategory.length - 1]['productId']);
} else {
console.log("该类型商品暂时无法解锁");
}
}
}
//升级货架和商品
async function upgrade() {
superMarketUpgrade = $.getdata('jdSuperMarketUpgrade') ? $.getdata('jdSuperMarketUpgrade') : superMarketUpgrade;
if ($.isNode() && process.env.jdSuperMarketUpgrade) {
superMarketUpgrade = process.env.jdSuperMarketUpgrade;
}
if (`${superMarketUpgrade}` === 'false') {
console.log(`\n自动升级: 您设置的是关闭自动升级\n`);
return
}
console.log(`\n*************开始检测升级商品,如遇到商品能解锁,则优先解锁***********`)
console.log('目前没有平稳升级,只取倒数几个商品进行升级,普通货架取倒数4个商品,冰柜货架取倒数3个商品,水果货架取倒数2个商品')
const smtgProductListRes = await smtg_productList();
if (smtgProductListRes.data.bizCode === 0) {
let productType1 = [], shelfCategory_1 = [], shelfCategory_2 = [], shelfCategory_3 = [];
const { productList } = smtgProductListRes.data.result;
for (let item of productList) {
if (item['productType'] === 1) {
productType1.push(item);
}
}
for (let item2 of productType1) {
if (item2['shelfCategory'] === 1) {
shelfCategory_1.push(item2);
}
if (item2['shelfCategory'] === 2) {
shelfCategory_2.push(item2);
}
if (item2['shelfCategory'] === 3) {
shelfCategory_3.push(item2);
}
}
shelfCategory_1 = shelfCategory_1.slice(-4);
shelfCategory_2 = shelfCategory_2.slice(-3);
shelfCategory_3 = shelfCategory_3.slice(-2);
const shelfCategorys = shelfCategory_1.concat(shelfCategory_2).concat(shelfCategory_3);
console.log(`\n商品名称 归属货架 目前等级 解锁状态 可升级状态`)
for (let item of shelfCategorys) {
console.log(` ${item["name"].length<3?item["name"]+`\xa0`:item["name"]} ${item['shelfCategory'] === 1 ? '普通货架' : item['shelfCategory'] === 2 ? '冰柜货架' : item['shelfCategory'] === 3 ? '水果货架':'未知货架'} ${item["unlockStatus"] === 0 ? '---' : item["level"]+'级'} ${item["unlockStatus"] === 0 ? '未解锁' : '已解锁'} ${item["upgradeStatus"] === 1 ? '可以升级' : item["upgradeStatus"] === 0 ? '不可升级':item["upgradeStatus"]}`)
}
shelfCategorys.sort(sortSyData);
for (let item of shelfCategorys) {
if (item['unlockStatus'] === 1) {
console.log(`\n开始解锁商品:${item['name']}`)
await smtg_unlockProduct(item['productId']);
break;
}
if (item['upgradeStatus'] === 1) {
console.log(`\n开始升级商品:${item['name']}`)
await smtg_upgradeProduct(item['productId']);
break;
}
}
}
console.log('\n**********开始检查能否升级货架***********');
const shelfListRes = await smtg_shelfList();
if (shelfListRes.data.bizCode === 0) {
const { shelfList } = shelfListRes.data.result;
let shelfList_upgrade = [];
for (let item of shelfList) {
if (item['upgradeStatus'] === 1) {
shelfList_upgrade.push(item);
}
}
console.log(`待升级货架数量${shelfList_upgrade.length}个`);
if (shelfList_upgrade && shelfList_upgrade.length > 0) {
shelfList_upgrade.sort(sortSyData);
console.log("\n可升级货架名 等级 升级所需金币");
for (let item of shelfList_upgrade) {
console.log(` [${item["name"]}] ${item["level"]}/${item["maxLevel"]} ${item["upgradeCostGold"]}`);
}
console.log(`开始升级[${shelfList_upgrade[0].name}]货架,当前等级${shelfList_upgrade[0].level},所需金币${shelfList_upgrade[0].upgradeCostGold}\n`);
await smtg_upgradeShelf(shelfList_upgrade[0].shelfId);
}
}
}
async function manageProduct() {
console.log(`安排上货(单价最大商品)`);
const shelfListRes = await smtg_shelfList();
if (shelfListRes.data.bizCode === 0) {
const { shelfList } = shelfListRes.data.result;
console.log(`我的货架数量:${shelfList && shelfList.length}`);
let shelfListUnlock = [];//可以上架的货架
for (let item of shelfList) {
if (item['groundStatus'] === 1 || item['groundStatus'] === 2) {
shelfListUnlock.push(item);
}
}
for (let item of shelfListUnlock) {
const productListRes = await smtg_shelfProductList(item.shelfId);//查询该货架可以上架的商品
if (productListRes.data.bizCode === 0) {
const { productList } = productListRes.data.result;
let productNow = [], productList2 = [];
for (let item1 of productList) {
if (item1['groundStatus'] === 2) {
productNow.push(item1);
}
if (item1['productType'] === 1) {
productList2.push(item1);
}
}
// console.log(`productNow${JSON.stringify(productNow)}`)
// console.log(`productList2${JSON.stringify(productList2)}`)
if (productList2 && productList2.length > 0) {
productList2.sort(sortTotalPriceGold);
// console.log(productList2)
if (productNow && productNow.length > 0) {
if (productList2.slice(-1)[0]['productId'] === productNow[0]['productId']) {
console.log(`货架[${item.shelfId}]${productNow[0]['name']}已上架\n`)
continue;
}
}
await smtg_ground(productList2.slice(-1)[0]['productId'], item['shelfId'])
}
}
}
}
}
async function limitTimeProduct() {
const smtgProductListRes = await smtg_productList();
if (smtgProductListRes.data.bizCode === 0) {
const { productList } = smtgProductListRes.data.result;
let productList2 = [];
for (let item of productList) {
if (item['productType'] === 2 && item['groundStatus'] === 1) {
//未上架并且限时商品
console.log(`出现限时商品[${item.name}]`)
productList2.push(item);
}
}
if (productList2 && productList2.length > 0) {
for (let item2 of productList2) {
const { shelfCategory } = item2;
const shelfListRes = await smtg_shelfList();
if (shelfListRes.data.bizCode === 0) {
const { shelfList } = shelfListRes.data.result;
let shelfList2 = [];
for (let item3 of shelfList) {
if (item3['shelfCategory'] === shelfCategory && (item3['groundStatus'] === 1 || item3['groundStatus'] === 2)) {
shelfList2.push(item3['shelfId']);
}
}
if (shelfList2 && shelfList2.length > 0) {
const groundRes = await smtg_ground(item2['productId'], shelfList2.slice(-1)[0]);
if (groundRes.data.bizCode === 0) {
console.log(`限时商品上架成功`);
message += `【限时商品】上架成功\n`;
}
}
}
}
} else {
console.log(`限时商品已经上架或暂无限时商品`);
}
}
}
//=============================================脚本使用到的京东API=====================================
function smtgDoShopTask(taskId, itemId) {
return new Promise((resolve) => {
const body = {
"taskId": taskId
}
if (itemId) {
body.itemId = itemId;
}
$.get(taskUrl('smtg_doShopTask', body), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgObtainShopTaskPrize(taskId) {
return new Promise((resolve) => {
const body = {
"taskId": taskId
}
$.get(taskUrl('smtg_obtainShopTaskPrize', body), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgQueryShopTask() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_queryShopTask'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgSignList() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_signList'), (err, resp, data) => {
try {
// console.log('ddd----ddd', data)
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgHome() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_home'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
if (data.code === 0 && data.data.success) {
const { result } = data.data;
const { shopName, totalGold, totalBlue } = result;
$.circleStatus = result.circleStatus;
subTitle = shopName;
message += `【总金币】${totalGold}个\n`;
message += `【总蓝币】${totalBlue}个\n`;
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//查询商圈任务列表
function smtgQueryPkTask() {
return new Promise( (resolve) => {
$.get(taskUrl('smtg_queryPkTask'), async (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
if (data.code === 0) {
if (data.data.bizCode === 0) {
const { taskList } = data.data.result;
console.log(`\n 商圈任务 状态`)
for (let item of taskList) {
if (item.taskStatus === 1) {
if (item.prizeStatus === 1) {
//任务已做完,但未领取奖励, 现在为您领取奖励
await smtgObtainPkTaskPrize(item.taskId);
} else if (item.prizeStatus === 0) {
console.log(`[${item.title}] 已做完 ${item.finishNum}/${item.targetNum}`);
}
} else {
console.log(`[${item.title}] 未做完 ${item.finishNum}/${item.targetNum}`)
if (item.content) {
const { itemId } = item.content[item.type];
console.log('itemId', itemId)
await smtgDoPkTask(item.taskId, itemId);
}
}
}
} else {
console.log(`${data.data.bizMsg}`)
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//PK邀请好友
function smtgDoAssistPkTask(code) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_doAssistPkTask', {"inviteCode": code}), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgReceiveCoin(type) {
return new Promise((resolve) => {
const body = {
"type": type
}
$.get(taskUrl('smtg_receiveCoin', body), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//领取PK任务做完后的奖励
function smtgObtainPkTaskPrize(taskId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_obtainPkTaskPrize', {"taskId": taskId}), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgDoPkTask(taskId, itemId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_doPkTask', {"taskId": taskId, "itemId": itemId}), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_businessCirclePKDetail() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_businessCirclePKDetail'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_getBusinessCircleList() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_getBusinessCircleList'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//加入商圈API
function smtg_joinBusinessCircle(circleId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_joinBusinessCircle', { circleId }), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_businessCircleIndex() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_businessCircleIndex'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//领取商圈PK奖励
function smtg_getPkPrize() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_getPkPrize'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_quitBusinessCircle() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_quitBusinessCircle'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//我的货架
function smtg_shelfList() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_shelfList'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//检查某个货架可以上架的商品列表
function smtg_shelfProductList(shelfId) {
return new Promise((resolve) => {
console.log(`开始检查货架[${shelfId}] 可上架产品`)
$.get(taskUrl('smtg_shelfProductList', { shelfId }), (err, resp, data) => {
try {
// console.log(`检查货架[${shelfId}] 可上架产品结果:${data}`)
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//升级商品
function smtg_upgradeProduct(productId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_upgradeProduct', { productId }), (err, resp, data) => {
try {
// console.log(`升级商品productId[${productId}]结果:${data}`);
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
console.log(`升级商品结果\n${data}`);
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//解锁商品
function smtg_unlockProduct(productId) {
return new Promise((resolve) => {
console.log(`开始解锁商品`)
$.get(taskUrl('smtg_unlockProduct', { productId }), (err, resp, data) => {
try {
// console.log(`解锁商品productId[${productId}]结果:${data}`);
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//升级货架
function smtg_upgradeShelf(shelfId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_upgradeShelf', { shelfId }), (err, resp, data) => {
try {
// console.log(`升级货架shelfId[${shelfId}]结果:${data}`);
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
console.log(`升级货架结果\n${data}`)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//解锁货架
function smtg_unlockShelf(shelfId) {
return new Promise((resolve) => {
console.log(`开始解锁货架`)
$.get(taskUrl('smtg_unlockShelf', { shelfId }), (err, resp, data) => {
try {
// console.log(`解锁货架shelfId[${shelfId}]结果:${data}`);
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_ground(productId, shelfId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_ground', { productId, shelfId }), (err, resp, data) => {
try {
// console.log(`上架商品结果:${data}`);
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_productList() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_productList'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_lotteryIndex() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_lotteryIndex'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_drawLottery() {
return new Promise(async (resolve) => {
await $.wait(1000);
$.get(taskUrl('smtg_drawLottery'), (err, resp, data) => {
try {
if (err) {
console.log('\n京小超: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function sortSyData(a, b) {
return a['upgradeCostGold'] - b['upgradeCostGold']
}
function sortTotalPriceGold(a, b) {
return a['previewTotalPriceGold'] - b['previewTotalPriceGold']
}
//格式化助力码
function shareCodesFormat() {
return new Promise(resolve => {
console.log(`第${$.index}个京东账号的助力码:::${jdSuperMarketShareArr[$.index - 1]}`)
if (jdSuperMarketShareArr[$.index - 1]) {
newShareCodes = jdSuperMarketShareArr[$.index - 1].split('@');
} else {
console.log(`由于您未提供与京京东账号相对应的shareCode,下面助力将采纳本脚本自带的助力码\n`)
const tempIndex = $.index > shareCodes.length ? (shareCodes.length - 1) : ($.index - 1);
newShareCodes = shareCodes[tempIndex].split('@');
}
console.log(`格式化后第${$.index}个京东账号的助力码${JSON.stringify(newShareCodes)}`)
resolve();
})
}
function requireConfig() {
return new Promise(resolve => {
// console.log('\n开始获取京小超配置文件\n')
notify = $.isNode() ? require('./sendNotify') : '';
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
const jdShareCodes = $.isNode() ? require('./jdSuperMarketShareCodes.js') : '';
//IOS等用户直接用NobyDa的jd cookie
if ($.isNode()) {
Object.keys(jdCookieNode).forEach((item) => {
if (jdCookieNode[item]) {
cookiesArr.push(jdCookieNode[item])
}
})
if (process.env.JD_DEBUG && process.env.JD_DEBUG === 'false') console.log = () => {};
} else {
cookiesArr.push($.getdata('CookieJD'));
cookiesArr.push($.getdata('CookieJD2'));
}
console.log(`共${cookiesArr.length}个京东账号\n`)
if ($.isNode()) {
Object.keys(jdShareCodes).forEach((item) => {
if (jdShareCodes[item]) {
jdSuperMarketShareArr.push(jdShareCodes[item])
}
})
} else {
const boxShareCodeArr = ['jd_supermarket1', 'jd_supermarket2', 'jd_supermarket3'];
const boxShareCodeArr2 = ['jd2_supermarket1', 'jd2_supermarket2', 'jd2_supermarket3'];
const isBox1 = boxShareCodeArr.some((item) => {
const boxShareCode = $.getdata(item);
return (boxShareCode !== undefined && boxShareCode !== null && boxShareCode !== '');
});
const isBox2 = boxShareCodeArr2.some((item) => {
const boxShareCode = $.getdata(item);
return (boxShareCode !== undefined && boxShareCode !== null && boxShareCode !== '');
});
if (isBox1) {
let temp = [];
for (const item of boxShareCodeArr) {
if ($.getdata(item)) {
temp.push($.getdata(item))
}
}
jdSuperMarketShareArr.push(temp.join('@'));
}
if (isBox2) {
let temp = [];
for (const item of boxShareCodeArr2) {
if ($.getdata(item)) {
temp.push($.getdata(item))
}
}
jdSuperMarketShareArr.push(temp.join('@'));
}
}
console.log(`\n京小超商圈助力码::${JSON.stringify(jdSuperMarketShareArr)}`);
console.log(`您提供了${jdSuperMarketShareArr.length}个账号的助力码\n`);
resolve()
})
}
function taskUrl(function_id, body = {}) {
return {
url: `${JD_API_HOST}?functionId=${function_id}&appid=jdsupermarket&clientVersion=8.0.0&client=m&body=${escape(JSON.stringify(body))}&t=${Date.now()}`,
headers: {
'User-Agent': 'jdapp;iPhone;9.0.8;13.6;Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1',
'Host': 'api.m.jd.com',
'Cookie': cookie,
'Referer': 'https://jdsupermarket.jd.com/game',
'Origin': 'https://jdsupermarket.jd.com',
}
}
}
function randomFriendPin(m,n) {
return Math.floor(Math.random()*(m - n) + n);
}
// prettier-ignore
function Env(t,e){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,o)=>{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.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}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 o=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");o=o?1*o:20,o=e&&e.timeout?e.timeout:o;const[r,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:o},headers:{"X-Key":r,Accept:"*/*"}};this.post(a,(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),o=JSON.stringify(this.data);s?this.fs.writeFileSync(t,o):i?this.fs.writeFileSync(e,o):this.fs.writeFileSync(t,o)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let o=t;for(const t of i)if(o=Object(o)[t],void 0===o)return s;return o}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),o=s?this.getval(s):"";if(o)try{const t=JSON.parse(o);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,o]=/^@(.*?)\.(.*?)$/.exec(e),r=this.getval(i),h=i?"null"===r?null:r||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,o,t),s=this.setval(JSON.stringify(e),i)}catch(e){const r={};this.lodash_set(r,o,t),s=this.setval(JSON.stringify(r),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"]),this.isSurge()||this.isLoon()?$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)}):this.isQuanX()?$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:o,body:r}=t;e(null,{status:s,statusCode:i,headers:o,body:r},r)},t=>e(t)):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:o,body:r}=t;e(null,{status:s,statusCode:i,headers:o,body:r},r)},t=>e(t)))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:o,body:r}=t;e(null,{status:s,statusCode:i,headers:o,body:r},r)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:o,body:r}=t;e(null,{status:s,statusCode:i,headers:o,body:r},r)},t=>e(t))}}time(t){let e={"M+":(new Date).getMonth()+1,"d+":(new Date).getDate(),"H+":(new Date).getHours(),"m+":(new Date).getMinutes(),"s+":(new Date).getSeconds(),"q+":Math.floor(((new Date).getMonth()+3)/3),S:(new Date).getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,((new Date).getFullYear()+"").substr(4-RegExp.$1.length)));for(let s in e)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[s]:("00"+e[s]).substr((""+e[s]).length)));return t}msg(e=t,s="",i="",o){const r=t=>{if(!t||!this.isLoon()&&this.isSurge())return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}}};this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,r(o)):this.isQuanX()&&$notify(e,s,i,r(o)));let h=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];h.push(e),s&&h.push(s),i&&h.push(i),console.log(h.join("\n")),this.logs=this.logs.concat(h)}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。