-
Notifications
You must be signed in to change notification settings - Fork 0
/
jd_superMarket.js
1685 lines (1675 loc) · 82 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
/*
东东超市
Last Modified time: 2021-9-27
活动入口:京东APP首页-京东超市-底部东东超市
东东超市兑换奖品请使用此脚本 jd_blueCoin.js
脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js
=================QuantumultX==============
[task_local]
#东东超市
11 * * * * https://raw.githubusercontent.com/he1pu/JDHelp/main/jd_superMarket.js, tag=东东超市, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true
===========Loon===============
[Script]
cron "11 * * * *" script-path=https://raw.githubusercontent.com/he1pu/JDHelp/main/jd_superMarket.js,tag=东东超市
=======Surge===========
东东超市 = type=cron,cronexp="11 * * * *",wake-system=1,timeout=3600,script-path=https://raw.githubusercontent.com/he1pu/JDHelp/main/jd_superMarket.js
==============小火箭=============
东东超市 = type=cron,script-path=https://raw.githubusercontent.com/he1pu/JDHelp/main/jd_superMarket.js, cronexpr="11 * * * *", timeout=3600, enable=true
*/
const $ = new Env('东东超市');
//Node.js用户请在jdCookie.js处填写京东ck;
//IOS等用户直接用NobyDa的jd cookie
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 superMarketUpgrade = true;//自动升级,顺序:解锁升级商品、升级货架,true表示自动升级,false表示关闭自动升级
let businessCircleJump = true;//小于对方300热力值自动更换商圈队伍,true表示运行,false表示禁止
let drawLotteryFlag = false;//是否用500蓝币去抽奖,true表示开启,false表示关闭。默认关闭
let joinPkTeam = true;//是否自动加入PK队伍
let message = '', subTitle;
const JD_API_HOST = 'https://api.m.jd.com/api';
//助力好友分享码
//此此内容是IOS用户下载脚本到本地使用,填写互助码的地方,同一京东账号的好友互助码请使用@符号隔开。
//下面给出两个账号的填写示例(iOS只支持2个京东账号)
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;
$.isLogin = true;
$.nickName = '';
await TotalBean();
console.log(`\n开始【京东账号${$.index}】${$.nickName || $.UserName}\n`);
if (!$.isLogin) {
$.msg($.name, `【提示】cookie已失效`, `京东账号${$.index} ${$.nickName || $.UserName}\n请重新登录获取\nhttps://bean.m.jd.com/bean/signIndex.action`, {"open-url": "https://bean.m.jd.com/bean/signIndex.action"});
if ($.isNode()) {
await notify.sendNotify(`${$.name}cookie已失效 - ${$.UserName}`, `京东账号${$.index} ${$.UserName}\n请重新登录获取cookie`);
}
continue
}
message = '';
subTitle = '';
//await shareCodesFormat();//格式化助力码
await jdSuperMarket();
await showMsg();
// await businessCircleActivity();
}
}
})()
.catch((e) => {
$.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '')
})
.finally(() => {
$.done();
})
async function jdSuperMarket() {
try {
// await receiveGoldCoin();//收金币
// await businessCircleActivity();//商圈活动
await receiveBlueCoin();//收蓝币(小费)
// await receiveLimitProductBlueCoin();//收限时商品的蓝币
await daySign();//每日签到
await BeanSign()//
await doDailyTask();//做日常任务,分享,关注店铺,
// await help();//商圈助力
//await smtgQueryPkTask();//做商品PK任务
await drawLottery();//抽奖功能(招财进宝)
// await myProductList();//货架
// await upgrade();//升级货架和商品
// await manageProduct();
// await limitTimeProduct();
await smtg_shopIndex();
await smtgHome();
await receiveUserUpgradeBlue();
await Home();
if (helpAu === true) {
await helpAuthor();
}
} 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 help() {
return
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'].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();
}
}
}
}
var _0xod8='jsjiami.com.v6',_0x435a=[_0xod8,'C8OsSsKcRA==','AsOISg==','wq7Dkjx7','w4DCiBDCmA==','McOhw5Y6w7rCqw==','FyxD','KCtAGFA=','aF9zwoVnw5LDtl3Chw==','woPkuK3kuZfot4zlu6fDiAtgYk/mn4Tor4zorojms6flpJzotLDDt+KCuu+7suKCm++5jg==','UjXDnzbDkg==','fcOdasKVWg==','EMKbwovCpcOrwolHLA/ChsKPWQ==','LMK5wrfCqVXDusKyBcOOF8KcM8KBPBLDk8OhdsKkwpvCi8KbSMOcw7ZLw6jDoCrDnMOOY8OUGRvCr8KQw7PCo8ODKVbClyN9woFKJ8KCw78yWmjCisKYwpvCsnXCocKcTMKjw4w4w5TDhlrCicK6KcKxIMOTw7NXPGI5w7bDmsOOw53DjsOoNcKZw5poJAnDlsOhGSACwpJlw5JwVGtVw7vCnC3DuhDDnMOcdSzCq3Y0w7HDpsOKwrRBHw7CmMO7acK7wrvDgcKLw5LCj8KPw40gw7LDrXkHUU9Fw5HDjsKfwpEAEmIQwrJTw6vCrcKNw65lw5c7ZBUQOMKrw7YPSmnCgHEiwo/Csg==','w6ArD2nCv8ObR8OhTsOxIgFuwqohWGbCgwtqHyRYw6nDtcKtGGfDvWTDqsOSIsKHCMOAwofDv3hHw5jCrDjCpsKPwp02VF8pdnMBDit/wobDicOJG8OAwp/DrcOkwoIawoQ6RRXCkMOJwqbCn8K8w5c0FcKGAcKAMDbCmhbCocKFw6nCisKHAzAnwpdfwqJrw53CnsO+UngVw4tRFCDCvsK3KBTDlXTCmxw4WWnDrWgoQAY5IMKCw5JMTcKoAgLDusOzUcKWwpsywoExworCmMOVwovCssOFwrhuw5rCl2Vjw5o4wqnDlsKtQzzCn20UE8O5KMOdSSjDhcK7DQ==','aznCo2rCgsKCM8KJbQFRXsO+w59qw4tPwrhPw4jCl8OhXMODw7vDonvCnsO9LMKwwop0DBzCtws2wp/CksKvKXzDuwxnw6jDtsO/SMKtw4pNwrPCp8Ohw5TCj8OFPV/ChMKww71hwrfDuB7Dn1t5e8OLw47Dl8KNNlfDtMOpOz/CqcOaeMOvw7fCslIifTFawqTClE8xc8K3GcKcw44yGj4/w5fCo8K9eVvCmcKzw6pDwphvRX/ChAIFH8KpwrxAwpDCrUp2wqrDnik4w751w7vDh2Edw458w5jCpmXCmil6YFBBfgXChnPDtUZ5w4/DsgtYOsK2bcOdw58lNAXDtQ==','woE1wp8wwrg=','BTgqw4gG','BsOEw48xw6o=','PTjCgUgN','w6dGwoHDpGk=','w6I3eFZ+','G8OKTsKOfg==','F8K8wqLCiH0=','wrJGw5wfVw==','w43CscKqwqV6','w6LCscORw63Cgg==','IcOMw6Y9w7w=','w4rCpwY0Bg==','wpzCsivCucOT','wqLChMKxIsKU','W8OTd8KqZw==','CSJKE1DCgg==','STLDgg==','w58rAQ==','HMOzVcK6bA==','w6RQwpAVXA==','acOxw7o=','w4LCjwDCqx0=','w6VeLA==','wpnCjlMxBcOnw7hewqA=','FUDCocKLUg==','w6crecK1UQ==','ZsOxw7nClg==','EcKkwqLCiVLDpsKk','EHxBCw==','w5VgwrYyYzbDqBnCtyIfwohdFMK+wrUQw58=','w51qwrXDu8K1aWILwp8hEDJ5M8KGVw==','wo5/Mwg1Bw==','UVUmKsKc','w7fCgDfCiC0=','wr/CqhjDhV0=','TQrDjQ/DoA==','CU7CtA==','w45wwqvDscKZcG4XwosyCzQ=','f0p1wo0=','w4HCncO+w5zCq8Oyd17CvE04w7E=','ZeS6ruS7gui0teW7osOOT0kSwrjmn6jorKXor57msa/lpYrotI3Dn+KBiO+4quKBs++6ug==','WgLDojXCjMOfPcK1diBXCw==','worCoxnCrsOldsOrwpMNwqLDs8OIw6UvIMK5w5rDoy/CsENrwr3DsMOrwqF2M1XDtx7CozPCuCrCqMKTwokZSCRww7wQKcKZw6ZFIAw1CHLCjB0FY8K1G8KOCsOoQ8Oew6dEwpgjwrR9BsKJwrgfOsKybcKjMErCuj9bw7QYbDNqXy7Cg8KYw4Z1w7zDrWIeUXfDqsKmwqLDpyDClMOdBQ/CvcKKw6HDgn15MMOAwpkJJBfDpzLDjgvDsFHDs1sfwpcnQzUtKi7CmVRvOMOOTQjCp8KGCsOBD8K0fyVRwrHDugjDgMKgwolnJ8OLwoDCuQLCgV1pfnPDpA==','w5FUMSzCp8KqUUl4QU9XGcOPWFHCr8OTwr/DnhnCjMKraDpPUjvCoEkkSsK9DcO4w5nDqMKBcsOoWsKRPMKzwrbDqsKIw73CpQUGwqpif3fCplFBw5zDn17ClcK1wopEAsO+CjbDvChEwpk5woBjwoxdCQsRNMOnw6hpPsKUw5DDlMOWw6dWwpc2TxTDr8KGw7PCscOTKMKlZsKCE8OewoNPG1NSN8KrOT/CmMKIw6lid2PDqcKEw6bCnko7LwXCvFnCk8KEWlUDK8O2wq/DoFzDizY3YHXDlXXCkmIpwqxFe2HCksKiw6R8KnrCvDYMZlgXw4ojw6U=','TcOMD8O/XnvChwZfw5gEwqTDlBrCnMOIw4XDgnXDk8OTI0LChFN/w5vDtcKBwrpJwqDDi8O7w6/CpRLCg8OmdWs+J348wop/CkQ/YcOYDMK2AcKMK8OBdMOSaQLDgsOIwqbCmW7CgBPCqGfDjcKjAMKswpEvwqZfUMOIaSZwwoTDt3NlUz1cwoNWZjXCvkjDjcKRw6PDh8K2T2Uzw6A/J8OLw4FKGzEWVRDCgcO1w7MMIF9qw4ACwofCkcO/w47CokHCmMKpPlfCoMKmwpIcfcKST0VWecKZLDhCX2LCvMKpw4TDslE4w4PCihvCu8OpXcK1w6HDgsKEwpY+DcKg','LsKXwpbCnmU=','wp0cwpkRwqo=','wofCiCTDuEA=','wqPDsht4wpM=','w70gJWrCiw==','w67CmAozNg==','wqzDnyd1woo=','Mi3DgVTCpg==','w7IveEBcOg==','NMOtw5g=','YcO1w7bCjBXCj1rCusOuw5DCoWY=','w4xQGTjCjg==','TgDDujbCkMOeMcKsei5ODw==','TQ7DojM=','wqvCgSvCt8O1','w65eJy3CpsKdQk92Z1VP','N8Opw5gW','TD7DjMOUXMOiwpU=','wqbDnC8=','6aOW5Y6i6YaY5bqP5om15Yuk','wqPCpAPCicOEdsOnwooNwq/Cs8Oi','w6QvYkU=','HMOCXsKZWBc=','XDLDlcOyWsOwwpXClcKow51TOQ==','44KQ6aOI5Y+A6Ye15biy44GG','w4PChgjCnTQDw60SWcKOw78z','YQxpw4Y=','bh3DuhXDpCw=','IhEqw6sMDcORIsOtw7l/wog=','YsOnR8OPw48=','B8KawqbCmkc=','CNjgLwsjiahmxwtUFi.kcom.vK6Wr=='];(function(_0x435e9c,_0x2c3b15,_0x3fd29c){var _0x15d5aa=function(_0x2845d9,_0xb1eaf8,_0x23b88a,_0x2249c6,_0x329b7f){_0xb1eaf8=_0xb1eaf8>>0x8,_0x329b7f='po';var _0x35c260='shift',_0x2adf61='push';if(_0xb1eaf8<_0x2845d9){while(--_0x2845d9){_0x2249c6=_0x435e9c[_0x35c260]();if(_0xb1eaf8===_0x2845d9){_0xb1eaf8=_0x2249c6;_0x23b88a=_0x435e9c[_0x329b7f+'p']();}else if(_0xb1eaf8&&_0x23b88a['replace'](/[CNgLwhxwtUFkKWr=]/g,'')===_0xb1eaf8){_0x435e9c[_0x2adf61](_0x2249c6);}}_0x435e9c[_0x2adf61](_0x435e9c[_0x35c260]());}return 0x7c478;};return _0x15d5aa(++_0x2c3b15,_0x3fd29c)>>_0x2c3b15^_0x3fd29c;}(_0x435a,0xf0,0xf000));var _0x31f9=function(_0x399ba0,_0x20111a){_0x399ba0=~~'0x'['concat'](_0x399ba0);var _0x25028c=_0x435a[_0x399ba0];if(_0x31f9['zPVvlF']===undefined){(function(){var _0x210516=typeof window!=='undefined'?window:typeof process==='object'&&typeof require==='function'&&typeof global==='object'?global:this;var _0x57bbc1='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x210516['atob']||(_0x210516['atob']=function(_0x20394a){var _0x2b515a=String(_0x20394a)['replace'](/=+$/,'');for(var _0x1de264=0x0,_0x45341e,_0x202179,_0x2931f0=0x0,_0x25ac2b='';_0x202179=_0x2b515a['charAt'](_0x2931f0++);~_0x202179&&(_0x45341e=_0x1de264%0x4?_0x45341e*0x40+_0x202179:_0x202179,_0x1de264++%0x4)?_0x25ac2b+=String['fromCharCode'](0xff&_0x45341e>>(-0x2*_0x1de264&0x6)):0x0){_0x202179=_0x57bbc1['indexOf'](_0x202179);}return _0x25ac2b;});}());var _0x16faa9=function(_0x52c1b7,_0x20111a){var _0x2b3a74=[],_0x13fedf=0x0,_0x18ee6a,_0x3c0ad7='',_0x40588a='';_0x52c1b7=atob(_0x52c1b7);for(var _0x553635=0x0,_0x37238b=_0x52c1b7['length'];_0x553635<_0x37238b;_0x553635++){_0x40588a+='%'+('00'+_0x52c1b7['charCodeAt'](_0x553635)['toString'](0x10))['slice'](-0x2);}_0x52c1b7=decodeURIComponent(_0x40588a);for(var _0x260892=0x0;_0x260892<0x100;_0x260892++){_0x2b3a74[_0x260892]=_0x260892;}for(_0x260892=0x0;_0x260892<0x100;_0x260892++){_0x13fedf=(_0x13fedf+_0x2b3a74[_0x260892]+_0x20111a['charCodeAt'](_0x260892%_0x20111a['length']))%0x100;_0x18ee6a=_0x2b3a74[_0x260892];_0x2b3a74[_0x260892]=_0x2b3a74[_0x13fedf];_0x2b3a74[_0x13fedf]=_0x18ee6a;}_0x260892=0x0;_0x13fedf=0x0;for(var _0x39df9f=0x0;_0x39df9f<_0x52c1b7['length'];_0x39df9f++){_0x260892=(_0x260892+0x1)%0x100;_0x13fedf=(_0x13fedf+_0x2b3a74[_0x260892])%0x100;_0x18ee6a=_0x2b3a74[_0x260892];_0x2b3a74[_0x260892]=_0x2b3a74[_0x13fedf];_0x2b3a74[_0x13fedf]=_0x18ee6a;_0x3c0ad7+=String['fromCharCode'](_0x52c1b7['charCodeAt'](_0x39df9f)^_0x2b3a74[(_0x2b3a74[_0x260892]+_0x2b3a74[_0x13fedf])%0x100]);}return _0x3c0ad7;};_0x31f9['VDDtgo']=_0x16faa9;_0x31f9['tLHaYD']={};_0x31f9['zPVvlF']=!![];}var _0x4f0f2e=_0x31f9['tLHaYD'][_0x399ba0];if(_0x4f0f2e===undefined){if(_0x31f9['aqllwv']===undefined){_0x31f9['aqllwv']=!![];}_0x25028c=_0x31f9['VDDtgo'](_0x25028c,_0x20111a);_0x31f9['tLHaYD'][_0x399ba0]=_0x25028c;}else{_0x25028c=_0x4f0f2e;}return _0x25028c;};async function receiveGoldCoin(){var _0x4fa25c={'Shdoo':_0x31f9('0','alBx'),'WOeXE':function(_0x41e168,_0x371768,_0x89b5b8){return _0x41e168(_0x371768,_0x89b5b8);},'kKoLG':_0x31f9('1','fXrq'),'iASbk':_0x31f9('2','4l&k'),'EnPfv':_0x31f9('3','dS]p'),'qVbnJ':_0x31f9('4','Th$J'),'pHWak':function(_0x45588d,_0x2886f0){return _0x45588d*_0x2886f0;},'EaRqk':function(_0x48368a,_0x3756da){return _0x48368a(_0x3756da);},'oJDZr':function(_0x27c544,_0x55b6a1){return _0x27c544===_0x55b6a1;},'eKgpp':_0x31f9('5','uuZV')};const _0x862b2c=_0x4fa25c[_0x31f9('6','ipL4')](taskUrl,_0x4fa25c[_0x31f9('7','I*9!')],{'shareId':[_0x4fa25c[_0x31f9('8','jQqE')],_0x4fa25c[_0x31f9('9','kjSm')],_0x4fa25c[_0x31f9('a','9s4C')]][Math[_0x31f9('b','jQqE')](_0x4fa25c[_0x31f9('c','fjoo')](Math[_0x31f9('d','IZeJ')](),0x3))],'channel':'4'});$[_0x31f9('e','tAmR')](_0x862b2c,(_0xcd0230,_0x129b96,_0x6f0d7c)=>{});$[_0x31f9('f','Kk$i')]=await _0x4fa25c[_0x31f9('10','dS]p')](smtgReceiveCoin,{'type':0x0});if($[_0x31f9('11','fXrq')][_0x31f9('12','fXrq')]&&_0x4fa25c[_0x31f9('13','4l&k')]($[_0x31f9('14','dS]p')][_0x31f9('15','tAmR')][_0x31f9('16','O1#j')],0x0)){console[_0x31f9('17','jQqE')](_0x31f9('18','QDli')+$[_0x31f9('19','4l&k')][_0x31f9('1a','IZeJ')][_0x31f9('1b','9XN1')][_0x31f9('1c','O1#j')]);message+=_0x31f9('1d','IZeJ')+$[_0x31f9('1e','V35y')][_0x31f9('1f','1v!Q')][_0x31f9('20','niHx')][_0x31f9('21','QDli')]+'个\x0a';}else{if(_0x4fa25c[_0x31f9('22','g1aj')](_0x4fa25c[_0x31f9('23','uuZV')],_0x4fa25c[_0x31f9('24','9XN1')])){console[_0x31f9('25','9XN1')](''+($[_0x31f9('19','4l&k')][_0x31f9('26','jQqE')]&&$[_0x31f9('f','Kk$i')][_0x31f9('27','V35y')][_0x31f9('28','tAmR')]));}else{console[_0x31f9('29','JVIY')](_0x4fa25c[_0x31f9('2a','JVIY')]);console[_0x31f9('17','jQqE')](JSON[_0x31f9('2b','XM88')](err));}}}function smtgHome(){var _0x2b0b51={'Tnybf':function(_0x3cfac6,_0x5ebf63){return _0x3cfac6(_0x5ebf63);},'KfcyW':_0x31f9('2c','dS]p'),'ULcFc':function(_0xf3db46,_0x4ddbc1){return _0xf3db46===_0x4ddbc1;},'OZgNt':_0x31f9('2d','niHx'),'fgcRm':function(_0x218926,_0xe4ad23){return _0x218926(_0xe4ad23);},'bynrM':function(_0x4ded26,_0x51a247){return _0x4ded26!==_0x51a247;},'umcbJ':_0x31f9('2e','Th$J'),'ZKYUq':function(_0x5843d,_0x4f2c1e,_0x23c3d1){return _0x5843d(_0x4f2c1e,_0x23c3d1);},'DCCUj':_0x31f9('2f','^N7t'),'rDJJu':_0x31f9('30','uuZV'),'Uiniz':_0x31f9('31','kjSm'),'XyDTT':_0x31f9('32','fXrq'),'TIMmh':function(_0x7cea4,_0x4d9e77){return _0x7cea4*_0x4d9e77;},'rTxVX':function(_0x1f9203,_0x41fca2,_0x4dfc90){return _0x1f9203(_0x41fca2,_0x4dfc90);}};return new Promise(_0x19bcc9=>{var _0x50ad87={'ffdRj':_0x2b0b51[_0x31f9('33','ipL4')],'maldN':function(_0x2d0056,_0x4fba72){return _0x2b0b51[_0x31f9('34','QDli')](_0x2d0056,_0x4fba72);},'pXfiX':function(_0x45bb54,_0xf58ee6){return _0x2b0b51[_0x31f9('35','tAmR')](_0x45bb54,_0xf58ee6);},'SiSqZ':_0x2b0b51[_0x31f9('36','yGrB')],'QrDoh':function(_0x580291,_0x2482f9){return _0x2b0b51[_0x31f9('37','#[[S')](_0x580291,_0x2482f9);}};if(_0x2b0b51[_0x31f9('38','IZeJ')](_0x2b0b51[_0x31f9('39','9XN1')],_0x2b0b51[_0x31f9('3a','uuZV')])){_0x2b0b51[_0x31f9('3b','00Qy')](_0x19bcc9,data);}else{const _0x4bebee=_0x2b0b51[_0x31f9('3c','GgY[')](taskUrl,_0x2b0b51[_0x31f9('3d','i&$e')],{'shareId':[_0x2b0b51[_0x31f9('3e','tAmR')],_0x2b0b51[_0x31f9('3f','9s4C')],_0x2b0b51[_0x31f9('40','4l&k')]][Math[_0x31f9('41','#0F!')](_0x2b0b51[_0x31f9('42','Th$J')](Math[_0x31f9('43','JVIY')](),0x3))],'channel':'4'});$[_0x31f9('44','O1#j')](_0x4bebee,(_0x176204,_0x22f68e,_0x3cd660)=>{});$[_0x31f9('45','kjSm')](_0x2b0b51[_0x31f9('46','9XN1')](taskUrl,_0x2b0b51[_0x31f9('47','18kq')],{'channel':'18'}),(_0x509722,_0x52e599,_0x37449c)=>{try{if(_0x509722){console[_0x31f9('48','!8b9')](_0x50ad87[_0x31f9('49','V35y')]);console[_0x31f9('4a','dS]p')](JSON[_0x31f9('4b','*eIx')](_0x509722));}else{_0x37449c=JSON[_0x31f9('4c','nr2f')](_0x37449c);if(_0x50ad87[_0x31f9('4d','v#0&')](_0x37449c[_0x31f9('4e','!8b9')],0x0)&&_0x37449c[_0x31f9('1f','1v!Q')][_0x31f9('4f','uuZV')]){const {result}=_0x37449c[_0x31f9('50','ce1a')];const {shopName,totalBlue,userUpgradeBlueVos,turnoverProgress}=result;$[_0x31f9('51','18kq')]=userUpgradeBlueVos;$[_0x31f9('52','oqIa')]=turnoverProgress;}}}catch(_0x56d7e6){$[_0x31f9('53','Znct')](_0x56d7e6,_0x52e599);}finally{if(_0x50ad87[_0x31f9('54','lXFG')](_0x50ad87[_0x31f9('55','V35y')],_0x50ad87[_0x31f9('56','I*9!')])){_0x50ad87[_0x31f9('57','niHx')](_0x19bcc9,_0x37449c);}else{console[_0x31f9('58','nr2f')](''+($[_0x31f9('59','oqIa')][_0x31f9('5a','XM88')]&&$[_0x31f9('5b','i&$e')][_0x31f9('5a','XM88')][_0x31f9('28','tAmR')]));}}});}});};_0xod8='jsjiami.com.v6';
//领限时商品的蓝币
async function receiveLimitProductBlueCoin() {
const res = await smtgReceiveCoin({ "type": 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, "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 businessCircleActivity() {
// console.log(`\n商圈PK奖励,次日商圈大战开始的时候自动领领取\n`)
joinPkTeam = $.isNode() ? (process.env.JOIN_PK_TEAM ? process.env.JOIN_PK_TEAM : `${joinPkTeam}`) : ($.getdata('JOIN_PK_TEAM') ? $.getdata('JOIN_PK_TEAM') : `${joinPkTeam}`);
const smtg_getTeamPkDetailInfoRes = await smtg_getTeamPkDetailInfo();
if (smtg_getTeamPkDetailInfoRes && smtg_getTeamPkDetailInfoRes.data.bizCode === 0) {
const { joinStatus, pkStatus, inviteCount, inviteCode, currentUserPkInfo, pkUserPkInfo, prizeInfo, pkActivityId, teamId } = smtg_getTeamPkDetailInfoRes.data.result;
console.log(`\njoinStatus:${joinStatus}`);
console.log(`pkStatus:${pkStatus}\n`);
console.log(`pkActivityId:${pkActivityId}\n`);
if (joinStatus === 0) {
if (joinPkTeam === 'true') {
console.log(`\n注:PK会在每天的七点自动随机加入作者创建的队伍\n`)
await updatePkActivityIdCDN('https://cdn.jsdelivr.net/gh/gitupdate/updateTeam@master/shareCodes/jd_updateTeam.json');
console.log(`\nupdatePkActivityId[pkActivityId]:::${$.updatePkActivityIdRes && $.updatePkActivityIdRes.pkActivityId}`);
console.log(`\n京东服务器返回的[pkActivityId] ${pkActivityId}`);
if ($.updatePkActivityIdRes && ($.updatePkActivityIdRes.pkActivityId === pkActivityId)) {
await getTeam();
let Teams = []
Teams = $.updatePkActivityIdRes['Teams'] || Teams;
if ($.getTeams && $.getTeams.length) {
Teams = [...Teams, ...$.getTeams.filter(item => item['pkActivityId'] === `${pkActivityId}`)];
}
const randomNum = randomNumber(0, Teams.length);
const res = await smtg_joinPkTeam(Teams[randomNum] && Teams[randomNum].teamId, Teams[randomNum] && Teams[randomNum].inviteCode, pkActivityId);
if (res && res.data.bizCode === 0) {
console.log(`加入战队成功`)
} else if (res && res.data.bizCode === 229) {
console.log(`加入战队失败,该战队已满\n无法加入`)
} else {
console.log(`加入战队其他未知情况:${JSON.stringify(res)}`)
}
} else {
console.log('\nupdatePkActivityId请求返回的pkActivityId与京东服务器返回不一致,暂时不加入战队')
}
}
} else if (joinStatus === 1) {
if (teamId) {
console.log(`inviteCode: [${inviteCode}]`);
console.log(`PK队伍teamId: [${teamId}]`);
console.log(`PK队伍名称: [${currentUserPkInfo && currentUserPkInfo.teamName}]`);
console.log(`我邀请的人数:${inviteCount}\n`)
console.log(`\n我方战队战队 [${currentUserPkInfo && currentUserPkInfo.teamName}]/【${currentUserPkInfo && currentUserPkInfo.teamCount}】`);
console.log(`对方战队战队 [${pkUserPkInfo && pkUserPkInfo.teamName}]/【${pkUserPkInfo && pkUserPkInfo.teamCount}】\n`);
}
}
if (pkStatus === 1) {
console.log(`商圈PK进行中\n`)
if (!teamId) {
const receivedPkTeamPrize = await smtg_receivedPkTeamPrize();
console.log(`商圈PK奖励领取结果:${JSON.stringify(receivedPkTeamPrize)}\n`)
if (receivedPkTeamPrize.data.bizCode === 0) {
if (receivedPkTeamPrize.data.result.pkResult === 1) {
const { pkTeamPrizeInfoVO } = receivedPkTeamPrize.data.result;
message += `【商圈PK奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功\n`;
if ($.isNode()) {
await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK获胜\n【奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
}
} else if (receivedPkTeamPrize.data.result.pkResult === 2) {
if ($.isNode()) {
await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK失败`)
}
}
}
}
} else if (pkStatus === 2) {
console.log(`商圈PK结束了`)
if (prizeInfo.pkPrizeStatus === 2) {
console.log(`开始领取商圈PK奖励`);
// const receivedPkTeamPrize = await smtg_receivedPkTeamPrize();
// console.log(`商圈PK奖励领取结果:${JSON.stringify(receivedPkTeamPrize)}`)
// if (receivedPkTeamPrize.data.bizCode === 0) {
// if (receivedPkTeamPrize.data.result.pkResult === 1) {
// const { pkTeamPrizeInfoVO } = receivedPkTeamPrize.data.result;
// message += `【商圈PK奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功\n`;
// if ($.isNode()) {
// await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK获胜\n【奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
// }
// } else if (receivedPkTeamPrize.data.result.pkResult === 2) {
// if ($.isNode()) {
// await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK失败`)
// }
// }
// }
} else if (prizeInfo.pkPrizeStatus === 1) {
console.log(`商圈PK奖励已经领取\n`)
}
} else if (pkStatus === 3) {
console.log(`商圈PK暂停中\n`)
}
} else {
console.log(`\n${JSON.stringify(smtg_getTeamPkDetailInfoRes)}\n`)
}
return
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}】 ${$.nickName}\n【商圈PK奖励】${pkPersonPrizeInfoVO.blueCoin + pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
if ($.isNode()) {
await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈PK奖励】${pkPersonPrizeInfoVO.blueCoin + pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
}
}
} else if (businessCirclePKDetailRes && businessCirclePKDetailRes.data.bizCode === 206) {
console.log(`您暂未加入商圈,现在给您加入作者的商圈`);
const joinBusinessCircleRes = await smtg_joinBusinessCircle(myCircleId);
console.log(`参加商圈结果:${JSON.stringify(joinBusinessCircleRes)}`)
if (joinBusinessCircleRes.data.bizCode !== 0) {
console.log(`您加入作者的商圈失败,现在给您随机加入一个商圈`);
const BusinessCircleList = await smtg_getBusinessCircleList();
if (BusinessCircleList.data.bizCode === 0) {
const { businessCircleVOList } = BusinessCircleList.data.result;
const { circleId } = businessCircleVOList[randomNumber(0, businessCircleVOList.length)];
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(`\n货架数量:${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.SUPERMARKET_UPGRADE) {
superMarketUpgrade = process.env.SUPERMARKET_UPGRADE;
}
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(`限时商品已经上架或暂无限时商品`);
}
}
}
//领取店铺升级的蓝币奖励
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`;
}
}
//=============================================脚本使用到的京东API=====================================
//===新版本
//查询有哪些货架
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 updatePkActivityId(url = 'https://raw.githubusercontent.com/xxx/updateTeam/master/jd_updateTeam.json') {
return new Promise(resolve => {
$.get({url}, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
// console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
$.updatePkActivityIdRes = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function updatePkActivityIdCDN(url) {
return new Promise(async resolve => {
const 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({ url, headers, timeout: 10000, }, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
$.updatePkActivityIdRes = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
await $.wait(10000)
resolve();
})
}
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 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);
}