-
Notifications
You must be signed in to change notification settings - Fork 13
/
jd_superMarket.js
1304 lines (1225 loc) · 42.3 KB
/
jd_superMarket.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* 东东超市
* 京东APP首页-京东超市-底部东东超市
* =================QuantumultX==============
* [task_local]
* #东东超市
* 11 * * * * jd_superMarket.js, tag=东东超市, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true
* ===========Loon===============
* [Script]
* cron "11 * * * *" script-path=jd_superMarket.js,tag=东东超市
* =======Surge===========
* 东东超市 = type=cron,cronexp="11 * * * *",wake-system=1,timeout=3600,script-path=jd_superMarket.js
* ==============小火箭=============
* 东东超市 = type=cron,script-path=jd_superMarket.js, cronexpr="11 * * * *", timeout=3600, enable=true
*/
const $ = new Env('东东超市');
let cookiesArr = [], cookie = '', jdSuperMarketShareArr = [], notify, newShareCodes;
let helpAu = false;//给作者助力 免费拿,省钱大赢家等活动.默认true是,false不助力.
helpAu = $.isNode() ? (process.env.HELP_AUTHOR ? process.env.HELP_AUTHOR === 'true' : helpAu) : helpAu;
let jdNotify = true;//用来是否关闭弹窗通知,true表示关闭,false表示开启。
let drawLotteryFlag = false;//是否用500蓝币去抽奖,true表示开启,false表示关闭。默认关闭
let message = '', subTitle;
const JD_API_HOST = 'https://api.m.jd.com/api';
let shareCodes = []
!(async () => {
await requireConfig();
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"});
}
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 jdSuperMarket();
await showMsg();
}
}
})()
.catch((e) => {
$.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '')
})
.finally(() => {
$.done();
})
async function jdSuperMarket() {
try {
await smtgHome();
await receiveBlueCoin();//收蓝币(小费)
await daySign();//每日签到
await BeanSign()//
await doDailyTask();//做日常任务,分享,关注店铺,
await drawLottery();//抽奖功能(招财进宝)
await smtg_shopIndex();
await smtgHome();
await receiveUserUpgradeBlue();
await Home();
} catch (e) {
$.logErr(e)
}
}
function showMsg() {
$.log(`【京东账号${$.index}】${$.nickName}\n${message}`);
jdNotify = $.getdata('jdSuperMarketNotify') ? $.getdata('jdSuperMarketNotify') : jdNotify;
if (!jdNotify || jdNotify === 'false') {
$.msg($.name, subTitle, `【京东账号${$.index}】${$.nickName}\n${message}`);
}
}
//抽奖功能(招财进宝)
async function drawLottery() {
console.log(`\n注意⚠:东东超市抽奖已改版,花费500蓝币抽奖一次,现在脚本默认已关闭抽奖功能\n`);
drawLotteryFlag = $.getdata('jdSuperMarketLottery') ? $.getdata('jdSuperMarketLottery') : drawLotteryFlag;
if ($.isNode() && process.env.SUPERMARKET_LOTTERY) {
drawLotteryFlag = process.env.SUPERMARKET_LOTTERY;
}
if (`${drawLotteryFlag}` === 'true') {
const smtg_lotteryIndexRes = await smtg_lotteryIndex();
if (smtg_lotteryIndexRes && smtg_lotteryIndexRes.data.bizCode === 0) {
const {result} = smtg_lotteryIndexRes.data
if (result.blueCoins > result.costCoins && result.remainedDrawTimes > 0) {
const drawLotteryRes = await smtg_drawLottery();
console.log(`\n花费${result.costCoins}蓝币抽奖结果${JSON.stringify(drawLotteryRes)}`);
await drawLottery();
} else {
console.log(`\n抽奖失败:已抽奖或者蓝币不足`);
console.log(`失败详情:\n现有蓝币:${result.blueCoins},抽奖次数:${result.remainedDrawTimes}`)
}
}
} else {
console.log(`设置的为不抽奖\n`)
}
}
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'].slice(-4)} ${item['finishNum'] === item['targetNum'] ? '已完成' : '未完成'} ${item['finishNum']}/${item['targetNum']}`)
}
for (let item of taskList) {
//领奖
if (item.taskStatus === 1 && item.prizeStatus === 1) {
const res = await smtgObtainShopTaskPrize(item.taskId);
console.log(`\n领取做完任务的奖励${JSON.stringify(res)}\n`)
}
//做任务
if ((item.type === 1 || item.type === 11) && 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 === 9) {
//开卡领蓝币任务
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 === 10) {
//关注商品领蓝币
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.type === 10) && item.taskStatus === 0) {
// await doDailyTask();
}
}
}
}
function smtgHome() {
return new Promise((resolve) => {
const options = taskUrl("smtg_newHome", {
"shareId": "",
"channel": "4",
});
$.get(options, (err, resp, data) => {
});
$.get(taskUrl("smtg_newHome", {"shopType": "0", "channel": "18"}), (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,
totalBlue,
userUpgradeBlueVos,
turnoverProgress,
currentShopId
} = result;
$.currentShopId = currentShopId
$.userUpgradeBlueVos = userUpgradeBlueVos;
$.turnoverProgress = turnoverProgress;
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//领蓝币
function receiveBlueCoin(timeout = 0) {
return new Promise((resolve) => {
setTimeout(() => {
$.get(taskUrl('smtg_receiveCoin', {"type": 4, "shopId": $.currentShopId, "channel": "18"}), 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}】${$.nickName} 第${$.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)
})
}
async function daySign() {
const signDataRes = await smtgSign({"shareId": "QcSH6BqSXysv48bMoRfTBz7VBqc5P6GodDUBAt54d8598XAUtNoGd4xWVuNtVVwNO1dSKcoaY3sX_13Z-b3BoSW1W7NnqD36nZiNuwrtyO-gXbjIlsOBFpgIPMhpiVYKVAaNiHmr2XOJptu14d8uW-UWJtefjG9fUGv0Io7NwAQ", "channel": "4"});
await smtgSign({"shareId": "TBj0jH-x7iMvCMGsHfc839Tfnco6UarNx1r3wZVIzTZiLdWMRrmoocTbXrUOFn0J6UIir16A2PPxF50_Eoo7PW_NQVOiM-3R16jjlT20TNPHpbHnmqZKUDaRajnseEjVb-SYi6DQqlSOioRc27919zXTEB6_llab2CW2aDok36g", "channel": "4"});
if (signDataRes && signDataRes.code === 0) {
const signList = await smtgSignList();
if (signList.data.bizCode === 0) {
$.todayDay = signList.data.result.todayDay;
}
if (signDataRes.code === 0 && signDataRes.data.success) {
message += `【第${$.todayDay}日签到】成功,奖励${signDataRes.data.result.rewardBlue}蓝币\n`
} else {
message += `【第${$.todayDay}日签到】${signDataRes.data.bizMsg}\n`
}
}
}
async function BeanSign() {
const beanSignRes = await smtgSign({"channel": "1"});
if (beanSignRes && beanSignRes.data['bizCode'] === 0) {
console.log(`每天从指定入口进入游戏,可获得额外奖励:${JSON.stringify(beanSignRes)}`)
}
}
//每日签到
function smtgSign(body) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_sign', body), async (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);
}
})
})
}
//领取店铺升级的蓝币奖励
async function receiveUserUpgradeBlue() {
$.receiveUserUpgradeBlue = 0;
if ($.userUpgradeBlueVos && $.userUpgradeBlueVos.length > 0) {
for (let item of $.userUpgradeBlueVos) {
const receiveCoin = await smtgReceiveCoin({"id": item.id, "type": 5})
// $.log(`\n${JSON.stringify(receiveCoin)}`)
if (receiveCoin && receiveCoin.data['bizCode'] === 0) {
$.receiveUserUpgradeBlue += receiveCoin.data.result['receivedBlue']
}
}
$.log(`店铺升级奖励获取:${$.receiveUserUpgradeBlue}蓝币\n`)
}
const res = await smtgReceiveCoin({"type": 4, "channel": "18"})
// $.log(`${JSON.stringify(res)}\n`)
if (res && res.data['bizCode'] === 0) {
console.log(`\n收取营业额:获得 ${res.data.result['receivedTurnover']}\n`);
}
}
async function Home() {
const homeRes = await smtgHome();
if (homeRes && homeRes.data['bizCode'] === 0) {
const {result} = homeRes.data;
const {shopName, totalBlue} = result;
subTitle = shopName;
message += `【总蓝币】${totalBlue}个\n`;
}
}
//查询有哪些货架
function smtg_shopIndex() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_shopIndex', {"channel": 1}), async (err, resp, data) => {
try {
if (err) {
console.log('\n东东超市: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
data = JSON.parse(data);
if (data && data.data['bizCode'] === 0) {
const {shopId, shelfList, merchandiseList, level} = data.data['result'];
message += `【店铺等级】${level}\n`;
if (shelfList && shelfList.length > 0) {
for (let item of shelfList) {
//status: 2可解锁,1可升级,-1不可解锁
if (item['status'] === 2) {
$.log(`${item['name']}可解锁\n`)
await smtg_shelfUnlock({shopId, "shelfId": item['id'], "channel": 1})
} else if (item['status'] === 1) {
$.log(`${item['name']}可升级\n`)
await smtg_shelfUpgrade({shopId, "shelfId": item['id'], "channel": 1, "targetLevel": item['level'] + 1});
} else if (item['status'] === -1) {
$.log(`[${item['name']}] 未解锁`)
} else if (item['status'] === 0) {
$.log(`[${item['name']}] 已解锁,当前等级:${item['level']}级`)
} else {
$.log(`未知店铺状态(status):${item['status']}\n`)
}
}
}
if (data.data['result']['forSaleMerchandise']) {
$.log(`\n限时商品${data.data['result']['forSaleMerchandise']['name']}已上架`)
} else {
if (merchandiseList && merchandiseList.length > 0) {
for (let item of merchandiseList) {
console.log(`发现限时商品${item.name}\n`);
await smtg_sellMerchandise({"shopId": shopId, "merchandiseId": item['id'], "channel": "18"})
}
}
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//解锁店铺
function smtg_shelfUnlock(body) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_shelfUnlock', body), (err, resp, data) => {
try {
if (err) {
console.log('\n东东超市: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
$.log(`解锁店铺结果:${data}\n`)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtg_shelfUpgrade(body) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_shelfUpgrade', body), (err, resp, data) => {
try {
if (err) {
console.log('\n东东超市: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
$.log(`店铺升级结果:${data}\n`)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//售卖限时商品API
function smtg_sellMerchandise(body) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_sellMerchandise', body), (err, resp, data) => {
try {
if (err) {
console.log('\n东东超市: API查询请求失败 ‼️‼️')
console.log(JSON.stringify(err));
} else {
$.log(`限时商品售卖结果:${data}\n`)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function smtgDoShopTask(taskId, itemId) {
return new Promise((resolve) => {
const body = {
"taskId": taskId,
"channel": "18"
}
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', {"channel": "18"}), (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 smtgReceiveCoin(body) {
$.goldCoinData = {};
return new Promise((resolve) => {
$.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);
}
})
})
}
function smtg_joinPkTeam(teamId, inviteCode, sharePkActivityId) {
return new Promise((resolve) => {
$.get(taskUrl('smtg_joinPkTeam', {teamId, inviteCode, "channel": "3", sharePkActivityId}), (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_getTeamPkDetailInfo() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_getTeamPkDetailInfo'), (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);
}
})
})
}
function smtg_receivedPkTeamPrize() {
return new Promise((resolve) => {
$.get(taskUrl('smtg_receivedPkTeamPrize', {"channel": "1"}), (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', {"costType": 1, "channel": 1}), (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', {"costType": 1, "channel": 1}), (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 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') : '';
//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 = [$.getdata('CookieJD'), $.getdata('CookieJD2'), ...jsonParse($.getdata('CookiesJD') || "[]").map(item => item.cookie)].filter(item => !!item);
}
console.log(`共${cookiesArr.length}个京东账号\n`);
// console.log(`东东超市已改版,目前暂不用助力, 故无助力码`)
// console.log(`\n东东超市商圈助力码::${JSON.stringify(jdSuperMarketShareArr)}`);
// console.log(`您提供了${jdSuperMarketShareArr.length}个账号的助力码\n`);
resolve()
})
}
function TotalBean() {
return new Promise(async resolve => {
const options = {
url: "https://wq.jd.com/user_new/info/GetJDUserInfoUnion?sceneval=2",
headers: {
Host: "wq.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 {
console.log('京东服务器返回空数据');
}
}
} catch (e) {
$.logErr(e)
} finally {
resolve();
}
})