forked from Hidove/minghuaetc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bk_main.js
408 lines (382 loc) · 20.6 KB
/
bk_main.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
// ==UserScript==
// @name Hidove名华在线老实挂机版_补看
// @namespace https://www.hidove.cn/
// @version 2.2
// @description 名华在线网课全自动挂机脚本,支持验证码识别
// @author Hidove 余生
// @include *.minghuaetc.com/user/node*
// @supportURL https://blog.hidove.cn/post/616
// ==/UserScript==
(function () {
'use strict';
var videoIsOver = false;
// var noIdList = ["1125475", "1125478", "1125455", "1125460", "1118640", "1118647", "1118626", "1118627", "1118636", "1128067"];
var noIdList = JSON.parse(document.getElementById("HidoveNoIdList").innerText);
var updateTime = '2020年4月5日22:14:46';
let courseUrl = document.querySelector(".wrapper .curPlace .center");
var courseId = 0;
if (courseUrl == null) {
courseUrl = window.location.href;
courseId = getQueryVariable("courseId", courseUrl);
} else {
courseId = getQueryVariable("courseId", courseUrl.lastChild.href);
}
if (noIdList.indexOf(getQueryVariable("nodeId").toString()) == -1) {
window.location = getFullUrl(noIdList.shift());
}
if (getQueryVariable("courseId") == false) {
window.location = getFullUrl(getQueryVariable("nodeId"));
}
var storage = {
set: function (name, value) {
if (window.localStorage) {
window.localStorage.setItem(name, value);
return;
}
var Days = 30;
var exp = new Date();
exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
document.cookie = name + '=' + escape(value) + ';expires=' + exp.toGMTString();
},
get: function (name) {
if (window.localStorage) {
return window.localStorage.getItem(name);
}
var arr, reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)');
if (arr = document.cookie.match(reg)) {
return unescape(arr[2]);
} else {
return null;
}
},
del: function (name) {
if (window.localStorage) {
return window.localStorage.removeItem(name);
}
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var cval = this.get(name);
if (cval != null) {
document.cookie = name + '=' + cval + ';expires=' + exp.toGMTString();
}
}
};
if (window.console && window.console.log) {
console.clear();
console.log("%c 当前版本:Hidove名华在线老实挂机版_补看 %c https://blog.hidove.cn ", "color: #fadfa3; background: #030307; padding:5px 0;", "background: #fadfa3; padding:5px 0;");
console.log("%c 最后更新时间:" + updateTime + " ", "color: #fff; margin: 1em 0; padding: 5px 0; background: #3498db;");
console.log("%c 本脚本永久免费,如果你是购买的那么说明你被骗了", "color: #fff; margin: 1em 0; padding: 5px 0; background: #ffa9be;");
console.log("%c 脚本加载完成 当前时间:" + new Date(), "color: #fff; margin: 1em 0; padding: 5px 0; background: #673ab7;");
}
var IdList = getIdList();
if (judgementState(IdList)) {
if (document.getElementById("videoContent") == null && isOver(IdList, getCurrentId())) {
print("恭喜你,已全部刷完");
}
//主要执行方法
setInterval(() => {
console.log("检查状态中,是否播放完成:" + videoIsOver);
if (videoIsOver == true) {
main();
}
}, 3000);
} else {
return;
}
//video.js 初始化
var videoFile = $('#video-file').val() || '';
var nodeId = $('#video-nodeId').val() || '';
var userId = $('#user-id').val() || '0';
var studyState = $('#study-state').val() || 0;
studyState = parseInt(studyState);
var studyUrl = '/user/node/study';
var studyId = 0;
var totalTime = 0;
var studyTime = 0;
var player = null;
var playState = 'stop';
var playId = 'node_' + userId + '_' + nodeId;
var layId = 0;
window.setInterval(function () {
storage.set('node_play_' + userId, nodeId);
}, 567);
window.setInterval(function () {
var bNodeId = storage.get('node_play_' + userId);
if (playState == 'playing') {
totalTime++;
}
}, 1000);
//记录鼠标行为轨迹,用于分析作弊,已完成的不在记录
var loged = (studyState == 2);
var xlogs = [];
var sentLog = function () {
if (loged) {
return;
}
loged = true;
$.post('/service/mouse_log', {
g: "[7,209,10955,7,207,10963,7,206,10973,7,204,10979,7,203,10987,7,201,10995,7,200,11003,7,199,11011,9,200,11252,12,203,11260,16,208,11268,22,215,11275,30,223,11284,38,230,11291,48,238,11299,58,246,11307,69,252,11316,80,257,11324,90,260,11331,100,261,11339,106,261,11348,112,260,11355,116,258,11363,118,253,11371,119,248,11381,120,241,11387,120,234,11395,117,225,11403,113,218,11412,106,212,11419,94,205,11429,78,198,11435,56,190,11444,29,185,11452,2,184,11460,0,184,11467,0,189,11475,0,195,11483,0,203,11491,0,215,11499,0,228,11507,0,240,11516,0,254,11523,0,266,11533,0,278,11539,0,289,11547,0,300,11555,0,307,11564,1,316,11571,5,322,11579,12,327,11587,23,331,11595,36,332,11603,57,330,11611,90,320,11620,129,301,11627,172,278,11635,210,251,11643,241,224,11652,266,196,11660,283,169,11667,296,143,11675,301,123,11684,303,108,11692,305,95,11699,304,83,11708,302,73,11716,299,64,11724,295,55,11731,290,46,11740,283,38,11747,274,29,11755,264,20,11763,251,12,11772,238,3,11780,155,7,11932,155,7,11932,158,15,11940,164,26,11947,173,41,11957,185,58,11964,202,78,11972,220,94,11979,237,107,11988,250,116,11996,260,121,12004,267,123,12011,270,124,12019,272,124,12027,274,124,12036,275,123,12043,275,121,12051,275,118,12059,275,114,12068,275,109,12075,272,103,12083,267,97,12092,259,89,12100,246,81,12108,228,71,12116,205,62,12124,178,54,12132,151,46,12139,127,43,12148,110,42,12155,97,43,12164,87,47,12171,78,53,12179,73,63,12189,68,77,12196,63,96,12203,60,119,12212,58,149,12220,58,176,12228,61,213,12235,66,247,12245,75,282,12252,87,318,12260,99,348,12268,112,372,12276,124,386,12283,138,397,12292,150,402,12299,165,405,12307,180,405,12315,197,401,12324,217,392,12332,234,379,12339,250,364,12349,265,342,12356,279,313,12364,289,278,12371,295,244,12379,298,210,12388,300,180,12396,300,155,12404,299,133,12411,297,115,12419,293,101,12428,288,90,12436,279,80,12444,265,69,12452,241,56,12461,210,41,12468,169,28,12475,123,16,12484,78,9,12492,37,5,12502,4,5,12508,0,9,12515,0,17,12523,0,26,12532,0,39,12539,0,55,12547,0,73,12555,0,95,12564,0,121,12572,0,145,12580,2,179,12587,9,214,12597,21,249,12603,40,286,12612,64,322,12619,87,352,12628,111,378,12636,137,398,12644,161,412,12651,181,421,12659,200,427,12667,213,428,12677,228,428,12683,242,422,12692,261,412,12700,279,394,12710,297,369,12715,315,337,12724,329,301,12732,336,264,12740,339,233,12747,339,202,12756,332,175,12763,323,153,12772,312,134,12780,301,122,12787,288,111,12796,275,102,12804,262,95,12812,250,90,12819,237,87,12828,227,85,12835,219,85,12843,208,85,12851,199,88,12861,192,94,12867,185,106,12875,179,122,12883,175,148,12893,171,187,12900,169,231,12908,170,277,12916,176,324,12924,183,372,12932,197,421,12940,214,465,12948,237,502,12956,259,530,12964,285,550,12971,313,562,12980,344,565,12988,377,563,12996,415,554,13004,454,539,13012,486,518,13020,514,493,13028,536,463,13036,552,429,13047,562,396,13052,567,362,13060,569,331,13068,568,306,13077,566,286,13085,561,269,13091,551,253,13099,540,237,13108,528,224,13116,510,210,13124,489,197,13131,460,184,13140,427,170,13148,389,159,13158,346,150,13164,301,140,13171,259,137,13179,227,137,13189,190,139,13196,161,146,13204,140,156,13211,121,169,13220,106,185,13228,95,205,13238,87,230,13244,83,256,13252,80,285,13259,82,313,13269,88,340,13276,97,363,13285,109,381,13292,122,397,13300,142,410,13307,162,420,13316,188,430,13324,212,436,13332,232,438,13339,252,440,13347,269,440,13356,287,438,13365,301,434,13372,314,425,13380,327,412,13388,337,394,13397,346,374,13404,350,352,13412,353,332,13419,353,317,13429,352,301,13435,350,289,13444,347,278,13453,341,267,13460,334,257,13467,325,247,13476,313,235,13484,292,218,13493,267,195,13500,236,172,13508,204,148,13516,171,127,13525,139,107,13534,110,90,13540,86,77,13548,66,69,13556,52,64,13565,39,60,13571,30,59,13579,22,60,13587,14,64,13596,8,69,13604,4,77,13611,2,87,13619,2,99,13628,3,116,13636,8,139,13645,14,164,13652,23,186,13659,32,206,13668,43,223,13675,52,235,13684,61,242,13691,72,247,13699,84,248,13707,101,246,13715,125,240,13724,156,226,13732,191,206,13741,223,185,13748,252,160,13755,272,135,13764,286,113,13772,294,95,13779,297,82,13788,298,71,13796,298,64,13805,296,55,13812,291,49,13820,285,44,13827,276,39,13837,265,35,13846,250,30,13851,228,26,13859,203,24,13867,167,23,13877,131,25,13884,92,30,13893,51,41,13899,15,56,13910,0,73,13916,0,92,13923,0,116,13931,0,141,13940,0,170,13948,0,203,13956,3,237,13964,13,272,13973,30,306,13980,51,338,13988,80,365,13996,114,383,14004,155,394,14011,202,400,14020,256,399,14028,315,391,14036,374,377,14044,428,359,14052,475,341,14059,509,325,14068,535,312,14076,548,303,14083,557,297,14095,563,293,14100,566,291,14107,569,290,14115,572,289,14123,574,288,14131,576,288,14139,580,287,14147,583,287,14155,588,287,14164,593,286,14171,596,286,14181,599,286,14187,601,286,14195,605,286,14203,610,289,14211,615,295,14221,622,304,14228,633,316,14236,646,333,14244,658,350,14252,671,367,14260,681,381,14267,688,391,14275,692,398,14285,695,402,14292,696,405,14299,696,407,14315,696,411,14323,697,419,14334,700,431,14340,703,445,14349,709,463,14356,716,480,14364,723,497,14372,718,537,18244,713,546,18252,707,553,18260,701,561,18267,695,567,18276,690,572,18284,685,576,18291,682,581,18299,678,584,18307,675,589,18315,673,592,18323,671,596,18331,669,599,18339,668,602,18347,668,605,18355,666,608,18363,665,611,18372,665,613,18380,664,614,18388,662,616,18395,661,618,18403,658,620,18411,654,622,18419,663,613,19005,663,613,19005,678,599,19012,699,580,19019,722,561,19027,721,602,3715,717,604,3724,712,606,3732,709,609,3740,706,611,3747,705,613,3755,704,614,3763,704,615,3772,704,616,3779,704,617,3787,704,618,3795,704,619,3811,704,620,3867,703,621,3875,702,622,3884,701,622,3924,701,623,3931,699,624,3948,697,624,3955,439,618,8270,450,609,8277,465,597,8285,482,584,8293,497,570,8300,512,557,8308,529,542,8316,544,530,8324,558,518,8332,573,506,8340,585,495,8349,598,483,8356,610,471,8363,640,447,8388,651,439,8396,665,431,8404,722,292,13556,705,331,13565,688,373,13572,671,415,13580,654,456,13587,638,495,13597,625,528,13603,616,556,13611,610,575,13619,607,589,13627,604,600,13635,600,607,13643,599,613,13651,596,617,13659,593,622,13667,443,624,19981,451,620,19989,460,614,19996,470,609,6,478,603,11,487,598,21,495,594,27,503,589,38,510,583,43,516,578,52,522,572,59,528,566,68,533,561,75,539,556,83,546,551,91,552,546,100,558,540,107,565,535,115,572,531,123,578,528,132,582,526,139,585,524,147,588,522,155,591,521,163,592,521,171,593,520,179,594,520,188,595,519,195,596,519,203,599,519,211,602,519,220,606,519,227,611,519,235,619,518,243,627,517,251,635,515,259,645,514,268,654,512,275,666,510,285,679,507,291,692,503,299,708,497,307]",
nodeId: nodeId
});
};
//处理验证码,防止使用外挂
var layIndex = null;
var tw = '';
var sendTime = function (force, code) {
studyTime = totalTime;
var data = { nodeId: nodeId, studyId: studyId, studyTime: totalTime };
if (code) {
if (code.length > 4) {
code = code.substr(0, 4);
}
data.code = code + tw;
}
if (force !== void 0 && force == 1 && totalTime < 1) {
data.studyTime = 1;
}
$.post(studyUrl, data, function (ret) {
if (ret.status) {
studyId = ret.studyId;
if (code) {
playState = 'playing';
player.videoPlay();
}
} else {
if (ret.need_code) {
playState = 'pause';
player.videoPause();
if (layIndex === null) {
layIndex = 1;
//处理验证码
print(ret.msg);
print("识别验证码中,请稍后,可能需要多次请求才能成功,稍安勿躁");
getBase64('/service/code?r=' + Math.random())
.then(function (base64) {
$.ajax({
'url': 'https://api.abcyun.co/api/Captcha/distinguish',
'type': 'post',
'data': {
token: "5d8f31cf6a8ab",
img: base64,
user: "jujingyi",
},
success: function (res) {
tw = '_';
sendTime(1, res.data);
layIndex = null;
}
});
}, function (err) {
console.log(err);//打印异常信息
});
}
}
}
}, 'json');
};
window.addEventListener('unload', function (ev) {
var form = new FormData();
var data = { nodeId: nodeId, studyId: studyId, studyTime: totalTime, closeSend: 1 };
for (var k in data) {
form.append(k, data[k]);
}
window.navigator.sendBeacon(studyUrl, form);
});
var interval = 10000;
if (typeof (window.navigator.sendBeacon) == 'function') {
interval = 60000;
}
//提交学习时间---
window.setInterval(function () {
if (player == null || totalTime <= studyTime) {
return;
}
sendTime();
}, interval);
window.loadHandler = function () {
player.addListener('play', function () {
// player.changeControlBarShow(true);
playState = 'playing';
if (studyId == 0) {
sendTime(1);
}
sentLog();
});
player.addListener('pause', function () {
// player.changeControlBarShow(false);
playState = 'pause';
sendTime();
});
player.addListener('ended', function () {
// player.changeControlBarShow(false);
playState = 'ended';
storage.del(playId);
sendTime();
player.changeConfig('config', 'timeScheduleAdjust', 1);
videoIsOver = true;
});
player.addListener('time', function (t) {
storage.set(playId, t);
}); //监听播放时间
// player.changeControlBarShow(false);
if (studyState < 2) {
player.changeConfig('config', 'timeScheduleAdjust', 1);
}
};
var option = {
container: '#videoContent', //容器的ID或className
variable: 'player', //播放函数名称
drag: 'start', //拖动的属性
loaded: 'loadHandler',
autoplay: true,// 是否自动播放
flashplayer: false, //强制使用flashplayer
video: [
[videoFile, 'video/mp4', '中文标清', 0]
]
};
var cookieTime = storage.get(playId);
if (!cookieTime || cookieTime == undefined) {
cookieTime = 0;
}
if (cookieTime > 0) {
option['seek'] = cookieTime;
}
//实例化播放器
player = new ckplayer(option);
//controller
function main() {
print("播放完成");
let duration = player.getMetaDate().duration;
print("视频长度为" + duration + "秒");
if (isOver(IdList, getCurrentId())) {
print("恭喜你,已全部刷完");
} else {
print("2秒后跳转下一部");
setTimeout(function () {
window.location.href = getFullUrl(getNextId(IdList, getCurrentId()));
}, 2000);
}
}
//获取当前状态,判断是否为播放页
function judgementState(IdList) {
if (document.getElementById("error-main") != null) {
if (document.querySelector("#error-main .name").innerText == "章节数据有误,联系老师!") {
print("章节数据有误,准备跳转下一部");
setTimeout(function () {
window.location.href = getFullUrl(getNextId(IdList, getCurrentId()));
}, 2000);
return false;
}
if (document.querySelector("#error-main .name").innerText == "当前章节尚未解锁,请先学完上一个视频") {
print("当前章节尚未解锁,准备跳转上一部");
// setTimeout(function () {
// window.location.href = getFullUrl(getLastId(IdList, getCurrentId()));
// }, 2000);
return false;
}
return false;
}
if (isOver(IdList, getCurrentId())) {
print("恭喜你,当前为最后一课");
return true;
} else if (document.getElementById("videoContent") == null) {
print("当前页面没有发现播放信息,准备跳转下一部");
setTimeout(function () {
window.location.href = getFullUrl(getNextId(IdList, getCurrentId()));
}, 2000);
return false;
}
return true;
}
function print(msg) {
if (window.console && window.console.log) {
console.log("%c " + msg, "color: #fff; margin: 1em 0; padding: 5px 0; background: #00a9e0;");
}
}
//获取当前课程所有id数组
function getIdList() {
return noIdList;
}
//获取当前Id
function getCurrentId() {
return getQueryVariable("nodeId");;
}
//获取上一个Id
function getLastId(IdList, id) {
for (var i in IdList) {
if (IdList[i] == id) {
return IdList[Number(i) - 1];
}
}
print("获取上一个Id失败");
return getCurrentId();
}
//获取下一个Id
function getNextId(IdList, id) {
for (var i in IdList) {
if (IdList[i] == id) {
return IdList[Number(i) + 1];
}
}
print("获取下一个Id失败");
return getCurrentId();
}
//获取最近Id
function getNearId(IdList, id) {
for (var i in IdList) {
if (IdList[i] > id && i != 0) {
return IdList[Number(i) - 1];
}
}
print("获取最近Id失败,跳转第一课");
return IdList[0];
}
//判断是否学完
function isOver(IdList, id) {
if (IdList[IdList.length - 1] == id) {
return true;
}
return false;
}
//拼接完整课程Url
function getFullUrl(id) {
let newurl = "http://www.minghuaetc.com/user/node?courseId=" + courseId + "&nodeId=" + + id;
return newurl;
}
//获取get参数
function getQueryVariable(variable, url = null) {
var query = window.location.search.substring(1);
if (url != null) {
url.substr(url.indexOf("?") + 1);
query = url.substr(url.indexOf("?") + 1);
}
var vars = query.split("&");
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) { return pair[1]; }
}
return (false);
}
//传入图片路径,返回base64
function getBase64(img) {
function getBase64Image(img, width, height) {//width、height调用时传入具体像素值,控制大小 ,不传则默认图像大小
var canvas = document.createElement("canvas");
canvas.width = width ? width : img.width;
canvas.height = height ? height : img.height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
var dataURL = canvas.toDataURL();
return dataURL;
}
var image = new Image();
image.crossOrigin = '';
image.src = img;
var deferred = $.Deferred();
if (img) {
image.onload = function () {
deferred.resolve(getBase64Image(image));//将base64传给done上传处理
}
return deferred.promise();//问题要让onload完成后再return sessionStorage['imgTest']
}
}
})();