-
Notifications
You must be signed in to change notification settings - Fork 0
/
jd_nian.js
1273 lines (1230 loc) · 48.2 KB
/
jd_nian.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
/*
京东炸年兽🧨
活动时间:2021-1-18至2021-2-11
暂不加入品牌会员
活动入口:https://wbbny.m.jd.com/babelDiy/Zeus/2cKMj86srRdhgWcKonfExzK4ZMBy/index.html
活动地址:京东app左侧浮动窗口
已支持IOS双京东账号,Node.js支持N个京东账号
脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js
============Quantumultx===============
[task_local]
#京东炸年兽🧨
0 9,12,20 * * * https://raw.githubusercontent.com/LXK9301/jd_scripts/master/jd_nian.js, tag=京东炸年兽🧨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/lxk0301/jd_nian.png, enabled=true
================Loon==============
[Script]
cron "0 9,12,20 * * *" script-path=https://raw.githubusercontent.com/LXK9301/jd_scripts/master/jd_nian.js,tag=京东炸年兽🧨
===============Surge=================
京东炸年兽🧨 = type=cron,cronexp="0 9,12,20 * * *",wake-system=1,timeout=3600,script-path=https://raw.githubusercontent.com/LXK9301/jd_scripts/master/jd_nian.js
============小火箭=========
京东炸年兽🧨 = type=cron,script-path=https://raw.githubusercontent.com/LXK9301/jd_scripts/master/jd_nian.js, cronexpr="0 9,12,20 * * *", timeout=3600, enable=true
*/
const $ = new Env('京东炸年兽🧨');
const notify = $.isNode() ? require('./sendNotify') : '';
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
let jdNotify = true;//是否关闭通知,false打开通知推送,true关闭通知推送
const randomCount = $.isNode() ? 20 : 5;
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [], cookie = '', message;
if ($.isNode()) {
Object.keys(jdCookieNode).forEach((item) => {
cookiesArr.push(jdCookieNode[item])
})
if (process.env.JD_DEBUG && process.env.JD_DEBUG === 'false') console.log = () => {};
} else {
let cookiesData = $.getdata('CookiesJD') || "[]";
cookiesData = jsonParse(cookiesData);
cookiesArr = cookiesData.map(item => item.cookie);
cookiesArr.reverse();
cookiesArr.push(...[$.getdata('CookieJD2'), $.getdata('CookieJD')]);
cookiesArr.reverse();
cookiesArr = cookiesArr.filter(item => item !== "" && item !== null && item !== undefined);
}
const JD_API_HOST = 'https://api.m.jd.com/client.action';
const inviteCodes = [
`cgxZaDXWZPCmiUa2akPVmFMI27K6antJzucULQPYNim_BPEW1Dwd@cgxZdTXtIrPYuAqfDgSpusxr97nagU6hwFa3TXxnqM95u3ib-xt4nWqZdz8@cgxZdTXtIO-O6QmYDVf67KCEJ19JcybuMB2_hYu8NSNQg0oS2Z_FpMce45g@cgxZdTXtILiLvg7OAASp61meehou4OeZvqbjghsZlc3rI5SBk7b3InUqSQ0@cgxZ9_MZ8gByP7FZ368dN8oTZBwGieaH5HvtnvXuK1Epn_KK8yol8OYGw7h3M2j_PxSZvYA`,
`cgxZaDXWZPCmiUa2akPVmFMI27K6antJzucULQPYNim_BPEW1Dwd@cgxZdTXtIrPYuAqfDgSpusxr97nagU6hwFa3TXxnqM95u3ib-xt4nWqZdz8@cgxZdTXtIO-O6QmYDVf67KCEJ19JcybuMB2_hYu8NSNQg0oS2Z_FpMce45g@cgxZdTXtILiLvg7OAASp61meehou4OeZvqbjghsZlc3rI5SBk7b3InUqSQ0@cgxZdTXtIumO4w2cDgSqvYcqHwjaAzLxu0S371Dh_fctFJtN0tXYzdR7JaY`
];
const pkInviteCodes = [
'IgNWdiLGaPadvlqJQnnKp27-YpAvKvSYNTSkTGvZylf_0wcvqD9EMkohEd8@IgNWdiLGaPaZskfACQyhgLSpZWps-WtQEW3McifV@IgNWdiLGaPaAvmHPAQf769XqjJjMyRirPzN9-AS-WHY9Y_G7t9Cwe5gdiI2qEvHZ@IgNWdiLGaPYCeJUfsq18UNi5ln9xEZSPRdOue8Wl3hJTS2SQzU0vulL0fHeULJaIfgqHFd7f_Ks',
'IgNWdiLGaPadvlqJQnnKp27-YpAvKvSYNTSkTGvZylf_0wcvqD9EMkohEd8@IgNWdiLGaPaZskfACQyhgLSpZWps-WtQEW3McifV@IgNWdiLGaPaAvmHPAQf769XqjJjMyRirPzN9-AS-WHY9Y_G7t9Cwe5gdiI2qEvHZ'
]
!(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"});
return;
}
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;
$.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 shareCodesFormat();
await shareCodesFormatPk()
await jdNian()
}
}
})()
.catch((e) => {
$.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '')
})
.finally(() => {
$.done();
})
async function jdNian() {
try {
await getHomeData()
if (!$.secretp) return
let hour = new Date().getUTCHours()
if (1 <= hour && hour < 12) {
// 北京时间9点-20点
$.hasGroup = false
await pkTaskDetail()
if ($.hasGroup) await pkInfo()
await helpFriendsPK()
}
if (12 <= hour && hour < 14) {
// 北京时间20点-22点
$.hasGroup = false
await pkTaskStealDetail()
if ($.hasGroup) await pkInfo()
}
await $.wait(2000)
await killCouponList()
await $.wait(2000)
await map()
await $.wait(2000)
await queryMaterials()
await getTaskList()
await $.wait(1000)
await doTask()
await $.wait(2000)
await helpFriends()
await $.wait(2000)
await getHomeData(true)
await showMsg()
} catch (e) {
$.logErr(e)
}
}
function encode(data, aa, extraData) {
const temp = {
"extraData": JSON.stringify(extraData),
"businessData": JSON.stringify(data),
"secretp": aa,
}
return {"ss": (JSON.stringify(temp))};
}
function getRnd() {
return Math.floor(1e6 * Math.random()).toString();
}
function showMsg() {
return new Promise(resolve => {
console.log('任务已做完!\n如有未完成的任务,请多执行几次。注:目前入会任务不会做')
console.log('如出现taskVos错误的,请更新USER_AGENTS.js或使用自定义UA功能')
if (!jdNotify) {
$.msg($.name, '', `${message}`);
} else {
$.log(`京东账号${$.index}${$.nickName}\n${message}`);
}
if (new Date().getHours() === 23) {
$.msg($.name, '', `京东账号${$.index}${$.nickName}\n${message}`);
}
resolve()
})
}
async function helpFriends() {
for (let code of $.newShareCodes) {
if (!code) continue
await getFriendData(code)
await $.wait(1000)
}
}
async function helpFriendsPK() {
for (let code of $.newShareCodesPk) {
if (!code) continue
console.log(`去助力PK好友${code}`)
await pkAssignGroup(code)
await $.wait(1000)
}
}
async function doTask() {
for (let item of $.taskVos) {
if (item.taskType === 14) {
//好友助力任务
//console.log(`您的好友助力码为${item.assistTaskDetailVo.taskToken}`)
}
if (item.taskType === 2) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
await getFeedDetail({"taskId": item.taskId}, item.taskId)
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
} else if (item.taskType === 3 || item.taskType === 26) {
if (item.shoppingActivityVos) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
for (let task of item.shoppingActivityVos) {
if (task.status === 1) {
await collectScore(item.taskId, task.itemId);
}
await $.wait(3000)
}
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
}
} else if (item.taskType === 9) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
for (let task of item.shoppingActivityVos) {
if (task.status === 1) {
await collectScore(item.taskId, task.itemId, 1);
}
await $.wait(3000)
}
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
} else if (item.taskType === 7) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
for (let task of item.browseShopVo) {
if (task.status === 1) {
await collectScore(item.taskId, task.itemId, 1);
}
}
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
} else if (item.taskType === 13) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
await collectScore(item.taskId, "1");
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
} else if (item.taskType === 21) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
for (let task of item.brandMemberVos) {
if (task.status === 1) {
await collectScore(item.taskId, task.itemId);
}
await $.wait(3000)
}
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
}
}
}
function getFeedDetail(body = {}) {
return new Promise(resolve => {
$.post(taskPostUrl("nian_getFeedDetail", body, "nian_getFeedDetail"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data.bizCode === 0) {
if (data.data.result.addProductVos) {
for (let vo of data.data.result.addProductVos) {
if (vo['status'] === 1) {
for (let i = 0; i < vo.productInfoVos.length && i + vo['times'] < vo['maxTimes']; ++i) {
let bo = vo.productInfoVos[i]
await collectScore(vo['taskId'], bo['itemId'])
await $.wait(2000)
}
}
}
}
if (data.data.result.taskVos) {
for (let vo of data.data.result.taskVos) {
if (vo['status'] === 1) {
for (let i = 0; i < vo.productInfoVos.length && i + vo['times'] < vo['maxTimes']; ++i) {
let bo = vo.productInfoVos[i]
await collectScore(vo['taskId'], bo['itemId'])
await $.wait(2000)
}
}
}
}
// $.userInfo = data.data.result.userInfo;
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function getHomeData(info = false) {
return new Promise((resolve) => {
$.post(taskPostUrl('nian_getHomeData'), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
data = JSON.parse(data);
if (data && data.data['bizCode'] === 0) {
$.userInfo = data.data.result.homeMainInfo
$.secretp = $.userInfo.secretp;
if (!$.secretp) {
console.log(`账号被风控`)
message += `账号被风控,无法参与活动\n`
$.secretp = null
return
}
console.log(`当前爆竹${$.userInfo.raiseInfo.remainScore}🧨,下一关需要${$.userInfo.raiseInfo.nextLevelScore - $.userInfo.raiseInfo.curLevelStartScore}🧨`)
if (info) {
message += `当前爆竹${$.userInfo.raiseInfo.remainScore}🧨\n`
return
}
if ($.userInfo.raiseInfo.produceScore > 0) {
console.log(`可收取的爆竹大于0,去收取爆竹`)
await collectProduceScore()
}
if (parseInt($.userInfo.raiseInfo.remainScore) >= parseInt($.userInfo.raiseInfo.nextLevelScore - $.userInfo.raiseInfo.curLevelStartScore)) {
console.log(`当前爆竹🧨大于升级所需爆竹🧨,去升级`)
await $.wait(2000)
await raise()
}
} else {
$.secretp = null
console.log(`账号被风控,无法参与活动`)
message += `账号被风控,无法参与活动\n`
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
function collectProduceScore(taskId = "collectProducedCoin") {
let temp = {
"taskId": taskId,
"rnd": getRnd(),
"inviteId": "-1",
"stealId": "-1"
}
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
const body = encode(temp, $.secretp, extraData);
return new Promise(resolve => {
$.post(taskPostUrl("nian_collectProduceScore", body, "nian_collectProduceScore"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data.bizCode === 0) {
console.log(`收取成功,获得${data.data.result.produceScore}爆竹🧨`)
// $.userInfo = data.data.result.userInfo;
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function collectScore(taskId, itemId, actionType = null, inviteId = null, shopSign = null) {
let temp = {
"taskId": taskId,
"rnd": getRnd(),
"inviteId": "-1",
"stealId": "-1"
}
if (itemId) temp['itemId'] = itemId
if (actionType) temp['actionType'] = actionType
if (inviteId) temp['inviteId'] = inviteId
if (shopSign) temp['shopSign'] = shopSign
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
let body = {
...encode(temp, $.secretp, extraData),
taskId: taskId,
itemId: itemId
}
if (actionType) body['actionType'] = actionType
if (inviteId) body['inviteId'] = inviteId
if (shopSign) body['shopSign'] = shopSign
return new Promise(resolve => {
$.post(taskPostUrl("nian_collectScore", body, "nian_collectScore"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0) {
if (data.data && data.data.bizCode === 0) {
if (data.data.result.score)
console.log(`任务完成,获得${data.data.result.score}爆竹🧨`)
else if (data.data.result.maxAssistTimes) {
console.log(`助力好友成功`)
} else {
console.log(`任务上报成功`)
await $.wait(10 * 1000)
if (data.data.result.taskToken) {
await doTask2(data.data.result.taskToken)
}
}
// $.userInfo = data.data.result.userInfo;
} else {
console.log(data.data.bizMsg)
}
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkCollectScore(taskId, itemId, actionType = null, inviteId = null, shopSign = null) {
let temp = {
"taskId": taskId,
"rnd": getRnd(),
"inviteId": "-1",
"stealId": "-1"
}
if (itemId) temp['itemId'] = itemId
if (actionType) temp['actionType'] = actionType
if (inviteId) temp['inviteId'] = inviteId
if (shopSign) temp['shopSign'] = shopSign
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
let body = {
...encode(temp, $.secretp, extraData),
taskId: taskId,
itemId: itemId
}
if (actionType) body['actionType'] = actionType
if (inviteId) body['inviteId'] = inviteId
if (shopSign) body['shopSign'] = shopSign
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_collectScore", body, "nian_pk_collectScore"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0) {
if (data.data && data.data.bizCode === 0) {
if (data.data.result.score)
console.log(`任务完成,获得${data.data.result.score}积分`)
else if (data.data.result.maxAssistTimes) {
console.log(`助力好友成功`)
} else {
console.log(`任务上报成功`)
await $.wait(10 * 1000)
if (data.data.result.taskToken) {
await doTask2(data.data.result.taskToken)
}
}
// $.userInfo = data.data.result.userInfo;
} else {
console.log(data.data.bizMsg)
}
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function doTask2(taskToken) {
let body = {
"dataSource": "newshortAward",
"method": "getTaskAward",
"reqParams": `{\"taskToken\":\"${taskToken}\"}`
}
return new Promise(resolve => {
$.post(taskPostUrl("qryViewkitCallbackResult", body,), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
// console.log(data)
if (data.code === "0") {
console.log(data.toast.subTitle + '🧨')
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function raise(taskId = "nian_raise") {
let temp = {
"taskId": taskId,
"rnd": getRnd(),
"inviteId": "-1",
"stealId": "-1"
}
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
const body = encode(temp, $.secretp, extraData);
return new Promise(resolve => {
$.post(taskPostUrl("nian_raise", body, "nian_raise"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data.bizCode === 0) {
console.log(`升级成功`)
// $.userInfo = data.data.result.userInfo;
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function getTaskList(body = {}) {
return new Promise(resolve => {
$.post(taskPostUrl("nian_getTaskDetail", body, "nian_getTaskDetail"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data.bizCode === 0) {
if (JSON.stringify(body) === "{}") {
$.taskVos = data.data.result.taskVos;//任务列表
console.log(`您的好友助力码为${data.data.result.inviteId}`)
}
// $.userInfo = data.data.result.userInfo;
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function getFriendData(inviteId) {
return new Promise((resolve) => {
$.post(taskPostUrl('nian_getHomeData', {"inviteId": inviteId}), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
data = JSON.parse(data);
if (data.data && data.data['bizCode'] === 0) {
$.itemId = data.data.result.homeMainInfo.guestInfo.itemId
await collectScore('2', $.itemId, null, inviteId)
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve();
}
})
})
}
function map() {
return new Promise(resolve => {
$.post(taskPostUrl("nian_myMap", {}, "nian_myMap"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data.bizCode === 0) {
let msg = '当前已开启的地图:'
for (let vo of data.data.result.monsterInfoList) {
if (vo.curLevel) msg += vo.name + ' '
}
console.log(msg)
// $.userInfo = data.data.result.userInfo;
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function queryMaterials() {
let body = {
"qryParam": "[{\"type\":\"advertGroup\",\"mapTo\":\"viewLogo\",\"id\":\"05149412\"},{\"type\":\"advertGroup\",\"mapTo\":\"bottomLogo\",\"id\":\"05149413\"}]",
"activityId": "2cKMj86srRdhgWcKonfExzK4ZMBy",
"pageId": "",
"reqSrc": "",
"applyKey": "21beast"
}
return new Promise(resolve => {
$.post(taskPostUrl("qryCompositeMaterials", body, "qryCompositeMaterials"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === '0') {
let shopList = data.data.viewLogo.list.concat(data.data.bottomLogo.list)
let nameList = []
for (let vo of shopList) {
if (nameList.includes(vo.name)) continue
nameList.push(vo.name)
console.log(`去做${vo.name}店铺任务`)
await shopLotteryInfo(vo.desc)
await $.wait(2000)
}
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function shopLotteryInfo(shopSign) {
let body = {"shopSign": shopSign}
return new Promise(resolve => {
$.post(taskPostUrl("nian_shopLotteryInfo", body, "nian_shopLotteryInfo"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0) {
for (let vo of data.data.result.taskVos) {
if (vo.status === 1) {
if (vo.taskType === 12) {
console.log(`去做${vo.taskName}任务`)
await $.wait(2000)
await collectScore(vo.taskId, vo.simpleRecordInfoVo.itemId, null, null, shopSign)
} else if (vo.taskType === 3 || vo.taskType === 26) {
if (vo.shoppingActivityVos) {
if (vo.status === 1) {
console.log(`准备做此任务:${vo.taskName}`)
for (let task of vo.shoppingActivityVos) {
if (task.status === 1) {
await $.wait(2000)
await collectScore(vo.taskId, task.advId, null, null, shopSign);
}
}
} else if (vo.status === 2) {
console.log(`${vo.taskName}已做完`)
}
}
}
}
}
for (let i = 0; i < data.data.result.lotteryNum; ++i) {
console.log(`去抽奖:${i + 1}/${data.data.result.lotteryNum}`)
await $.wait(2000)
await doShopLottery(shopSign)
}
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function doShopLottery(shopSign) {
let body = {"shopSign": shopSign}
return new Promise(resolve => {
$.post(taskPostUrl("nian_doShopLottery", body, "nian_doShopLottery"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0 && data.data && data.data.result) {
let result = data.data.result
if (result.awardType === 4)
console.log(`抽奖成功,获得${result.score}爆竹🧨`)
else if (result.awardType === 2 || result.awardType === 3)
console.log(`抽奖成功,获得优惠卷`)
else
console.log(`抽奖成功,获得${JSON.stringify(result)}`)
} else {
console.log(`抽奖失败`)
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkInfo() {
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_getHomeData", {}, "nian_pk_getHomeData"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
$.group = true
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0 && data.data && data.data.bizCode === 0) {
console.log(`\n您的好友PK助力码为${data.data.result.groupInfo.groupAssistInviteId}\n`)
let info = data.data.result.groupPkInfo
if (info.dayAward)
console.log(`白天关卡:${info.dayAward}元红包,完成进度 ${info.dayTotalValue}/${info.dayTargetSell}`)
else {
function secondToDate(result) {
var h = Math.floor(result / 3600);
var m = Math.floor((result / 60 % 60));
var s = Math.floor((result % 60));
return h + "小时" + m + "分钟" + s + "秒";
}
console.log(`守护关卡:${info.guardAward}元红包,剩余守护时间:${secondToDate(info.guardTime / 5)}`)
}
} else {
$.group = false
console.log(`获取组队信息失败,请检查`)
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkTaskStealDetail() {
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_getStealForms", {}, "nian_pk_getStealForms"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0 && data.data && data.data.bizCode === 0) {
$.hasGroup = true
await $.wait(2000)
for (let i = 1; i < data.data.result.stealGroups.length; ++i) {
let item = data.data.result.stealGroups[i]
if (item.stolen === 0) {
console.log(`去偷${item.name}的红包`)
await pkStealGroup(item.id)
await $.wait(2000)
}
}
} else {
console.log(`组队尚未开启,请先去开启组队或是加入队伍!`)
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkTaskDetail() {
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_getTaskDetail", {}, "nian_pk_getTaskDetail"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.code === 0 && data.data && data.data.bizCode === 0) {
await $.wait(2000)
$.hasGroup = true
for (let item of data.data.result.taskVos) {
if (item.taskType === 3 || item.taskType === 26) {
if (item.shoppingActivityVos) {
if (item.status === 1) {
console.log(`准备做此任务:${item.taskName}`)
for (let task of item.shoppingActivityVos) {
if (task.status === 1) {
await pkCollectScore(item.taskId, task.itemId);
}
await $.wait(3000)
}
} else if (item.status === 2) {
console.log(`${item.taskName}已做完`)
}
}
}
}
} else {
console.log(`组队尚未开启,请先去开启组队或是加入队伍!`)
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkAssignGroup(inviteId) {
let temp = {
"confirmFlag": 1,
"inviteId": inviteId,
}
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
let body = {
...encode(temp, $.secretp, extraData),
inviteId: inviteId
}
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_assistGroup", body, "nian_pk_assistGroup"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data && data.data.bizMsg) {
console.log(data.data.bizMsg)
} else {
console.log(`助力失败,未知错误:${JSON.stringify(data)}`)
$.canhelp = false
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function pkStealGroup(stealId) {
let temp = {
"stealId": stealId,
}
const extraData = {
"jj": 6,
"buttonid": "jmdd-react-smash_0",
"sceneid": "homePageh5",
"appid": '50073'
}
let body = {
...encode(temp, $.secretp, extraData),
stealId: stealId
}
return new Promise(resolve => {
$.post(taskPostUrl("nian_pk_doSteal", body, "nian_pk_doSteal"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data && data.data.bizMsg) {
console.log(data.data.bizMsg)
} else {
console.log(`偷取失败,未知错误:${JSON.stringify(data)}`)
}
}
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function killCouponList() {
return new Promise(resolve => {
$.post(taskPostUrl("nian_killCouponList", {}, "nian_killCouponList"), async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
if (safeGet(data)) {
data = JSON.parse(data);
if (data.data && data.data.bizCode === 0) {
await $.wait(2000)
for (let vo of data.data.result) {
if (!vo.status) {
console.log(`去领取${vo['productName']}优惠券`)
await killCoupon(vo['skuId'])
await $.wait(2000)
}
}
}
}
}