-
Notifications
You must be signed in to change notification settings - Fork 0
/
jd_club_lottery.js
1461 lines (1454 loc) · 64.5 KB
/
jd_club_lottery.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-5-11 09:27:09
活动入口:京东APP首页-领京豆-摇京豆/京东APP首页-我的-京东会员-摇京豆
增加京东APP首页超级摇一摇(不定时有活动)
增加超级品牌日做任务及抽奖
增加 京东小魔方 抽奖
Modified from https://github.com/Zero-S1/JD_tools/blob/master/JD_vvipclub.py
已支持IOS双京东账号,Node.js支持N个京东账号
脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js
============QuantumultX==============
[task_local]
#摇京豆
5 0,23 * * * jd_club_lottery.js, tag=摇京豆, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdyjd.png, enabled=true
=================Loon===============
[Script]
cron "5 0,23 * * *" script-path=jd_club_lottery.js,tag=摇京豆
=================Surge==============
[Script]
摇京豆 = type=cron,cronexp="5 0,23 * * *",wake-system=1,timeout=3600,script-path=jd_club_lottery.js
============小火箭=========
摇京豆 = type=cron,script-path=jd_club_lottery.js, cronexpr="5 0,23 * * *", timeout=3600, enable=true
*/
const $ = new Env('摇京豆');
const notify = $.isNode() ? require('./sendNotify') : '';
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [], cookie = '', message = '', allMessage = '';
if ($.isNode()) {
Object.keys(jdCookieNode).forEach((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);
}
let superShakeBeanConfig = {
"superShakeUlr": "",//超级摇一摇活动链接
"superShakeBeanFlag": false,
"superShakeTitle": "",
"taskVipName": "",
}
$.assigFirends = [];
$.brandActivityId = '';//超级品牌日活动ID
$.brandActivityId2 = '2vSNXCeVuBy8mXTL2hhG3mwSysoL';//超级品牌日活动ID2
const JD_API_HOST = 'https://api.m.jd.com/client.action';
!(async () => {
if (!cookiesArr[0]) {
$.msg($.name, '【提示】请先获取京东账号一cookie\n直接使用NobyDa的京东签到获取', 'https://bean.m.jd.com/bean/signIndex.action', {"open-url": "https://bean.m.jd.com/bean/signIndex.action"});
return;
}
await welcomeHome()
if ($.superShakeUrl) {
await getActInfo($.superShakeUrl);
}
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;
$.freeTimes = 0;
$.prizeBeanCount = 0;
$.totalBeanCount = 0;
$.superShakeBeanNum = 0;
$.moFangBeanNum = 0;
$.isLogin = true;
$.nickName = '';
message = ''
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
}
await clubLottery();
await showMsg();
}
}
for (let v = 0; v < cookiesArr.length; v++) {
cookie = cookiesArr[v];
$.index = v + 1;
$.UserName = decodeURIComponent(cookie.match(/pt_pin=([^; ]+)(?=;?)/) && cookie.match(/pt_pin=([^; ]+)(?=;?)/)[1]);
$.canHelp = true;
if ($.canHelp && $.activityId) {
$.assigFirends = $.assigFirends.concat({
"encryptAssignmentId": $.assigFirends[0] && $.assigFirends[0]['encryptAssignmentId'],
"assignmentType": 2,
"itemId": "SZm_olqSxIOtH97BATGmKoWraLaw",
})
for (let item of $.assigFirends || []) {
if (item['encryptAssignmentId'] && item['assignmentType'] && item['itemId']) {
console.log(`\n账号 ${$.index} ${$.UserName} 开始给 ${item['itemId']} 进行助力`)
await superBrandDoTask({
"activityId": $.activityId,
"encryptProjectId": $.encryptProjectId,
"encryptAssignmentId": item['encryptAssignmentId'],
"assignmentType": item['assignmentType'],
"itemId": item['itemId'],
"actionType": 0,
"source": "main"
});
if (!$.canHelp) {
console.log(`次数已用完,跳出助力`)
break
}
}
}
//账号内部助力后,继续抽奖
for (let i = 0; i < new Array(4).fill('').length; i++) {
await superBrandTaskLottery();
await $.wait(400);
}
}
}
if (allMessage) {
if ($.isNode()) await notify.sendNotify($.name, allMessage);
}
if (superShakeBeanConfig.superShakeUlr) {
const scaleUl = { "category": "jump", "des": "m", "url": superShakeBeanConfig['superShakeUlr'] };
const openjd = `openjd://virtual?params=${encodeURIComponent(JSON.stringify(scaleUl))}`;
$.msg($.name,'', `【${superShakeBeanConfig['superShakeTitle'] || '超级摇一摇'}】活动再次开启\n【${superShakeBeanConfig['taskVipName'] || '开通品牌会员'}】请点击弹窗直达活动页面\n${superShakeBeanConfig['superShakeUlr']}`, { 'open-url': openjd });
if ($.isNode()) await notify.sendNotify($.name, `【${superShakeBeanConfig['superShakeTitle']}】活动再次开启\n【${superShakeBeanConfig['taskVipName'] || '开通品牌会员'}】请点击链接直达活动页面\n${superShakeBeanConfig['superShakeUlr']}`, { url: openjd });
}
})()
.catch((e) => {
$.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '')
})
.finally(() => {
$.done();
})
async function clubLottery() {
try {
await doTasks();//做任务
await getFreeTimes();//获取摇奖次数
await vvipclub_receive_lottery_times();//京东会员:领取一次免费的机会
await vvipclub_shaking_info();//京东会员:查询多少次摇奖次数
await shaking();//开始摇奖
await shakeSign();//京东会员签到
await superShakeBean();//京东APP首页超级摇一摇
await superbrandShakeBean();//京东APP首页超级品牌日
await mofang();//小魔方
} catch (e) {
$.logErr(e)
}
}
async function doTasks() {
const browseTaskRes = await getTask('browseTask');
if (browseTaskRes.success) {
const { totalPrizeTimes, currentFinishTimes, taskItems } = browseTaskRes.data[0];
const taskTime = totalPrizeTimes - currentFinishTimes;
if (taskTime > 0) {
let taskID = [];
taskItems.map(item => {
if (!item.finish) {
taskID.push(item.id);
}
});
if (taskID.length > 0) console.log(`开始做浏览页面任务`)
for (let i = 0; i < new Array(taskTime).fill('').length; i++) {
await $.wait(1000);
await doTask('browseTask', taskID[i]);
}
}
} else {
console.log(`${JSON.stringify(browseTaskRes)}`)
}
const attentionTaskRes = await getTask('attentionTask');
if (attentionTaskRes.success) {
const { totalPrizeTimes, currentFinishTimes, taskItems } = attentionTaskRes.data[0];
const taskTime = totalPrizeTimes - currentFinishTimes;
if (taskTime > 0) {
let taskID = [];
taskItems.map(item => {
if (!item.finish) {
taskID.push(item.id);
}
});
console.log(`开始做关注店铺任务`)
for (let i = 0; i < new Array(taskTime).fill('').length; i++) {
await $.wait(1000);
await doTask('attentionTask', taskID[i].toString());
}
}
}
}
async function shaking() {
for (let i = 0; i < new Array($.leftShakingTimes).fill('').length; i++) {
console.log(`开始 【京东会员】 摇奖`)
await $.wait(1000);
const newShakeBeanRes = await vvipclub_shaking_lottery();
if (newShakeBeanRes.success) {
console.log(`京东会员-剩余摇奖次数:${newShakeBeanRes.data.remainLotteryTimes}`)
if (newShakeBeanRes.data && newShakeBeanRes.data.rewardBeanAmount) {
$.prizeBeanCount += newShakeBeanRes.data.rewardBeanAmount;
console.log(`恭喜你,京东会员中奖了,获得${newShakeBeanRes.data.rewardBeanAmount}京豆\n`)
} else {
console.log(`未中奖\n`)
}
}
}
for (let i = 0; i < new Array($.freeTimes).fill('').length; i++) {
console.log(`开始 【摇京豆】 摇奖`)
await $.wait(1000);
const shakeBeanRes = await shakeBean();
if (shakeBeanRes.success) {
console.log(`剩余摇奖次数:${shakeBeanRes.data.luckyBox.freeTimes}`)
if (shakeBeanRes.data && shakeBeanRes.data.prizeBean) {
console.log(`恭喜你,中奖了,获得${shakeBeanRes.data.prizeBean.count}京豆\n`)
$.prizeBeanCount += shakeBeanRes.data.prizeBean.count;
$.totalBeanCount = shakeBeanRes.data.luckyBox.totalBeanCount;
} else if (shakeBeanRes.data && shakeBeanRes.data.prizeCoupon) {
console.log(`获得优惠券:${shakeBeanRes.data.prizeCoupon['limitStr']}\n`)
} else {
console.log(`摇奖其他未知结果:${JSON.stringify(shakeBeanRes)}\n`)
}
}
}
if ($.prizeBeanCount > 0) message += `摇京豆:获得${$.prizeBeanCount}京豆`;
}
function showMsg() {
return new Promise(resolve => {
if (message) {
$.msg(`${$.name}`, `京东账号${$.index} ${$.nickName}`, message);
}
resolve();
})
}
//====================API接口=================
//查询剩余摇奖次数API
function vvipclub_shaking_info() {
return new Promise(resolve => {
const options = {
url: `https://api.m.jd.com/?t=${Date.now()}&appid=sharkBean&functionId=vvipclub_shaking_info`,
headers: {
"accept": "application/json",
"accept-encoding": "gzip, deflate, br",
"accept-language": "zh-CN,zh;q=0.9",
"cookie": cookie,
"origin": "https://skuivip.jd.com",
"referer": "https://skuivip.jd.com/",
"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")
}
}
$.get(options, (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
if (data.success) {
$.leftShakingTimes = data.data.leftShakingTimes;//剩余抽奖次数
console.log(`京东会员——摇奖次数${$.leftShakingTimes}`);
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//京东会员摇奖API
function vvipclub_shaking_lottery() {
return new Promise(resolve => {
const options = {
url: `https://api.m.jd.com/?t=${Date.now()}&appid=sharkBean&functionId=vvipclub_shaking_lottery&body=%7B%7D`,
headers: {
"accept": "application/json",
"accept-encoding": "gzip, deflate, br",
"accept-language": "zh-CN,zh;q=0.9",
"cookie": cookie,
"origin": "https://skuivip.jd.com",
"referer": "https://skuivip.jd.com/",
"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")
}
}
$.get(options, (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//领取京东会员本摇一摇一次免费的次数
function vvipclub_receive_lottery_times() {
return new Promise(resolve => {
const options = {
url: `https://api.m.jd.com/?t=${Date.now()}&appid=sharkBean&functionId=vvipclub_receive_lottery_times`,
headers: {
"accept": "application/json",
"accept-encoding": "gzip, deflate, br",
"accept-language": "zh-CN,zh;q=0.9",
"cookie": cookie,
"origin": "https://skuivip.jd.com",
"referer": "https://skuivip.jd.com/",
"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")
}
}
$.get(options, (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//查询多少次机会
function getFreeTimes() {
return new Promise(resolve => {
$.get(taskUrl('vvipclub_luckyBox', { "info": "freeTimes" }), (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
if (data.success) {
$.freeTimes = data.data.freeTimes;
console.log(`摇京豆——摇奖次数${$.freeTimes}`);
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
function getTask(info) {
return new Promise(resolve => {
$.get(taskUrl('vvipclub_lotteryTask', { info, "withItem": true }), (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function doTask(taskName, taskItemId) {
return new Promise(resolve => {
$.get(taskUrl('vvipclub_doTask', { taskName, taskItemId }), (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(data)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
function shakeBean() {
return new Promise(resolve => {
$.get(taskUrl('vvipclub_shaking', { "type": '0' }), (err, resp, data) => {
try {
if (err) {
console.log(`\n${$.name}: API查询请求失败 ‼️‼️`)
$.logErr(err);
} else {
// console.log(`摇奖结果:${data}`)
data = JSON.parse(data);
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
})
})
}
//新版超级本摇一摇
async function superShakeBean() {
await superBrandMainPage();
if ($.activityId && $.encryptProjectId) {
await superBrandTaskList();
await superBrandDoTaskFun();
await superBrandMainPage();
await lo();
}
if ($.ActInfo) {
await fc_getHomeData($.ActInfo);//获取任务列表
await doShakeTask($.ActInfo);//做任务
await fc_getHomeData($.ActInfo, true);//做完任务后查询多少次摇奖次数
await superShakeLottery($.ActInfo);//开始摇奖
} else {
console.log(`\n\n京东APP首页超级摇一摇:目前暂无活动\n\n`)
}
}
function welcomeHome() {
return new Promise(resolve => {
const data = {
"homeAreaCode": "",
"identity": "88732f840b77821b345bf07fd71f609e6ff12f43",
"fQueryStamp": "",
"globalUIStyle": "9.0.0",
"showCate": "1",
"tSTimes": "",
"geoLast": "",
"geo": "",
"cycFirstTimeStamp": "",
"displayVersion": "9.0.0",
"geoReal": "",
"controlMaterials": "",
"xviewGuideFloor": "index,category,find,cart,home",
"fringe": "",
"receiverGeo": ""
}
const options = {
url: `https://api.m.jd.com/client.action?functionId=welcomeHome`,
// url: `https://api.m.jd.com/client.action?functionId=welcomeHome&body=${escape(JSON.stringify(data))}&uuid=8888888&client=apple&clientVersion=9.4.1&st=1618538579097&sign=e29d09be25576be52ec22a3bb74d4f86&sv=100`,
// body: `body=${escape(JSON.stringify(data))}`,
body: `body=%7B%22homeAreaCode%22%3A%220%22%2C%22identity%22%3A%2288732f840b77821b345bf07fd71f609e6ff12f43%22%2C%22cycNum%22%3A1%2C%22fQueryStamp%22%3A%221619741900009%22%2C%22globalUIStyle%22%3A%229.0.0%22%2C%22showCate%22%3A%221%22%2C%22tSTimes%22%3A%220%22%2C%22geoLast%22%3A%22K3%252BcQaJxm9FzAm8%252BYHBwQKEMnguxItJAtNhFQOgUkktO5Vmidb%252BfKedLYq%252Fjlnc%252BK0ZsoA8jI8yXkYA6M2L5NYrGdBxZPbV%252FzT%252BU%252BHaCeNg%253D%22%2C%22geo%22%3A%22CZQirfKpZqpcvvBN0KadX76P55F3UdFoB2C3P0ZyHOXZWjeifB1aM0xH3BWx0YRlyu4eaUsfA3KpuoAraiffcw%253D%253D%22%2C%22cycFirstTimeStamp%22%3A%221619740961090%22%2C%22displayVersion%22%3A%229.0.0%22%2C%22geoReal%22%3A%22CZQirfKpZqpcvvBN0KadX76P55F3UdFoB2C3P0ZyHOXtnAGs7wzWHMkTSTIEj7qi%22%2C%22controlMaterials%22%3A%22null%22%2C%22xviewGuideFloor%22%3A%22index%2Ccategory%2Cfind%2Ccart%2Chome%22%2C%22fringe%22%3A%221%22%2C%22receiverGeo%22%3A%22mTBeEjk2Q83Kb3%252Fylt2Amm7iguwnhvKDgDnR18TktRpedJcPIHjALOIwGuNKAgau%22%7D&client=apple&clientVersion=9.4.6&d_brand=apple&isBackground=N&joycious=104&lang=zh_CN&networkType=4g&networklibtype=JDNetworkBaseAF&openudid=88732f840b77821b345bf07fd71f609e6ff12f43&osVersion=14.3&partner=apple&rfs=0000&scope=11&screen=828%2A1792&sign=69cc68677ae63b0a8737602766a0a340&st=1619741900013&sv=111&uts=0f31TVRjBSujckcdxhii7gq9cidRV4uxtCNZpaQs9IOuG5PD2oGme36aUnsUBSyCtrnCzcJjRQzsekOXnNu9XyW4W2UAsnnZ06POovikHhGabI9pwW8ZeJ2vmOBTWqWjA66DWDvRHGVeJeXzsm5xolz7r%2FX0APYfhg8I5QBwgKJfD3hzoXkHcnsGfMhHncRzuC4iOtgVG8L%2FnQyyNwXAJQ%3D%3D&uuid=hjudwgohxzVu96krv%2FT6Hg%3D%3D&wifiBssid=unknown`,
headers: {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "zh-Hans-CN;q=1, zh-Hant-CN;q=0.9",
"Connection": "keep-alive",
"Content-Length": "1761",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "api.m.jd.com",
"User-Agent": "JD4iPhone/167588 (iPhone; iOS 14.3; Scale/2.00)"
}
}
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} welcomeHome API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data['floorList'] && data['floorList'].length) {
const shakeFloorNew = data['floorList'].filter(vo => !!vo && vo.type === 'shakeFloorNew')[0];
const shakeFloorNew2 = data['floorList'].filter(vo => !!vo && vo.type === 'float')[0];
// console.log('shakeFloorNew2', JSON.stringify(shakeFloorNew2))
if (shakeFloorNew) {
const jump = shakeFloorNew['jump'];
if (jump && jump.params && jump['params']['url']) {
$.superShakeUrl = jump.params.url;//有活动链接,但活动可能已过期,需做进一步判断
console.log(`【超级摇一摇】活动链接:${jump.params.url}`);
}
}
if (shakeFloorNew2) {
const jump = shakeFloorNew2['jump'];
if (jump && jump.params && jump['params']['url'].includes('https://h5.m.jd.com/babelDiy/Zeus/2PTXhrEmiMEL3mD419b8Gn9bUBiJ/index.html')) {
console.log(`【超级品牌日】活动链接:${jump.params.url}`);
$.superbrandUrl = jump.params.url;
}
}
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
//=========老版本超级摇一摇================
function getActInfo(url) {
return new Promise(resolve => {
$.get({
url,
headers:{
// '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"),
},
timeout: 10000
},async (err,resp,data)=>{
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
data = data && data.match(/window\.__FACTORY__TAOYIYAO__STATIC_DATA__ = (.*)}/)
if (data) {
data = JSON.parse(data[1] + '}');
if (data['pageConfig']) superShakeBeanConfig['superShakeTitle'] = data['pageConfig']['htmlTitle'];
if (data['taskConfig']) {
$.ActInfo = data['taskConfig']['taskAppId'];
console.log(`\n获取【${superShakeBeanConfig['superShakeTitle']}】活动ID成功:${$.ActInfo}\n`);
}
}
}
} catch (e) {
console.log(e)
}
finally {
resolve()
}
})
})
}
function fc_getHomeData(appId, flag = false) {
return new Promise(resolve => {
const body = { appId }
const options = taskPostUrl('fc_getHomeData', body)
$.taskVos = [];
$.lotteryNum = 0;
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} fc_getHomeData API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data['code'] === 0) {
if (data['data']['bizCode'] === 0) {
const taskVos = data['data']['result']['taskVos'] || [];
if (flag && $.index === 1) {
superShakeBeanConfig['superShakeBeanFlag'] = true;
superShakeBeanConfig['taskVipName'] = taskVos.filter(vo => !!vo && vo['taskType'] === 21)[0]['taskName'];
}
superShakeBeanConfig['superShakeUlr'] = $.superShakeUrl;
$.taskVos = taskVos.filter(item => !!item && item['status'] === 1) || [];
$.lotteryNum = parseInt(data['data']['result']['lotteryNum']);
$.lotTaskId = parseInt(data['data']['result']['lotTaskId']);
} else if (data['data']['bizCode'] === 101) {
console.log(`京东APP首页超级摇一摇: ${data['data']['bizMsg']}`);
}
} else {
console.log(`获取超级摇一摇任务数据异常: ${JSON.stringify(data)}`)
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
async function doShakeTask(appId) {
for (let vo of $.taskVos) {
if (vo['taskType'] === 21) {
console.log(`超级摇一摇 ${vo['taskName']} 跳过`);
continue
}
if (vo['taskType'] === 9) {
console.log(`开始做 ${vo['taskName']},等10秒`);
const shoppingActivityVos = vo['shoppingActivityVos'];
for (let task of shoppingActivityVos) {
await fc_collectScore({
appId,
"taskToken": task['taskToken'],
"taskId": vo['taskId'],
"itemId": task['itemId'],
"actionType": 1
})
await $.wait(10000)
await fc_collectScore({
appId,
"taskToken": task['taskToken'],
"taskId": vo['taskId'],
"itemId": task['itemId'],
"actionType": 0
})
}
}
if (vo['taskType'] === 1) {
console.log(`开始做 ${vo['taskName']}, 等8秒`);
const followShopVo = vo['followShopVo'];
for (let task of followShopVo) {
await fc_collectScore({
appId,
"taskToken": task['taskToken'],
"taskId": vo['taskId'],
"itemId": task['itemId'],
"actionType": 1
})
await $.wait(9000)
await fc_collectScore({
appId,
"taskToken": task['taskToken'],
"taskId": vo['taskId'],
"itemId": task['itemId'],
"actionType": 0
})
}
}
}
}
function fc_collectScore(body) {
return new Promise(resolve => {
const options = taskPostUrl('fc_collectScore', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} fc_collectScore API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
console.log(`${JSON.stringify(data)}`)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
async function superShakeLottery(appId) {
if ($.lotteryNum) console.log(`\n\n开始京东APP首页超级摇一摇 摇奖`);
for (let i = 0; i < new Array($.lotteryNum).fill('').length; i++) {
await fc_getLottery(appId);//抽奖
await $.wait(1000)
}
if ($.superShakeBeanNum > 0) {
message += `${message ? '\n' : ''}${superShakeBeanConfig['superShakeTitle']}:获得${$.superShakeBeanNum}京豆`
allMessage += `京东账号${$.index}${$.nickName || $.UserName}\n${superShakeBeanConfig['superShakeTitle']}:获得${$.superShakeBeanNum}京豆${$.index !== cookiesArr.length ? '\n\n' : ''}`;
}
}
function fc_getLottery(appId) {
return new Promise(resolve => {
const body = {appId, "taskId": $.lotTaskId}
const options = taskPostUrl('fc_getLotteryResult', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} fc_collectScore API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data && data['data']['bizCode'] === 0) {
$.myAwardVo = data['data']['result']['myAwardVo'];
if ($.myAwardVo) {
console.log(`超级摇一摇 抽奖结果:${JSON.stringify($.myAwardVo)}`)
if ($.myAwardVo['type'] === 2) {
$.superShakeBeanNum = $.superShakeBeanNum + parseInt($.myAwardVo['jBeanAwardVo']['quantity']);
}
}
} else {
console.log(`超级摇一摇 抽奖异常: ${JSON.stringify(data)}`)
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
//===================新版超级本摇一摇==============
function superBrandMainPage() {
return new Promise(resolve => {
const body = {"source":"main"};
const options = superShakePostUrl('superBrandMainPage', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} superBrandTaskList API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data['code'] === '0') {
if (data['data']['bizCode'] === '0') {
//superShakeBeanConfig['superShakeUlr'] = jump.params.url;
//console.log(`【超级摇一摇】活动链接:${superShakeBeanConfig['superShakeUlr']}`);
superShakeBeanConfig['superShakeUlr'] = $.superShakeUrl;
$.activityId = data['data']['result']['activityBaseInfo']['activityId'];
$.encryptProjectId = data['data']['result']['activityBaseInfo']['encryptProjectId'];
$.activityName = data['data']['result']['activityBaseInfo']['activityName'];
$.userStarNum = Number(data['data']['result']['activityUserInfo']['userStarNum']) || 0;
superShakeBeanConfig['superShakeTitle'] = $.activityName;
console.log(`${$.activityName} 当前共有积分:${$.userStarNum},可抽奖:${parseInt($.userStarNum / 100)}次(最多4次摇奖机会)\n`);
} else {
console.log(`\n【新版本 超级摇一摇】获取信息失败:${data['data']['bizMsg']}\n`);
}
} else {
console.log(`获取超级摇一摇信息异常:${JSON.stringify(data)}\n`);
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
function superBrandTaskList() {
return new Promise(resolve => {
$.taskList = [];
const body = {"activityId": $.activityId, "assistInfoFlag": 4, "source": "main"};
const options = superShakePostUrl('superBrandTaskList', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} superBrandTaskList API请求失败,请检查网路重试`)
} else {
if (data) {
// console.log(data);
data = JSON.parse(data);
if (data['code'] === '0' && data['data']['bizCode'] === '0') {
$.taskList = data['data']['result']['taskList'];
$.canLottery = $.taskList.filter(vo => !!vo && vo['assignmentTimesLimit'] === 4)[0]['completionFlag']
} else {
console.log(`获取超级摇一摇任务异常:${JSON.stringify(data)}`);
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
async function superBrandDoTaskFun() {
$.taskList = $.taskList.filter(vo => !!vo && !vo['completionFlag'] && (vo['assignmentType'] !== 6 && vo['assignmentType'] !== 7 && vo['assignmentType'] !== 0 && vo['assignmentType'] !== 30));
for (let item of $.taskList) {
if (item['assignmentType'] === 1) {
const { ext } = item;
console.log(`开始做 ${item['assignmentName']},需等待${ext['waitDuration']}秒`);
const shoppingActivity = ext['shoppingActivity'];
for (let task of shoppingActivity) {
await superBrandDoTask({
"activityId": $.activityId,
"encryptProjectId": $.encryptProjectId,
"encryptAssignmentId": item['encryptAssignmentId'],
"assignmentType": item['assignmentType'],
"itemId": task['itemId'],
"actionType": 1,
"source": "main"
})
await $.wait(1000 * ext['waitDuration'])
await superBrandDoTask({
"activityId": $.activityId,
"encryptProjectId": $.encryptProjectId,
"encryptAssignmentId": item['encryptAssignmentId'],
"assignmentType": item['assignmentType'],
"itemId": task['itemId'],
"actionType": 0,
"source": "main"
})
}
}
if (item['assignmentType'] === 3) {
const { ext } = item;
console.log(`开始做 ${item['assignmentName']}`);
const followShop = ext['followShop'];
for (let task of followShop) {
await superBrandDoTask({
"activityId": $.activityId,
"encryptProjectId": $.encryptProjectId,
"encryptAssignmentId": item['encryptAssignmentId'],
"assignmentType": item['assignmentType'],
"itemId": task['itemId'],
"actionType": 0,
"source": "main"
})
}
}
if (item['assignmentType'] === 2) {
const { ext } = item;
const assistTaskDetail = ext['assistTaskDetail'];
console.log(`${item['assignmentName']}好友邀请码: ${assistTaskDetail['itemId']}`)
if (assistTaskDetail['itemId']) $.assigFirends.push({
itemId: assistTaskDetail['itemId'],
encryptAssignmentId: item['encryptAssignmentId'],
assignmentType: item['assignmentType'],
});
}
}
}
function superBrandDoTask(body) {
return new Promise(resolve => {
const options = superShakePostUrl('superBrandDoTask', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} superBrandTaskList API请求失败,请检查网路重试`)
} else {
if (data) {
if (body['assignmentType'] === 2) {
console.log(`助力好友 ${body['itemId']}结果 ${data}`);
} else {
console.log('做任务结果', data);
}
data = JSON.parse(data);
if (data && data['code'] === '0' && data['data']['bizCode'] === '108') {
$.canHelp = false;
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
async function lo() {
const num = parseInt(($.userStarNum || 0) / 100);
if (!$.canLottery) {
for (let i = 0; i < new Array(num).fill('').length; i++) {
await $.wait(1000);
await superBrandTaskLottery();
}
}
if ($.superShakeBeanNum > 0) {
message += `${message ? '\n' : ''}${$.activityName || '超级摇一摇'}:获得${$.superShakeBeanNum}京豆\n`;
allMessage += `京东账号${$.index}${$.nickName || $.UserName}\n${superShakeBeanConfig['superShakeTitle']}:获得${$.superShakeBeanNum}京豆${$.index !== cookiesArr.length ? '\n\n' : ''}`;
}
}
function superBrandTaskLottery() {
return new Promise(resolve => {
const body = { "activityId": $.activityId, "source": "main" }
const options = superShakePostUrl('superBrandTaskLottery', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} superBrandDoTaskLottery API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data && data['code'] === '0') {
if (data['data']['bizCode'] === "TK000") {
$.rewardComponent = data['data']['result']['rewardComponent'];
if ($.rewardComponent) {
console.log(`超级摇一摇 抽奖结果:${JSON.stringify($.rewardComponent)}`)
if ($.rewardComponent.beanList && $.rewardComponent.beanList.length) {
console.log(`获得${$.rewardComponent.beanList[0]['quantity']}京豆`)
$.superShakeBeanNum += parseInt($.rewardComponent.beanList[0]['quantity']);
}
}
} else if (data['data']['bizCode'] === "TK1703") {
console.log(`超级摇一摇 抽奖失败:${data['data']['bizMsg']}`);
} else {
console.log(`超级摇一摇 抽奖失败:${data['data']['bizMsg']}`);
}
} else {
console.log(`超级摇一摇 抽奖异常: ${JSON.stringify(data)}`)
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
//============超级品牌日==============
async function superbrandShakeBean() {
$.bradCanLottery = true;//是否有超级品牌日活动
$.bradHasLottery = false;//是否已抽奖
await qryCompositeMaterials("advertGroup", "04405074", "Brands");//获取品牌活动ID
await superbrand_getHomeData();
if (!$.bradCanLottery) {
console.log(`【${$.stageName} 超级品牌日】:活动不在进行中`)
return
}
if ($.bradHasLottery) {
console.log(`【${$.stageName} 超级品牌日】:已完成抽奖`)
return
}
await superbrand_getMaterial();//获取完成任务所需的一些ID
await qryCompositeMaterials();//做任务
await superbrand_getGift();//抽奖
}
function superbrand_getMaterial() {
return new Promise(resolve => {
const body = {"brandActivityId":$.brandActivityId}
const options = superShakePostUrl('superbrand_getMaterial', body)
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} superbrand_getMaterial API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data)
if (data['code'] === 0) {
if (data['data']['bizCode'] === 0) {
const { result } = data['data'];
$.cmsTaskShopId = result['cmsTaskShopId'];
$.cmsTaskLink = result['cmsTaskLink'];
$.cmsTaskGroupId = result['cmsTaskGroupId'];
console.log(`【cmsTaskGroupId】:${result['cmsTaskGroupId']}`)
} else {
console.log(`超级超级品牌日 ${data['data']['bizMsg']}`)
}
} else {
console.log(`超级超级品牌日 异常: ${JSON.stringify(data)}`)
}
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
function qryCompositeMaterials(type = "productGroup", id = $.cmsTaskGroupId, mapTo = "Tasks0") {
return new Promise(resolve => {
const t1 = {type, id, mapTo}
const qryParam = JSON.stringify([t1]);
const body = {
qryParam,
"activityId": $.brandActivityId2,
"pageId": "1411763",
"reqSrc": "jmfe",
"geo": {"lng": "", "lat": ""}
}
const options = taskPostUrl('qryCompositeMaterials', body)
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} qryCompositeMaterials API请求失败,请检查网路重试`)
} else {
if (data) {
data = JSON.parse(data);
if (data['code'] === '0') {
if (mapTo === 'Brands') {
$.stageName = data.data.Brands.stageName;
console.log(`\n\n【${$.stageName} brandActivityId】:${data.data.Brands.list[0].extension.copy1}`)
$.brandActivityId = data.data.Brands.list[0].extension.copy1 || $.brandActivityId;
} else {
const { list } = data['data']['Tasks0'];
console.log(`超级品牌日,做关注店铺 任务`)
let body = {"brandActivityId": $.brandActivityId, "taskType": "1", "taskId": $.cmsTaskShopId}
await superbrand_doMyTask(body);
console.log(`超级品牌日,逛品牌会场 任务`)
body = {"brandActivityId": $.brandActivityId, "taskType": "2", "taskId": $.cmsTaskLink}
await superbrand_doMyTask(body);
console.log(`超级品牌日,浏览下方指定商品 任务`)
for (let item of list.slice(0, 3)) {
body = {"brandActivityId": $.brandActivityId, "taskType": "3", "taskId": item['skuId']};
await superbrand_doMyTask(body);
}
}