-
Notifications
You must be signed in to change notification settings - Fork 307
/
gacmotor.js
1405 lines (1354 loc) · 63.6 KB
/
gacmotor.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
/**
* cron 56 8 * * * gacmotor.js
* Show:广汽传祺 评论 分享(转发) 签到 发表文章
* @author https://github.com/smallfawn/QLScriptPublic
* @tips 本脚本适用于广汽传祺5.0.0以上的版本
* @update 2024/1/17 新增 广汽传祺年度报告抽奖
* 文件内基本格式 [{"AT":"","RT":""},{"AT":"","RT":""}] 仓库( https://ghproxy.smallfawn.top/https://raw.githubusercontent.com/smallfawn/QLScriptPublic/main/GacmotorCookies.json )里面有基本模板 使用前必须填写COOKIE
* 提供三种获取变量COOKIE方式
* 1.手动抓https://next.gacmotor.com/app
* (refreshTokenn和accessToken 在登录时候抓包 https://next.gacmotor.com/app/app-api/sms/sendSmsCodeV2 响应里面) APP有效期都是7天 需要填写refreshToken来刷新COOKIE有效时间
* 2.通过WoolWeb获取 2w.onecc.cc 里面有APP接口和H5接口 APP接口带刷新CK H5接口不会
* 3.通过WoolWeb扫码获取 和 APP接口等同
* 变量示例 AT-11111-ASASASASASASASASASAS填入AT里面 RT-11111-BSBSBSBSBSBSBS填入RT里面
* 开启发贴 gacmotorPost=false 默认关闭发表文章功能 true为开启(此功能存在风控检测,谨慎开启) 目前没适配 小心扣豆子
* 开启评论 gacmotorComment=false 默认关闭评论功能 true为开启(此功能存在风控检测,谨慎开启) 目前没适配 小心扣豆子
* 每日抽奖 gacmotorLuckyDram=1 抽奖次数[1-10] 不写默认抽奖一次(首次免费) 以后每次花费2G豆抽奖 每天上限10次
*
*/
let GacmotorCookies = './GacmotorCookies.json';//指定文件目录
const $ = new Env("广汽传祺");
const notify = $.isNode() ? require('./sendNotify') : '';
//const { updateEnv11, getEnvs, updateEnv } = require("./ql")
const appVersion = "5.1.12"
//let ckName = "gacmotorToken";
//let envSplitor = ["@", "\n"]; //多账号分隔符
let strSplitor = "#"; //多变量分隔符
let userIdx = 0;
let userList = [];
const fs = require('fs');
let TempAccount = [];
function ReadFiles(filename) {
let Fileexists = fs.existsSync(filename);//检测文件是否存在
if (Fileexists) {//如果存在
console.log("检测到广汽传祺GacmotorCookies.json,载入...");
TempAccount = fs.readFileSync(filename, 'utf-8');
if (TempAccount) {
TempAccount = TempAccount.toString();
TempAccount = JSON.parse(TempAccount);
}
}else{
console.log("未检测到广汽传祺GacmotorCookies.json...");
}
}
async function writeFile(fileName, data) {
return new Promise((resolve, reject) => {
fs.writeFile(fileName, data, 'utf8', (err) => {
if (err) {
reject(err); // 如果写入操作出错,将错误传递给调用者
return;
}
resolve(); // 写入操作成功,没有错误
});
});
}
class UserInfo {
constructor(str) {
this.index = ++userIdx;
this.ck = str.split(strSplitor)[0]; //单账号多变量分隔符
this.refreshToken = str.split(strSplitor)[1]; //单账号多变量分隔符
this.ckStatus = true;
this.deviceCode = "";
this.registrationID = "";
//this.mallToken = str.split(strSplitor)[2];
this.signInStatus = false//默认签到状态false
this.userIdStr = ""
this.name = ""
this.GDouNum = ""
this.postList = []//自己
this.applatestlist = []//最新帖子列表
this.titleList = []//
this.contentList = []//
this.commentList = []
this.BeiJingTime = ""
this.powerList = []
this.mobile = []
this.accessToken = []
this.powerId = ""//助力ID
this.questionId = ""
this.userAnswerList = []
this.answerIdList = []
this.userAnswer = ""
this.questionTaskId = ''
this.luckyDrawNum = 0 //抽奖次数
this.postNotFinishedNum = 0//发帖未完成次数
this.commentNotFinishedNum = 0//评论未完成次数
this.sharenNotFinishedNum = 0//转发未完成次数
this.refreshStatus = false
this.commenttext = ""
this.signInCaptchaId = null
this.signInRequestId = null
this.lotteryRequestId = null
this.shareCaptchaId = null
this.shareRequestId = null
}
async main() {
$.log(`==============开始第${this.index}个账号==============`)
await this._userInfo();
if (this.ckStatus == true) {
await this.mainTask()
} else {
if (this.refreshToken !== undefined) {
$.log(`尝试刷新TOKEN`)
await this._refreshToken()
if (this.refreshStatus) {
await this._userInfo();
await this.mainTask()
}
}
}
}
async mainTask() {
if (process.env["gacmotorLuckyDram"] == undefined) {
await this._luckyDrawNum()//获取抽奖次数
if (this.luckyDrawNum > 1) {
await this._luckyDraw()
}
} else if (process.env["gacmotorLuckyDram"] && Number(process.env["gacmotorLuckyDram"]) !== NaN) {
if (process.env["gacmotorLuckyDram"] !== 0) {
if (Number(process.env["gacmotorLuckyDram"]) > 10) {
console.log(`每天最高抽10次哦`);
await this._luckyDrawNum()//获取抽奖次数
if (this.luckyDrawNum < 10) {
for (let i = 0; i < this.luckyDrawNum; i++) {
$.wait(1000)
await this._luckyDraw()
$.wait(2000)
}
} else if (this.luckyDrawNum = 10) {
for (let index = 0; index < 10; index++) {
$.wait(1000)
await this._luckyDraw()
$.wait(2000)
}
}
} else {
await this._luckyDrawNum()//获取抽奖次数
if (this.luckyDrawNum < Number(process.env["gacmotorLuckyDram"])) {
for (let i = 0; i < this.luckyDrawNum; i++) {
$.wait(1000)
await this._luckyDraw()
$.wait(2000)
}
} else if (this.luckyDrawNum > Number(process.env["gacmotorLuckyDram"])) {
for (let index = 0; index < Number(process.env["gacmotorLuckyDram"]); index++) {
$.wait(1000)
await this._luckyDraw()
$.wait(2000)
}
} else if (this.luckyDrawNum == Number(process.env["gacmotorLuckyDram"])) {
for (let index = 0; index < Number(process.env["gacmotorLuckyDram"]); index++) {
$.wait(1000)
await this._luckyDraw()
$.wait(2000)
}
}
}
} else {
}
}
await this._getGDou()
await this._signInStatus()
await this._signInCounts()
if (this.signInStatus == false) {
await this._signIn()
}
await this._taskList()
/*if (this.postNotFinishedNum !== 0 && this.postNotFinishedNum >= 1 || this.commentNotFinishedNum !== 0 && this.commentNotFinishedNum >= 1) {
if (process.env["gacmotorPost"] == "true" || process.env["gacmotorComment"] == "true") {
console.log(`正在远程获取15条随机评论~请等待15-20秒`)
await this._getText()
}
}*/
if (process.env["gacmotorPost"] == "true") {
if (this.postNotFinishedNum !== 0 && this.postNotFinishedNum >= 1) {
console.log(`正在远程获取15条随机一言~请等待10-15秒`)
await this._getText()
await this._post(this.titleList[0], this.contentList[0])//可能需要图片
console.log(`等待10s`)
await $.wait(10000)
await this._postlist()
for (let postId of this.postList) {
await this._delete(postId)
}
}
}
await this._applatestlist()
if (this.sharenNotFinishedNum !== 0 && this.sharenNotFinishedNum >= 1) {
for (let postId of this.applatestlist) {
await this._forward(postId)
}
}
if (process.env["gacmotorComment"] == "true") {
if (this.commentNotFinishedNum !== 0 && this.commentNotFinishedNum >= 1) {
this._getText1()
for (let postId of this.applatestlist) {
await this._add(postId, this.commenttext)
}
}
}
if (process.env["gacmotorComment"] == "true") {
if (this.commentNotFinishedNum !== 0 && this.commentNotFinishedNum >= 1) {
console.log(`等待10s`)
await $.wait(10000)
console.log(`检测评论列表`);
await this._commentlist()
if (this.commentList.length > 0) {
for (let commentId of this.commentList) {
await this._commentdelete(commentId)
}
}
}
}
//await this._activity_lotter_common({ "activityId": "531", "channel": "carapp_channel" })
//await this._getChinaTime()
/*console.log(`11/26截止 Do - 广州车展活动 奖品活动结束后14日内发放`);
if (this.BeiJingTime < 1701014400000) {
//{"activityId":"467","channel":"carapp_channel"}
// await this._activity_lotter_common({ "activityId": "467", "channel": "carapp_channel" })
}*/
/*每天助力 gacmotorPower="" (抓这个需要手动做一次任务,我的-超级合伙人-每日任务-分享,微信自己点击自己分享的文章一次)
* 微信抓gmp.spgacmotorsc.com/partner/api-content/base/content/trafficStatistics?
* 后面的openId的值例如:oQzIW0jx-DbassAsaQgpGsasqXqCWI*/
/*if (process.env["gacmotorPower"]) {
console.log(`已设置开启每日助力`);
await this._power_auth()//登录活动 获取accessToken
await this._power_list()//获取任务列表
if (this.powerList.length > 0) {
for (let taskId of this.powerList) {
await this._join_power(taskId)//加入任务
await this._get_power_id(taskId)//获取助力的utid
await $.wait(2000)
await this._share_power(taskId)//分享
await $.wait(2000)
if (this.powerId !== "") {
await this._power(this.powerId)
}
}
}
}*/
/*if (this.mallToken == undefined) {
this.mallToken = `DS-${this.ck}`
console.log(`执行答题&抽奖 并且尝试获取mallToken(如果不是WoolWeb获取的变量 可能执行失败)`);
//获取答题活动列表
await this._question_list({ "activityId": 464 })
if (this.questionTaskId !== "") {
//获取题目
await this._question_info({ "activityId": 464, "taskId": this.questionTaskId, "userSubmit": false })
//答题
await this._submit_answer({ "activityId": 464, "taskId": this.questionTaskId, "userSubmitAnswerVoList": [{ "questionId": this.questionId, "userAnswer": this.userAnswer, "answerIdList": this.answerIdList }] })
//抽奖
let lotterId = "465"
if (this.questionTaskId == 8) {
lotterId = "484"
} else if (this.questionTaskId == 9) {
lotterId = "498"
} else if (this.questionTaskId == 10) {
lotterId = "511"
} else if (this.questionTaskId == 11) {
lotterId = "522"
} else if (this.questionTaskId == 12) {
lotterId = "523"
}
await this._activity_lotter_mall({ "activityId": lotterId, "channel": "wx_channel" })
//console.log(`目测30天内自动到账`)
console.log(`请微信打开链接截查看中奖规则 https://mall.gacmotor.com/act/turntable?id=${lotterId}`);
console.log(`加客服的地址 https://mall.gacmotor.com/act/answer-activity?id=464`);
} else {
console.log(`本周答题完成或未到活动时间`);
}
}*/
}
async _refreshToken() {
try {
let options = {
fn: "刷新token",
method: "post",
url: `https://next.gacmotor.com/app/app-api/login/refreshAt`,
headers: this._getHeaders("post"),
body: JSON.stringify({ refreshToken: this.refreshToken })
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
$.log(`重置accessToken [${result.data.accessToken}] 重置refeshToken [${result.data.refreshToken}]`)
//调用青龙API
//change:2023/12/27 不再调用青龙API 选择修改文件方式
//删除原变量
//let originalValue = this.cookies
//let newValue = [result.data.accessToken, result.data.refreshToken]
TempAccount.forEach((TempAccount) => {
if (TempAccount.AT === this.ck) {
TempAccount.AT = result.data.accessToken;
TempAccount.RT = result.data.refreshToken;
}
});
await writeFile(GacmotorCookies, JSON.stringify(TempAccount, null, 2))
this.ck = result.data.accessToken
this.refreshStatus = true
//console.log(arr);
/*if (this.mallToken !== undefined) {
newValue = `${result.data.accessToken}${strSplitor}${result.data.refreshToken}${strSplitor}${this.mallToken}`
} else {
newValue = `${result.data.accessToken}${strSplitor}${result.data.refreshToken}`
}*/
/*let env = await getEnvs(ckName)
if (env[0].value.indexOf(originalValue) !== -1) {
let newEnv = env[0].value.replaceAll(originalValue, newValue)
if (process.env["QLVersion"] == "old") {
await updateEnv(newEnv, env[0].id, null, ckName)
} else {
await updateEnv11(newEnv, env[0].id, null, ckName)
}
this.refreshStatus = true
}*/
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
this.ckStatus = false
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _getChinaTime() {
try {
let options = {
fn: "获取北京时间",
method: "get",
url: `http://api.m.taobao.com/rest/api3.do?api=mtop.common.getTimestamp`,
}
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
this.BeiJingTime = result.data.t
} catch (e) {
console.log(e);
}
}
async _activity_lotter_common(body) {
try {
let options = {
fn: "活动抽奖",
method: "post",
url: `https://next.gacmotor.com/mall/activity-app/customer/activityPrize/lotter?notip=true`,
headers: {
"Host": "next.gacmotor.com",
"Connection": "keep-alive",
"Accept": "application/json, text/plain, */*",
"User-Agent": "Mozilla/5.0 (Linux; Android 10; MI 8 Lite Build/QKQ1.190910.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.138 Mobile Safari/537.36 WindVane/8.5.0 StatusBarHeight/31 channel/GACClient",
"token": this.ck,
"Content-Type": "application/json;charset=UTF-8",
"Origin": "https://next.gacmotor.com",
"X-Requested-With": "com.cloudy.component",
"Sec-Fetch-Site": "same-origin",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Dest": "empty",
"Referer": "https://next.gacmotor.com/mall/act/turntable?id=467",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7"
},
body: JSON.stringify(body)
}
//console.log(options)
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
if (result.code == "0000") {
$.log(`抽奖成功获得[${result.data.name}]`)
} else {
console.log(`抽奖失败`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _activity_lotter_mall(body) {
try {
let options = {
fn: "活动抽奖(mall)",
method: "post",
url: `https://mall.gacmotor.com/activity-app/customer/activityPrize/lotter?notip=true`,
headers: this._getHeaders_mall("post"),
body: JSON.stringify(body)
}
//console.log(options)
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
if (result.code == "0000") {
$.log(`答题活动抽奖成功 获得[${result.data.name}]`)
} else {
console.log(`抽奖失败`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _question_list(body) {
try {
let options = {
fn: "获取答题活动列表",
method: "post",
url: `https://mall.gacmotor.com/e-small-bff/fronted/activityAnswer/queryAnswerActivityInfo`,
headers: this._getHeaders_mall("post"),
body: JSON.stringify(body)
}
//console.log(options)
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
if (result.code == "0000") {
for (let id of result.data.taskInfoList) {
if (id.endTime > this.BeiJingTime && this.BeiJingTime > id.startTime && id.userSubmit == false) {
this.questionTaskId = id.id
}
}
} else {
console.log(`获取问题和选项失败`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _question_info(body) {
try {
let options = {
fn: "获取问题和选项",
method: "post",
url: `https://mall.gacmotor.com/e-small-bff/fronted/activityAnswer/queryQuestionInfo`,
headers: this._getHeaders_mall("post"),
body: JSON.stringify(body)
}
//console.log(options)
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
if (result.code == "0000") {
this.questionId = result.data.questionInfoList[0].id
this.answerIdList = []
for (let answer of result.data.questionInfoList[0].answerInfoList) {
this.answerIdList.push(answer.id)
this.userAnswerList.push(answer.answerDesc)
}
this.userAnswer = this.userAnswerList.join(';');
} else {
console.log(`获取问题和选项失败`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _submit_answer(body) {
try {
let options = {
fn: "回答问题",
method: "post",
url: `https://mall.gacmotor.com/e-small-bff/fronted/activityAnswer/submitAnswer`,
headers: this._getHeaders_mall("post"),
body: JSON.stringify(body)
}
//console.log(options)
let { body: result } = await httpRequest(options)
result = JSON.parse(result)
if (result.code == "0000") {
console.log(`回答问题` + result.success);
} else {
console.log(`回答问题失败`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _getText() {
try {
let textList = []
let options = {
fn: "获取随机一言",
method: "get",
url: `https://v1.hitokoto.cn/?c=e`,
}
for (let i = 0; i < 10; i++) {
await $.wait(1000)
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.hitokoto["length"] > 10) {
textList.push(result.hitokoto)
}
this.titleList = [textList[0]]
this.contentList = [textList[1]]
}
} catch (e) {
console.log(e);
}
}
_getText1() {
try {
let textList = [
`好看好用,我也想拥有同款!`,
`好看好开猴赛雷,广汽传祺YYDS!`,
`打破0回复,帮你顶个楼!`,
`人间自有真情在,给个点赞最实在!`,
`实力顶帖,为君打call!`]
this.commenttext = [textList[Math.floor(Math.random() * 5)]]
} catch (e) {
console.log(e);
}
}
async _join_power(taskId) {
try {
let options = {
fn: "加入助力",
method: "post",
url: `https://gmp.spgacmotorsc.com/partner/api-content/app/tasks/joinTask`,
headers: this._getHeaders_gmp("post"),
body: `taskId=${taskId}&companyCode=CHUANQI&phone=${this.mobile}`
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.errorCode == "0") {
console.log(`添加助力任务成功`);
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _power_list() {
try {
let options = {
fn: "助力任务列表获取",
method: "get",
url: `https://gmp.spgacmotorsc.com/partner/api-content/app/tasks/list?page=0&size=10&channelType=WEIXIN&taskType=SHARE&companyCode=CHUANQI&phone=${this.mobile}`,
headers: this._getHeaders_gmp("get"),
}
//console.log(options);
let { body: result } = await httpRequest(options);
result = JSON.parse(result);
//console.log(result);
if (result.errorCode == "0") {
for (let i of result.body.rows) {
if (i.isFinish == 1) {
this.powerList.push(i.taskId)
}
}
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(`请先手动完成一次任务`);
//console.log(e);
}
}
async _power_auth() {
try {
let headers = this._getHeaders("get")
headers["Host"] = `gmp.spgacmotorsc.com`
let options = {
fn: "助力任务登录",
method: "get",
url: `https://gmp.spgacmotorsc.com/partner/api-user/app/auth/judge?phone=${this.mobile}&companyCode=CHUANQI`,
headers: headers,
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.body.isAuth == true) {
this.accessToken = result.body.user.accessToken;
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(`请先手动完成一次任务`);
//console.log(e);
}
}
async _get_power_id(taskId) {
try {
let options = {
fn: "助力任务ID获取",
method: "get",
url: `https://gmp.spgacmotorsc.com/partner/api-content/app/tasks/detail?taskId=${taskId}&companyCode=CHUANQI&phone=${this.mobile}`,
headers: this._getHeaders_gmp("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.errorCode == "0") {
let shareUrl = result.body.shareUrl
var regex = /utId=([^&]+)/;
var match = shareUrl.match(regex);
if (match) {
this.powerId = match[1];
console.log(`助力ID获取成功${this.powerId}`);
} else {
console.log("未找到utId的值");
}
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _share_power(taskId) {
try {
let options = {
fn: "助力任务分享",
method: "post",
url: `https://gmp.spgacmotorsc.com/partner/api-content/app/tasks/backFillH5`,
headers: this._getHeaders_gmp("post"),
body: `taskId=${taskId}&companyCode=CHUANQI&phone=${this.mobile}`
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.errorCode == "0") {
console.log(result.body);
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _power() {
try {
let options = {
fn: "助力",
method: "get",
url: `https://gmp.spgacmotorsc.com/partner/api-content/base/content/trafficStatistics?id=11131879&openId=` + process.env["gacmotorPower"],
headers: {
"Host": "gmp.spgacmotorsc.com",
"Connection": "keep-alive",
"Accept": "application/json, text/plain, */*",
"User-Agent": "Mozilla/5.0 (Linux; Android 10; MI 8 Lite Build/QKQ1.190910.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/111.0.5563.116 Mobile Safari/537.36 XWEB/1110017 MMWEBSDK/20230405 MMWEBID/2585 MicroMessenger/8.0.35.2360(0x2800235D) WeChat/arm64 Weixin NetType/WIFI Language/zh_CN ABI/arm64",
"X-Requested-With": "com.tencent.mm",
"Sec-Fetch-Site": "same-origin",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Dest": "empty",
"Referer": "https://gmp.spgacmotorsc.com/h5/partner/",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7"
},
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.errorCode == "0") {
$.log(`助力执行成功 可能助力失败 正常情况`)
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _userInfo() {
try {
let options = {
fn: "信息查询",
method: "post",
url: `https://next.gacmotor.com/app/app-api/user/getLoginUser`,
headers: this._getHeaders("post"),
body: ``
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
this.mobile = Buffer.from(result.data.ms, 'base64').toString('utf-8');
Buffer.from(result.data.ms, 'base64').toString('utf-8');
$.log(`[${result.data.mobile}][${result.data.nickname}][${result.data.userIdStr}]`)
this.name = `昵称 [${result.data.nickname}]`
this.userIdStr = result.data.userIdStr;
this.ckStatus = true
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
this.ckStatus = false
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _taskList() {
try {
let options = {
fn: "任务情况查询",
method: "get",
url: `https://next.gacmotor.com/app/community-api/user/mission/getUserMissionList?place=1`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
//result.data[0].total - result.data[0].finishedNum//签到
this.postNotFinishedNum = Number(result.data[1].total) - Number(result.data[1].finishedNum)//发帖
this.commentNotFinishedNum = Number(result.data[2].total) - Number(result.data[2].finishedNum)//评论
this.sharenNotFinishedNum = Number(result.data[3].total) - Number(result.data[3].finishedNum)//分享
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
this.ckStatus = false
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _luckyDrawNum() {
try {
let options = {
fn: "抽奖次数查询",
method: "get",
url: `https://next.gacmotor.com/app/activity/shopDraw/getchances?activityCode=shop-draw`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
this.luckyDrawNum = result.data
console.log(`抽奖次数剩余${this.luckyDrawNum}次`);
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
this.ckStatus = false
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _luckyDraw() {
await this.get_lastReq("lottery")
try {
let options = {
fn: "抽奖",
method: "post",
//https://next.gacmotor.com/app/activity/shopDraw/luckyDraw
url: `https://next.gacmotor.com/app/activity/shopDraw/luckyDrawHc`,
headers: this._getHeaders("post"),
//body: JSON.stringify({ "activityCode": "shop-draw", "repeatcheck": true })
body: JSON.stringify({
"activityCode": "shop-draw",
"repeatcheck": true,
"lastReq": this.lotteryRequestId
})
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
$.log(`抽奖成功获得[${result.data.medalName}]`)
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
this.ckStatus = false
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _getGDou() {
try {
let options = {
fn: "G豆查询",
method: "get",
url: `https://next.gacmotor.com/app/app-api/user/getUserGdou`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
this.GDouNum = `G豆 [${result.data}]`
$.log(`当前G豆数量[${result.data}]`)
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _applatestlist() {
try {
let options = {
fn: "最新帖子列表",
method: "get",
url: `https://next.gacmotor.com/app/community-api/community/api/post/applatestlist?pageNum=1&pageSize=10`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
this.applatestlist = [result.data.list[0].postVo.postId]
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _signInStatus() {
try {
let options = {
fn: "签到查询",
method: "get",
url: `https://next.gacmotor.com/app/app-api/sign/signStatus`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
if (result.data == true) {
//已签
this.signInStatus = true;
} else {
//未签
this.signInStatus = false
}
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _signInCounts() {
try {
let options = {
fn: "签到信息",
method: "get",
url: `https://next.gacmotor.com/app/app-api/sign/countSignDays`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
$.log(`已经连续签到${result.data}天`)
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async get_lastReq(event) {
let options = {
fn: "获取参数",
method: "get",
url: `https://next.gacmotor.com/app/app-api/common/hcRiskControl/getRiskLevelCommon?eventId=${event}`,
headers: this._getHeaders("get"),
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
if (event == "signIn") {
this.signInCaptchaId = result.data.captchaId
this.signInRequestId = result.data.requestId
}
if (event == "lottery") {
this.lotteryRequestId = result.data.requestId
}
if (event == "share") {
this.shareCaptchaId = result.data.captchaId
this.shareRequestId = result.data.requestId
}
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
}
async _signIn() {
await this.get_lastReq("signIn")
try {
/*let options = {
fn: "签到执行",
method: "get",
url: `https://next.gacmotor.com/app/app-api/sign/submit`,
headers: this._getHeaders("get"),
}*/
let options = {
fn: "签到执行",
method: "post",
url: `https://next.gacmotor.com/app/app-api/sign/submitHc`,
headers: this._getHeaders("post"),
body: JSON.stringify({
"captchaId": this.signInCaptchaId,
"lastReq": this.signInRequestId
})
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);
if (result.resultCode == "0") {
$.log(`签到[${result.resultMsg}]`)
} else {
console.log(`❌${options.fn}状态[${result.resultMsg}]`);
console.log(JSON.stringify(result));
}
} catch (e) {
console.log(e);
}
}
async _forward(postId) {
await this.get_lastReq("share")
try {
/*let options = {
fn: "转发",
method: "post",
url: `https://next.gacmotor.com/app/community-api/community/api/post/forward`,
headers: this._getHeaders("post"),
body: JSON.stringify({ "postId": postId })
}*/
let options = {
fn: "转发",
method: "post",
url: `https://next.gacmotor.com/app/community-api/community/api/post/forwardHc`,
headers: this._getHeaders("post"),
body: JSON.stringify({ "postId": postId, "captchaId": this.shareCaptchaId, "lastReq": this.shareRequestId })
}
let { body: result } = await httpRequest(options);
//console.log(options);
result = JSON.parse(result);
//console.log(result);