forked from TechXueXi/techxuexi-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
不学习何以强国.js
1064 lines (1052 loc) · 43.2 KB
/
不学习何以强国.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
// ==UserScript==
// @name 不学习何以强国-beta
// @namespace http://tampermonkey.net/
// @version 999
// @description 问题反馈位置: https://github.com/TechXueXi/techxuexi-js/issues 。读文章,看视频,做习题。
// @author 荷包蛋。
// @match https://www.xuexi.cn
// @match https://www.xuexi.cn/*
// @match https://pc.xuexi.cn/points/exam-practice.html
// @match https://pc.xuexi.cn/points/exam-weekly-detail.html?id=*
// @match https://pc.xuexi.cn/points/exam-weekly-list.html
// @match https://pc.xuexi.cn/points/exam-paper-detail.html?id=*
// @match https://pc.xuexi.cn/points/exam-paper-list.html
// @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @require https://cdn.bootcdn.net/ajax/libs/blueimp-md5/2.9.0/js/md5.min.js
// @grant GM_addStyle
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_deleteValue
// @grant GM_openInTab
// ==/UserScript==
var study_css = ".egg_study_btn{outline:0;border:0;position:fixed;top:5px;left:5px;padding:12px 20px;border-radius:10px;cursor:pointer;background-color:#fff;color:#d90609;font-size:18px;font-weight:bold;text-align:center;box-shadow:0 0 9px #666777}.egg_manual_btn{transition:0.5s;outline:none;border:none;padding:12px 20px;border-radius:10px;cursor:pointer;background-color:#e3484b;color:rgb(255,255,255);font-size:18px;font-weight:bold;text-align:center;}.egg_auto_btn{transition:0.5s;outline:none;border:none;padding:12px 20px;border-radius:10px;cursor:pointer;background-color:#666777;color:rgb(255,255,255);font-size:18px;font-weight:bold;text-align:center;}.egg_setting_box{position:fixed;top:70px;left:5px;padding:12px 20px;border-radius:10px;background-color:#fff;box-shadow:0 0 9px #666777}.egg_setting_item{margin-top:5px;height:30px;width:140px;font-size:16px;display:flex;justify-items:center;justify-content:space-between}input[type='checkbox'].egg_setting_switch{cursor:pointer;margin:0;outline:0;appearance:none;-webkit-appearance:none;-moz-appearance:none;position:relative;width:40px;height:22px;background:#ccc;border-radius:50px;transition:border-color .3s,background-color .3s}input[type='checkbox'].egg_setting_switch::after{content:'';display:inline-block;width:1rem;height:1rem;border-radius:50%;background:#fff;box-shadow:0,0,2px,#999;transition:.4s;top:3px;position:absolute;left:3px}input[type='checkbox'].egg_setting_switch:checked{background:#fd5052}input[type='checkbox'].egg_setting_switch:checked::after{content:'';position:absolute;left:55%;top:3px}";
GM_addStyle(study_css);
//https://www.xuexi.cn/lgdata/3uoe1tg20en0.json
//查询今日完成情况
const SearchSocreUrl = "https://pc-proxy-api.xuexi.cn/api/score/days/listScoreProgress?sence=score&deviceType=2";
//重要新闻列表(主)
const NewsUrl1 = "https://www.xuexi.cn/lgdata/1jscb6pu1n2.json";
//学习时评新闻列表
const NewsUrl2 = "https://www.xuexi.cn/lgdata/1ap1igfgdn2.json";
//新闻视频列表
const VideosUrl1 = "https://www.xuexi.cn/lgdata/3o3ufqgl8rsn.json";
//新闻视频列表
const VideosUrl2 = "https://www.xuexi.cn/lgdata/1742g60067k.json";
//每日答题页面
const ExamPracticeUrl = "https://pc.xuexi.cn/points/exam-practice.html";
//每周答题列表API
const ExamWeeklyListUrl = "https://pc-proxy-api.xuexi.cn/api/exam/service/practice/pc/weekly/more?pageNo={pageNo}&pageSize=50";
//专项答题列表API
const ExamPaperListUrl = "https://pc-proxy-api.xuexi.cn/api/exam/service/paper/pc/list?pageSize=50&pageNo={pageNo}";
//题目API(只有每周答题和专项练习)
//const ExamQueryUrl = "https://pc-proxy-api.xuexi.cn/api/exam/service/detail/queryV3?type={type}&id={id}&forced=true";//type=1专项练习,type=2每周答题
//每周答题页面
const ExamWeeklyUrl = "https://pc.xuexi.cn/points/exam-weekly-detail.html?id={id}";
//专项测试页面
const ExamPaperUrl = "https://pc.xuexi.cn/points/exam-paper-detail.html?id={id}";
//文本服务器保存API
const AnswerSaveUrl = "https://a6.qikekeji.com/txt/data/save/";
//文本服务器获取API
const AnswerDetailUrl = "https://a6.qikekeji.com/txt/data/detail/";
//获取当前日期
var currDate = new Date().toISOString().split('T')[0];
var newsNum = 6;
var news = [];
var videoNum = 6;
var videos = [];
//配置
var settings = [];
var pause = false;//是否暂停答题
//每周答题当前页码
var examWeeklyPageNo = 1;
//每周答题总页码
var examWeeklyTotalPageCount = null;
//专项答题当前页码
var examPaperPageNo = 1;
//专项答题总页码
var examPaperTotalPageCount = null;
//每周答题,专项答题 请求rate 限制 每 3000ms 一次
const ratelimitms = 3000;
$(document).ready(function () {
let url = window.location.href;
if (url == "https://www.xuexi.cn" || url == "https://www.xuexi.cn/" || url == "https://www.xuexi.cn/index.html") {
let ready = setInterval(function () {
if (document.getElementsByClassName("text-wrap")[0]) {
clearInterval(ready);//停止定时器
//初始化设置
initSetting();
//创建"开始学习"按钮
createStartButton();
}
}, 800);
} else if (url == GM_getValue("readingUrl")) {
try {
let settingTemp = JSON.parse(GM_getValue('studySetting'));
if (!settingTemp[7]) {
createTip();//创建学习提示
}
reading(0);
} catch (e) {
createTip();//创建学习提示
reading(0);
}
} else if (url == GM_getValue("watchingUrl")) {
try {
let settingTemp = JSON.parse(GM_getValue('studySetting'));
if (!settingTemp[7]) {
createTip();//创建学习提示
}
} catch (e) {
createTip();//创建学习提示
}
let randNum = 0;
var checkVideoPlayingInterval = setInterval(function () {
let temp = getVideoTag();
if (temp.video) {
if (!temp.video.muted) {
temp.video.muted = true;
}
if (temp.video.paused) {
temp.video.paused = false;
console.log("正在尝试播放视频")
if (randNum == 0) {//尝试使用js的方式播放
try {
temp.video.play();//尝试使用js的方式播放
} catch (e) { }
randNum++;
} else {
try {
temp.pauseButton.click();//尝试点击播放按钮播放
} catch (e) { }
randNum--;
}
} else {
console.log("成功播放")
clearInterval(checkVideoPlayingInterval);
reading(1);
}
} else {
console.log("等待加载")
}
}, 800);
} else if (url.indexOf("exam") != -1 && url.indexOf("list") == -1) {
//答题页面
let ready = setInterval(function () {
if (document.getElementsByClassName("title")[0]) {
clearInterval(ready);//停止定时器
//创建“手动答题”按钮
createManualButton();
//去除答题验证
//cancelVerify();
//开始答题
doingExam();
}
}, 500);
} else {
}
});
//获取video标签
function getVideoTag() {
let iframe = document.getElementsByTagName("iframe")[0];
let video = null;
let pauseButton = null;
if (iframe) {
//如果有iframe,说明外面的video标签是假的
video = iframe.contentWindow.document.getElementsByTagName("video")[0];
pauseButton = iframe.contentWindow.document.getElementsByClassName("prism-play-btn")[0];
} else {
//否则这个video标签是真的
video = document.getElementsByTagName("video")[0];
pauseButton = document.getElementsByClassName("prism-play-btn")[0];
}
return {
"video": video,
"pauseButton": pauseButton
}
}
//读新闻或者看视频
//type:0为新闻,1为视频
async function reading(type) {
//看文章或者视频
let time = parseInt(Math.random() * (100 - 80 + 1) + 80, 10);//80-100秒后关闭页面
let firstTime = time - 2;
let secendTime = 12;
let scrollLength = document.body.scrollHeight / 2;
var readingInterval = setInterval(function () {
time--;
$("#studyTip").text(time + " 秒后关闭页面");
if (time <= firstTime) {
try {
$("html,body").animate({ scrollTop: 394 }, 1000);
} catch (e) {
window.scrollTo(0, 394);
}
firstTime = -1;
}
if (time <= secendTime) {
try {
$("html,body").animate({ scrollTop: scrollLength / 3 }, 1000);
} catch (e) {
window.scrollTo(0, scrollLength / 3);
}
secendTime = -1;
}
if (time <= 0) {
if (type == 0) {
GM_setValue('readingUrl', null);
} else {
GM_setValue('watchingUrl', null);
}
clearInterval(readingInterval);
window.close();
}
}, 1000);
//关闭文章或视频页面
}
//创建学习提示
function createTip() {
let tipInfo = document.createElement("div");
//添加样式
tipInfo.setAttribute("id", "studyTip");
tipInfo.innerText = "正在初始化....";
tipInfo.style.position = "fixed";
tipInfo.style.bottom = "15px";
tipInfo.style.left = "5px";
tipInfo.style.padding = "12px 14px";
tipInfo.style.border = "none";
tipInfo.style.borderRadius = "10px";
tipInfo.style.backgroundColor = "#222222";
tipInfo.style.color = "#ffffff";
tipInfo.style.fontSize = "14px";
tipInfo.style.fontWeight = "bold";
//插入节点
let body = document.getElementsByTagName("body")[0];
body.append(tipInfo)
}
//等待窗口关闭
function waitingClose(newPage) {
return new Promise(resolve => {
let doing = setInterval(function () {
if (newPage.closed) {
clearInterval(doing);//停止定时器
resolve('done');
}
}, 1000);
});
}
//阅读文章
async function readNews() {
await getNews();
for (let i = 0; i < news.length; i++) {
GM_setValue('readingUrl', news[i].url);
console.log("正在看第" + (i + 1) + "个新闻");
let newPage = GM_openInTab(news[i].url, { active: true, insert: true, setParent: true });
await waitingClose(newPage);
await waitingTime(1500);
}
}
//获取新闻列表
function getNews() {
return new Promise(resolve => {
news = new Array();
let n = 6;
if (newsNum < 6) {//如果需要学习的新闻数量不到6,也就是已经学过了,但是积分不够,补的
n = newsNum;
}
console.log("还需要看" + n + "个新闻")
//新闻数量是否足够
let enough = true;
//获取重要新闻
$.ajax({
type: "GET",
url: NewsUrl1,
dataType: "json",
success: function (data) {
let j = 0;
if (n == 6) {//如果今天还没学过,则优先找今天的新闻
for (let i = 0; i < n; i++) {
//如果有当天日期的,则加入
if (data[j].auditTime.indexOf(currDate) != -1) {
news.push(data[j]);
j++;
} else {//否则跳出循环
break;
}
}
}
for (j; j < n; j++) {
let temp = parseInt(Math.random() * (data.length + 1), 10);
news.push(data[temp]);
}
resolve('done');
},
error: function () {
news = null;
resolve('done');
}
});
});
}
//获取视频列表
function getVideos() {
return new Promise(resolve => {
videos = new Array();
let n = 6;
if (videoNum < 6) {//如果需要学习的视频数量不到6,也就是已经学过了,但是积分不够,补的
n = videoNum;
}
console.log("还需要看" + n + "个视频")
$.ajax({
type: "GET",
url: VideosUrl1,
dataType: "json",
success: function (data) {
let j = 0;
if (n == 6) {
for (let i = 0; i < n; i++) {
//如果有当天日期的,则加入
if (data[j].auditTime.indexOf(currDate) != -1) {
videos.push(data[j]);
j++;
} else {//否则跳出循环
break;
}
}
}
for (j; j < n; j++) {
let temp = parseInt(Math.random() * (data.length + 1), 10);
videos.push(data[temp]);
}
resolve('done');
},
error: function () {
videos = [];
resolve('done');
}
});
});
}
//看学习视频
async function watchVideo() {
await getVideos();
for (let i = 0; i < videos.length; i++) {
GM_setValue('watchingUrl', videos[i].url);
console.log("正在观看第" + (i + 1) + "个视频");
let newPage = GM_openInTab(videos[i].url, { active: true, insert: true, setParent: true })
await waitingClose(newPage);
await waitingTime(1500);
}
}
//做每日答题
function doExamPractice() {
return new Promise(resolve => {
console.log("正在完成每日答题")
let newPage = GM_openInTab(ExamPracticeUrl, { active: true, insert: true, setParent: true });
let doing = setInterval(function () {
if (newPage.closed) {
clearInterval(doing);//停止定时器
resolve('done');
}
}, 1000);
});
}
//获取专项答题列表
function getExamPaper() {
return new Promise(function (resolve) {
$.ajax({
type: "GET",
url: ExamPaperListUrl.replace("{pageNo}", examPaperPageNo),
xhrFields: {
withCredentials: true //如果没有这个请求失败
},
dataType: "json",
success: function (data) {
data = decodeURIComponent(escape(window.atob(data.data_str.replace(/-/g, "+").replace(/_/g, "/"))));
//JSON格式化
data = JSON.parse(data);
resolve(data);
},
error: function () {
resolve(new Array());
}
});
})
}
//查询专项答题列表看看还有没有没做过的,有则返回id
async function findExamPaper() {
var continueFind = true;
var examPaperId = null;
console.log("正在寻找未完成的专项答题")
while (continueFind) {
let startTime = Date.now();
await getExamPaper().then(async (data) => {
if (data) {
if (examPaperTotalPageCount == null) {
//如果总页码没初始化,则初始化
examPaperTotalPageCount = data.totalPageCount;
}
let examPapers = data.list;//获取专项答题的列表
for (let j = 0; j < examPapers.length; j++) {
//遍历查询有没有没做过的
if (examPapers[j].status != 2) {//status: 1为"开始答题" , 2为"重新答题"
//如果不是"重新答题",则可以做
examPaperId = examPapers[j].id;
continueFind = false;
break;
}
}
if (!continueFind) {
} else {
//增加页码
examPaperPageNo++;
if (examPaperTotalPageCount == null || examPaperPageNo > examPaperTotalPageCount) {
//已经找完所有页码,还是没找到,不再继续查找
continueFind = false;
}
}
} else {
continueFind = false;
}
//fix code = 429
let remainms = Date.now() - startTime;
if (remainms < ratelimitms) {
await waitingTime(ratelimitms - remainms + 1000)
}
})
}
return examPaperId;
}
//做专项答题
function doExamPaper() {
return new Promise(function (resolve) {
//查找有没有没做过的专项答题,有则返回ID
findExamPaper().then(examPaperId => {
if (examPaperId != null) {
console.log("正在做专项答题")
let newPage = GM_openInTab(ExamPaperUrl.replace("{id}", examPaperId), { active: true, insert: true, setParent: true });
let doing = setInterval(function () {
if (newPage.closed) {
clearInterval(doing);//停止定时器
resolve('done');
}
}, 1000);
} else {
console.log("没有找到未完成的专项答题,跳过")
resolve('noTest');
}
});
})
}
//获取每周答题列表
function getExamWeekly() {
return new Promise(function (resolve) {
$.ajax({
type: "GET",
url: ExamWeeklyListUrl.replace("{pageNo}", examWeeklyPageNo),
xhrFields: {
withCredentials: true //如果没有这个请求失败
},
dataType: "json",
success: function (data) {
data = decodeURIComponent(escape(window.atob(data.data_str.replace(/-/g, "+").replace(/_/g, "/"))));
//JSON格式化
data = JSON.parse(data);
resolve(data);
},
error: function () {
resolve(new Array());
}
});
})
}
//查询每周答题列表看看还有没有没做过的,有则返回id
async function findExamWeekly() {
var continueFind = true;
var examWeeklyId = null;
console.log("正在寻找未完成的每周答题")
while (continueFind) {
let startTime = Date.now();
await getExamWeekly().then(async (data) => {
if (data) {
if (examWeeklyTotalPageCount == null) {
//如果总页码没初始化,则初始化
examWeeklyTotalPageCount = data.totalPageCount;
}
for (let i = 0; i < data.list.length; i++) {
let examWeeks = data.list[i].practices;//获取每周的测试列表
for (let j = 0; j < examWeeks.length; j++) {
//遍历查询有没有没做过的
if (examWeeks[j].status != 2) {//status: 1为"开始答题" , 2为"重新答题"
//如果不是"重新答题",则可以做
examWeeklyId = examWeeks[j].id;
continueFind = false;
break;
}
}
if (!continueFind) {
//如果已经找到了,则退出循环
break;
}
}
if (!continueFind) {
} else {
//增加页码
examWeeklyPageNo++;
if (examWeeklyTotalPageCount == null || examWeeklyPageNo > examWeeklyTotalPageCount) {
//已经找完所有页码,还是没找到,不再继续查找
continueFind = false;
}
}
} else {
continueFind = false;
}
//fix code = 429
let remainms = Date.now() - startTime;
if (remainms < ratelimitms) {
await waitingTime(ratelimitms - remainms + 1000)
}
})
}
return examWeeklyId;
}
//做每周答题
function doExamWeekly() {
return new Promise(function (resolve) {
//查找有没有没做过的每周测试,有则返回ID
//examWeeklyId = 147;//测试题目
findExamWeekly().then(examWeeklyId => {
if (examWeeklyId != null) {
console.log("正在做每周答题")
let newPage = GM_openInTab(ExamWeeklyUrl.replace("{id}", examWeeklyId), { active: true, insert: true, setParent: true });
let doing = setInterval(function () {
if (newPage.closed) {
clearInterval(doing);//停止定时器
resolve('done');
}
}, 1000);
} else {
console.log("没有找到未完成的每周答题,跳过")
resolve('noTest');
}
});
})
}
//获取答题按钮
function getNextButton() {
return new Promise(function (resolve) {
let nextInterVal = setInterval(() => {
let nextAll = document.querySelectorAll(".ant-btn");
let next = nextAll[0];
if (nextAll.length == 2) {
next = nextAll[1];
}
if (next.textContent) {
clearInterval(nextInterVal);//停止定时器
resolve(next);
}
}, 800);
})
}
//暂停锁
function doingPause() {
return new Promise(function (resolve) {
let doing = setInterval(function () {
if (!pause) {
clearInterval(doing);//停止定时器
resolve('done');
}
console.log("等待")
}, 500);
})
}
//答题过程(整合)
async function doingExam() {
let nextButton = null;
let qNum = 0;//题号,第一题从0开始算
let shouldSaveAnswer = false;
while (true) {
//先等等再开始做题
await waitingTime(2500);
await doingPause();
nextButton = await getNextButton();
if (nextButton.textContent == "再练一次" || nextButton.textContent == "再来一组" || nextButton.textContent == "查看解析") {
break;
}
try {
document.querySelector(".tips").click();
} catch (e) {
console.log(e);
}
//所有提示
var allTips = document.querySelectorAll("font[color=red]");
await waitingTime(1500);
//选项按钮
var allbuttons = document.querySelectorAll(".q-answer");
//获取所有填空
var blanks = document.querySelectorAll("input[type=text]");
try {
//获取问题类型
var questionType = document.querySelector(".q-header").textContent;
questionType = questionType.substr(0, 3)
} catch (e) {
}
var results = [];
switch (questionType) {
case "填空题": {
//第几个填空
var inputBubblesEvent = new Event('input', { bubbles: true });
if (blanks.length > 1) {//如果有多个填空
if (allTips.length == 0) {//如果没有提示,先获取看看有没有答案
try {//尝试点击视频播放按钮,播不播都没关系
document.getElementsByClassName("outter")[0].click();
} catch (e) { }
//生成秘钥
let key = getKey();
//尝试获取答案
let answerData = await getAnswer(key);
if (answerData.status == 0 || answerData == "error") {//没有答案
for (let i = 0; i < blanks.length; i++) {//没答案,随便填点东西
blanks[i].setAttribute("value", i);
//必须要阻止事件,不然无效
blanks[i].dispatchEvent(inputBubblesEvent);
}
shouldSaveAnswer = true;//答完保存答案
} else {//获取到了答案
//格式化
answerData = JSON.parse(answerData.data.txt_content);
answerData = answerData[0].content;
//因为有多个空,所以有多个答案,先切割
answerData = answerData.split(";");
for (let i = 0; i < answerData.length; i++) {//将答案填入
blanks[i].setAttribute("value", answerData[i]);
blanks[i].dispatchEvent(inputBubblesEvent);
}
}
} else if (allTips.length == blanks.length) {
//如果填空数量和提示数量一致
for (let i = 0; i < allTips.length; i++) {
//将答案填写到对应的空中
let answer = allTips[i].textContent;
if (answer && answer.length > 0) {
blanks[i].setAttribute("value", answer);
blanks[i].dispatchEvent(inputBubblesEvent);
} else {
//发生了错误,只好随便填一下
blanks[i].setAttribute("value", i);
blanks[i].dispatchEvent(inputBubblesEvent);
}
}
} else if (allTips.length > blanks.length) {
//若提示数量比填空的数量多
//直接将所有答案整合填进去
let answer = "";
for (let i = 0; i < allTips.length; allTips++) {
answer += allTips[i].textContent();
}
for (let j = 0; j < blanks.length; j++) {
blanks[j].setAttribute("value", answer);
blanks[j].dispatchEvent(inputBubblesEvent);
}
} else {
//一般不会跑到这,如果到这了输出一下,表示惊讶
console.log("居然跑到了这里")
}
} else if (blanks.length == 1) {//只有一个空,直接把所有tips合并。
let answer = "";
if (allTips.length != 0) {//如果有提示
for (let i = 0; i < allTips.length; i++) {
answer += allTips[i].textContent;
}
} else {
try {//尝试点击视频播放按钮,不过播不播都没关系
document.querySelector('video').play();
} catch (e) { }
let key = getKey();
let answerData = await getAnswer(key);
if (answerData.status == 0 || answerData == "error") {
//没有获取到答案
answer = "不知道";
//没有其他人做过这道视频题,所以需要答完保存答案,这样其他人遇到就能做对
shouldSaveAnswer = true;
} else {
//有答案
answerData = JSON.parse(answerData.data.txt_content);
answer = answerData[0].content;
}
}
blanks[0].setAttribute("value", answer);
blanks[0].dispatchEvent(inputBubblesEvent);
break;
}
else {
//怕有没空白的情况。
}
break;
}
case "多选题": {
results = [];
let hasButton = false;
for (let i = 0; i < allTips.length; i++) {
let tip = allTips[i];
let answer = tip.textContent;
if (answer && answer.length > 0) {
for (let j = 0; j < allbuttons.length; j++) {
//获取按钮
let selectButton = allbuttons[j];
//获取按钮的上的答案
let buttonAnswer = selectButton.textContent;
if (buttonAnswer == answer || buttonAnswer.indexOf(answer) != -1 || answer.indexOf(buttonAnswer) != -1) {
hasButton = true;
if (!$(selectButton).hasClass("chosen")) {
selectButton.click();
}
break;
}
}
}
}
if (!hasButton) {
//没找到按钮,随便选一个
allbuttons[0].click();
}
break;
}
case "单选题": {
let results = [];
let answer = "";
for (let i = 0; i < allTips.length; i++) {
answer += allTips[i].textContent;
}
if (answer && answer.length > 0) {
let hasButton = false;
for (let i = 0; i < allbuttons.length; i++) {
let radioButton = allbuttons[i];
let buttonAnswer = radioButton.textContent;
//对比答案
if (buttonAnswer == answer || buttonAnswer.indexOf(answer) != -1 || answer.indexOf(buttonAnswer) != -1) {
hasButton = true;
radioButton.click();
break;
}
}
if (!hasButton) {
//没找到按钮,随便选一个
allbuttons[0].click();
}
} else {
//没答案,随便选一个
allbuttons[0].click();
}
break;
}
default:
break;
}
qNum++;
nextButton = await getNextButton();
if (nextButton.textContent != "再练一次" && nextButton.textContent != "再来一组" && nextButton.textContent != "查看解析") {
nextButton.click();
if (shouldSaveAnswer) {//如果应该保存答案
let key = getKey();//获取key
let answerTemp = document.getElementsByClassName("answer")[0].innerText;
let reg = new RegExp(' ', "g")
let answer = "";
try {//从字符串中拿出答案
answer = answerTemp.split(":")[1];
answer = answer.replace(reg, ";");
} catch (e) {
answer = answerTemp;
}
await saveAnswer(key, answer);
shouldSaveAnswer = false;
}
} else {
//已经做完,跳出循环
break;
}
}
window.close();
}
//获取关键字
function getKey() {
//获取题目的文本内容
let key = document.getElementsByClassName("q-body")[0].innerText;
//外部引用md5加密
key = md5(key);
console.log(key)
return key;
}
//保存答案
function saveAnswer(key, value) {
return new Promise(function (resolve) {
value = [{ "title": key, "content": value }];
value = JSON.stringify(value);
$.ajax({
type: "POST",
url: AnswerSaveUrl,
data: {
txt_name: key,
txt_content: value,
password: "",
v_id: ""
},
dataType: "json",
success: function (data) {
resolve(data);
},
error: function () {
resolve("error");
}
});
})
}
//获取答案
function getAnswer(key) {
return new Promise(function (resolve) {
$.ajax({
type: "POST",
url: AnswerDetailUrl,
data: {
txt_name: key,
password: ""
},
dataType: "json",
success: function (data) {
resolve(data);
},
error: function () {
resolve("error");
}
});
})
}
//去除答题验证
function cancelVerify() {
try {
let verifyBox = document.getElementById("nc_mask");
verifyBox.id = "egg_nc_mask";
verifyBox.innerHTML = "";
verifyBox.remove();
} catch (e) {
console.log("去除验证失败");
}
}
//等待时间工具函数
function waitingTime(time) {
if (!Number.isInteger(time)) {
time = 1000;
}
return new Promise(resolve => {
setTimeout(function () {
resolve('done');
}, time);
});
}
//查询今日完成情况
function getToday() {
return new Promise(function (resolve) {
$.ajax({
type: "GET",
url: SearchSocreUrl,
xhrFields: {
withCredentials: true //如果没有这个请求失败
},
dataType: "json",
success: function (temp) {
resolve(temp.data.taskProgress);
},
error: function () {
resolve(new Array());
}
});
})
}
//初始化配置
function initSetting() {
try {
let settingTemp = JSON.parse(GM_getValue('studySetting'));
if (settingTemp != null) {
settings = settingTemp;
} else {
settings = [true, true, true, true, true, true, true, false];
}
} catch (e) {
//没有则直接初始化
settings = [true, true, true, true, true, true, true, false];
}
}
//创建“手动答题”按钮
function createManualButton() {
let title = document.getElementsByClassName("title")[0];
let manualButton = document.createElement("button");
manualButton.setAttribute("id", "manualButton");
manualButton.innerText = "关闭自动答题";
manualButton.className = "egg_auto_btn";
//添加事件监听
try {// Chrome、FireFox、Opera、Safari、IE9.0及其以上版本
manualButton.addEventListener("click", clickManualButton, false);
} catch (e) {
try {// IE8.0及其以下版本
manualButton.attachEvent('onclick', clickManualButton);
} catch (e) {// 早期浏览器
console.log("不学习何以强国error: 手动答题按钮绑定事件失败")
}
}
//插入节点
title.parentNode.insertBefore(manualButton, title.nextSibling);
}
//点击手动学习按钮
function clickManualButton() {
let manualButton = document.getElementById("manualButton");
if (manualButton.innerText == "关闭自动答题") {
manualButton.innerText = "开启自动答题";
manualButton.className = "egg_manual_btn";
pause = true;
} else {
manualButton.innerText = "关闭自动答题";
manualButton.className = "egg_auto_btn";
pause = false;
}
}
//创建“开始学习”按钮和配置
function createStartButton() {
let base = document.createElement("div");
var baseInfo = "";
baseInfo += "<form id=\"settingData\" class=\"egg_menu\" action=\"\" target=\"_blank\" onsubmit=\"return false\"><div class=\"egg_setting_box\"><div class=\"egg_setting_item\"><label>新闻<\/label><input class=\"egg_setting_switch\" type=\"checkbox\" name=\"0\" " + (settings[0] ? 'checked' : '') + "\/> <\/div> <div class=\"egg_setting_item\"> <label>视频<\/label> <input class=\"egg_setting_switch\" type=\"checkbox\" name=\"1\" " + (settings[1] ? 'checked' : '') + "\/> <\/div> <div class=\"egg_setting_item\"> <label>每日答题<\/label> <input class=\"egg_setting_switch\" type=\"checkbox\" name=\"6\" " + (settings[6] ? 'checked' : '') + "\/> <\/div> <div class=\"egg_setting_item\"> <label>每周答题<\/label> <input class=\"egg_setting_switch\" type=\"checkbox\" name=\"2\" " + (settings[2] ? 'checked' : '') + "\/> <\/div> <div class=\"egg_setting_item\"> <label>专项练习<\/label> <input class=\"egg_setting_switch\" type=\"checkbox\" name=\"5\" " + (settings[5] ? 'checked' : '') + "\/><\/div><hr \/><div title='Tip:开始学习后,隐藏相关页面和提示(不隐藏答题中的关闭自动答题按钮)' class=\"egg_setting_item\"> <label>运行隐藏<\/label> <input class=\"egg_setting_switch\" type=\"checkbox\" name=\"7\"" + (settings[7] ? 'checked' : '') + "/></div><a style=\"text-decoration: none;\" title=\"视频不自动播放?点此查看解决办法\" target=\"blank\" href=\"https://docs.qq.com/doc/DZllGcGlJUG1qT3Vx\"><div style=\"color:#5F5F5F;font-size:14px;\" class=\"egg_setting_item\"><label style=\"cursor: pointer;\">视频不自动播放?<\/label><\/div><\/a><\/div><\/form>";
base.innerHTML = baseInfo;
let body = document.getElementsByTagName("body")[0];
body.append(base)
let startButton = document.createElement("button");
startButton.setAttribute("id", "startButton");
startButton.innerText = "开始学习";
startButton.className = "egg_study_btn egg_menu";
//添加事件监听
try {// Chrome、FireFox、Opera、Safari、IE9.0及其以上版本
startButton.addEventListener("click", start, false);
} catch (e) {
try {// IE8.0及其以下版本
startButton.attachEvent('onclick', start);
} catch (e) {// 早期浏览器
console.log("不学习何以强国error: 开始学习按钮绑定事件失败")
}
}
//插入节点
body.append(startButton)
}
//保存配置
function saveSetting() {
let form = document.getElementById("settingData");
let formData = new FormData(form);
settings[0] = (formData.get('0') != null);
settings[1] = (formData.get('1') != null);
settings[6] = (formData.get('6') != null);
settings[2] = (formData.get('2') != null);
settings[5] = (formData.get('5') != null);
settings[7] = (formData.get('7') != null);//运行时是否要隐藏
GM_setValue('studySetting', JSON.stringify(settings));
}
//是否显示目录
function showMenu(isShow = true) {
let items = document.getElementsByClassName("egg_menu");
for (let i = 0; i < items.length; i++) {
items[i].style.display = isShow ? "block" : "none";
}
}
//开始
async function start() {
//保存配置
console.log("初始化...")
saveSetting();
let loggedBox = document.querySelectorAll("a[class='logged-link']")[0];
console.log("检查是否登录...")
if (loggedBox && loggedBox.innerText) {
let startButton = document.getElementById("startButton");
startButton.innerText = "正在学习";
startButton.style.cursor = "default";
startButton.setAttribute("disabled", true);
if (settings[7]) {
showMenu(false);
}
let taskProgress = null;
let continueToDo = true;
let tasks = [false, false, false, false, false]
while (continueToDo) {
//查询今天还有什么任务没做完
console.log("检查今天还有什么任务没做完")
taskProgress = await getToday();
if (taskProgress != null) {
console.log("开始学习")
//检查新闻
if (settings[0] && taskProgress[0].currentScore != taskProgress[0].dayMaxScore) {
tasks[0] = false;//只要还有要做的,就当做没完成
newsNum = taskProgress[0].dayMaxScore - taskProgress[0].currentScore;//还需要看多少个新闻
console.log("1.看新闻");
await readNews();
} else {
tasks[0] = true;
}
//检查视频
let temp = parseInt(taskProgress[1].dayMaxScore - taskProgress[1].currentScore);
let temp2 = parseInt(taskProgress[3].dayMaxScore - taskProgress[3].currentScore);
if (settings[1] && (temp != 0 || temp2 != 0)) {
tasks[1] = false;//只要还有要做的,就当做没完成