超星/学习通助手(查题可用)

自动挂机看尔雅MOOC,支持视频,作业。

  1. // ==UserScript==
  2. // @name 超星/学习通助手(查题可用)
  3. // @version 1.2.5
  4. // @namespace lownao
  5. // @description 自动挂机看尔雅MOOC,支持视频,作业。
  6. // @author lownao
  7. // @match *://*.chaoxing.com/*
  8. // @match *://*.edu.cn/*
  9. // @match *://*.nbdlib.cn/*
  10. // @match *://*.hnsyu.net/*
  11. // @connect cx.icodef.com
  12. // @run-at document-end
  13. // @grant unsafeWindow
  14. // @grant GM_xmlhttpRequest
  15. // @grant GM_getValue
  16. // @grant GM_setClipboard
  17. // @grant GM_setValue
  18. // @license MIT
  19. // @original-script https://gf.qytechs.cn/scripts/369625
  20. // @original-author wyn665817
  21. // @original-license MIT
  22. // ==/UserScript==
  23.  
  24. // 设置修改后,需要刷新或重新打开网课页面才会生效
  25. var setting = {
  26. time: 5E3 // 默认响应速度为5秒,不建议小于5秒
  27. , audio: 1 // 音频自动播放,与视频功能共享vol和rate参数,默认开启
  28. , book: 1 // 图书阅读任务点,非课程阅读任务点,默认开启
  29. , course: 0 // 当前课程完成后自动切换课程,仅支持按照根目录课程顺序切换,默认开启
  30. , docs: 1 // 文档阅读任务点,PPT类任务点自动完成阅读任务,默认开启
  31. , face: 1 // 解除面部识别(不支持二维码类面部采集),此功能仅为临时解除,默认开启
  32. , http: '标清' // 视频播放的默认清晰度,无效参数则使用系统默认清晰度,默认'标清'
  33. , jump: 1 // 自动切换任务点、章节、课程(需要配置course参数),默认开启
  34. , line: '公网1' // 视频播放的默认资源线路,此功能适用于系统默认线路无资源,默认'公网1'
  35. , lock: 1 // 跳过未开放(图标是锁)的章节,即闯关模式或定时发放的任务点,默认开启
  36. , none: 0 // 无匹配答案时执行默认操作,关闭后若题目无匹配答案则会暂时保存已作答的题目,默认开启
  37. , password: '' // 密码,例如'123456',默认''
  38. , queue: 1 // 队列模式,开启后任务点逐一完成,关闭则单页面所有任务点同时进行,默认开启
  39. , rate: '1' // 视频播放默认倍率,参数范围0∪[0.0625,16],'0'为秒过,默认'1'倍
  40. , read: '65' // 挂机课程阅读时间,单位是分钟,'65'代表挂机65分钟,请手动打开阅读页面,默认'65'分钟
  41. , review: 0 // 复习模式,完整挂机视频(音频)时长,支持挂机任务点已完成的视频和音频,默认关闭
  42. , scale: 0 // 富文本编辑器高度自动拉伸,用于文本类题目,答题框根据内容自动调整大小,默认关闭
  43. , school: '账号为手机号可以不修改此参数' // 学校/单位/机构码,要求完整有效可查询,例如'清华大学'
  44. , total: 1 // 显示课程进度的统计数据,在学习进度页面的上方展示,默认开启
  45. , username: '' // 学号/工号/借书证号(邮箱/手机号/账号),例如'2018010101',默认''
  46. , video: 1 // 视频支持后台、切换窗口不暂停,支持多视频,默认开启
  47. , vol: '0' // 默认音量的百分数,设定范围:[0,100],'0'为静音,默认'0'
  48. , work: 1 // 自动答题功能(章节测验),作业需要手动开启查询,高准确率,默认开启
  49.  
  50. },
  51. _self = unsafeWindow,
  52. url = location.pathname,
  53. top = _self;
  54.  
  55.  
  56. setting.notice = '公告栏';
  57.  
  58. var tmpSubmit = 1;//本次
  59. Object.defineProperty(setting, "auto", {
  60. get: function () {
  61. if (tmpSubmit >= 2) {
  62. return tmpSubmit === 3;
  63. }
  64. return GM_getValue("autosubmit");
  65. },
  66. set: function (value) {
  67. tmpSubmit = value + 2;
  68. }
  69. });
  70. if (url != '/studyApp/studying' && top != _self.top) document.domain = location.host.replace(/.+?\./, '');
  71.  
  72. try {
  73. while (top != _self.top) {
  74. top = top.parent.document ? top.parent : _self.top;
  75. if (top.location.pathname == '/mycourse/studentstudy') break;
  76. }
  77. } catch (err) {
  78. // console.log(err);
  79. top = _self;
  80. }
  81.  
  82. var $ = _self.jQuery || top.jQuery,
  83. parent = _self == top ? self : _self.parent,
  84. Ext = _self.Ext || parent.Ext || {},
  85. UE = _self.UE,
  86. vjs = _self.videojs;
  87.  
  88. String.prototype.toCDB = function () {
  89. return this.replace(/\s/g, '').replace(/[\uff01-\uff5e]/g, function (str) {
  90. return String.fromCharCode(str.charCodeAt(0) - 65248);
  91. }).replace(/[“”]/g, '"').replace(/[‘’]/g, "'").replace(/。/g, '.');
  92. };
  93.  
  94. // setting.time += Math.ceil(setting.time * Math.random()) - setting.time / 2;
  95. setting.job = [':not(*)'];
  96. setting.normal = ''; // ':visible'
  97.  
  98. setting.video && setting.job.push('iframe[src*="/video/index.html"]');
  99. setting.book && setting.job.push('iframe[src*="/innerbook/index.html"]');
  100. setting.docs && setting.job.push('iframe[src*="/ppt/index.html"]', 'iframe[src*="/pdf/index.html"]');
  101. setting.work && setting.job.push('iframe[src*="/work/index.html"]');
  102. setting.audio && setting.job.push('iframe[src*="/audio/index.html"]');
  103.  
  104. setting.tip = !setting.queue || top != _self && jobSort($ || Ext.query);
  105.  
  106.  
  107. function getIframe(tip, win, job) {
  108. if (!$) return Ext.get(frameElement || []).parent().child('.ans-job-icon') || Ext.get([]);
  109. do {
  110. win = win ? win.parent : _self;
  111. job = $(win.frameElement).prevAll('.ans-job-icon');
  112. } while (!job.length && win.parent.frameElement);
  113. return tip ? win : job;
  114. }
  115.  
  116.  
  117. function hookAudio() {
  118. _self.alert = console.log;
  119. var config = arguments[1];
  120. config.plugins.studyControl.enableSwitchWindow = 1;
  121. config.plugins.seekBarControl.enableFastForward = 1;
  122. if (!setting.queue) delete config.plugins.studyControl;
  123. var player = vjs.apply(this, arguments),
  124. a = '<a href="https://d0.ananas.chaoxing.com/download/' + _self.config('objectid') + '" target="_blank">',
  125. img = '<img src="https://d0.ananas.chaoxing.com/download/e363b256c0e9bc5bd8266bf99dd6d6bb" style="margin: 6px 0 0 6px;">';
  126. player.volume(Math.round(setting.vol) / 100 || 0);
  127. player.playbackRate(setting.rate > 16 || setting.rate < 0.0625 ? 1 : setting.rate);
  128. Ext.get(player.controlBar.addChild('Button').el_).setHTML(a + img + '</a>').dom.title = '下载音频';
  129. player.on('loadeddata', function () {
  130. setting.tip && this.play().catch(Ext.emptyFn);
  131. });
  132. player.one('firstplay', function () {
  133. setting.rate === '0' && config.plugins.seekBarControl.sendLog(this.children_[0], 'ended', Math.floor(this.cache_.duration));
  134. });
  135. player.on('ended', function () {
  136. Ext.fly(frameElement).parent().addCls('ans-job-finished');
  137. });
  138. return player;
  139. }
  140.  
  141. function checkPlayer(tip) {
  142. _self.videojs = hookVideo;
  143. hookVideo.xhr = vjs.xhr;
  144. Ext.isSogou = Ext.isIos = Ext.isAndroid = false;
  145. var data = Ext.decode(_self.config('data')) || {};
  146. delete data.danmaku;
  147. data.doublespeed = 1;
  148. frameElement.setAttribute('data', Ext.encode(data));
  149. if (tip) return;
  150. _self.supportH5Video = function () { return true; };
  151. alert('此浏览器不支持html5播放器,请更换浏览器');
  152. }
  153. if (url == '/mycourse/studentstudy') {
  154. _self.checkMobileBrowerLearn = $.noop;
  155. var classId = location.search.match(/cla[zs]{2}id=(\d+)/i)[1] || 0,
  156. courseId = _self.courseId || location.search.match(/courseId=(\d+)/i)[1] || 0;
  157. setting.lock || $('#coursetree').on('click', '[onclick*=void], [href*=void]', function () {
  158. _self.getTeacherAjax(courseId, classId, $(this).parent().attr('id').slice(3));
  159. });
  160. } else if (url == '/ananas/modules/video/index.html' && setting.video) {
  161. if (setting.review) _self.greenligth = Ext.emptyFn;
  162. checkPlayer(_self.supportH5Video());
  163. } else if (url == '/work/doHomeWorkNew' || url == '/api/work' || url == '/work/addStudentWorkNewWeb'|| url == '/mooc2/work/dowork') {
  164. console.log("进入答题界面!");
  165. if (!UE) {
  166. var len = ($ || Ext.query || Array)('font:contains(未登录(不可用))', document).length;
  167. setTimeout(len == 1 ? top.location.reload : parent.greenligth, setting.time);
  168. } else if (setting.work) {
  169. setTimeout(relieveLimit, 0);
  170. beforeFind();
  171. }
  172. } else if (url == '/ananas/modules/audio/index.html' && setting.audio) {
  173. if (setting.review) _self.greenligth = Ext.emptyFn;
  174. _self.videojs = hookAudio;
  175. hookAudio.xhr = vjs.xhr;
  176. } else if (url == '/ananas/modules/innerbook/index.html' && setting.book && setting.tip) {
  177. setTimeout(function () {
  178. _self.setting ? _self.top.onchangepage(_self.getFrameAttr('end')) : _self.greenligth();
  179. }, setting.time);
  180. } else if (url.match(/^\/ananas\/modules\/(ppt|pdf)\/index\.html$/) && setting.docs && setting.tip) {
  181. setTimeout(function () {
  182. _self.setting ? _self.finishJob() : _self.greenligth();
  183. }, setting.time);
  184. frameElement.setAttribute('download', 1);
  185. } else if (url == '/knowledge/cards') {
  186. $ && checkToNext();
  187. } else if (url.match(/^\/(course|zt)\/\d+\.html$/)) {
  188. setTimeout(function () {
  189. +setting.read && _self.sendLogs && $('.course_section:eq(0) .chapterText').click();
  190. }, setting.time);
  191. } else if (url == '/ztnodedetailcontroller/visitnodedetail') {
  192. setting.read *= 60 / $('.course_section').length;
  193. setting.read && _self.sendLogs && autoRead();
  194. } else if (url == '/mycourse/studentcourse') {
  195. var gv = location.search.match(/d=\d+&/g);
  196. setting.total && $('<a>', {
  197. href: '/moocAnalysis/chapterStatisticByUser?classI' + gv[1] + 'courseI' + gv[0] + 'userId=' + _self.getCookie('_uid') + '&ut=s',
  198. target: '_blank',
  199. title: '点击查看章节统计',
  200. style: 'margin: 0 25px;',
  201. html: '本课程共' + $('.icon').length + '节,剩余' + $('em:not(.openlock)').length + '节未完成'
  202. }).appendTo('.zt_logo').parent().width('auto');
  203. } else if (url.match(/^\/visit\/(courses|interaction)$/)) {
  204. setting.face && $('.zmodel').on('click', '[onclick^=openFaceTip]', DisplayURL);
  205. } else if (location.host.match(/^passport2/)) {
  206. setting.username && getSchoolId();
  207. } else if (location.hostname == 'i.mooc.chaoxing.com') {
  208. _self.layui.use('layer', function () {
  209. this.layer.open({ content: '拖动进度条、倍速播放、秒过会导致不良记录!题库在慢慢补充,搜不到的题目系统会在次日进行自动补充', title: '超星网课助手提示', btn: '我已知悉', offset: 't', closeBtn: 0 });
  210. });
  211. } else if (url == '/widget/pcvote/goStudentVotePage') {
  212. $(':checked').click();
  213. $('.StudentTimu').each(function (index) {
  214. var ans = _self.questionlist[index].answer;
  215. $(':radio, :checkbox', this).each(function (num) {
  216. ans[num].isanswer && this.click();
  217. });
  218. $(':text', this).val(function (num) {
  219. return $(ans[num].content).text().trim();
  220. });
  221. });
  222. } else if (url == '/work/selectWorkQuestionYiPiYue') {
  223. submitAnswer(getIframe().parent(), $.extend(true, [], parent._data));
  224. }
  225.  
  226. function jobSort($) {
  227. var fn = $.fn ? [getIframe(1), 'length'] : [self, 'dom'],
  228. sel = setting.job.join(', :not(.ans-job-finished) > .ans-job-icon' + setting.normal + ' ~ ');
  229. if ($(sel, fn[0].parent.document)[0] == fn[0].frameElement) return true;
  230. if (!getIframe()[fn[1]] || getIframe().parent().is('.ans-job-finished')) return null;
  231. setInterval(function () {
  232. $(sel, fn[0].parent.document)[0] == fn[0].frameElement && fn[0].location.reload();
  233. }, setting.time);
  234. }
  235.  
  236. function hookVideo() {
  237. _self.alert = console.log;
  238. var config = arguments[1],
  239. line = Ext.Array.filter(Ext.Array.map(config.playlines, function (value, index) {
  240. return value.label == setting.line && index;
  241. }), function (value) {
  242. return Ext.isNumber(value);
  243. })[0] || 0,
  244. http = Ext.Array.filter(config.sources, function (value) {
  245. return value.label == setting.http;
  246. })[0];
  247. config.playlines.unshift(config.playlines[line]);
  248. config.playlines.splice(line + 1, 1);
  249. config.plugins.videoJsResolutionSwitcher.default = http ? http.res : 360;
  250. config.plugins.studyControl.enableSwitchWindow = 1;
  251. config.plugins.timelineObjects.url = '/richvideo/initdatawithviewer?';
  252. config.plugins.seekBarControl.enableFastForward = 1;
  253. if (!setting.queue) delete config.plugins.studyControl;
  254. // config.preload = setting.tip ? 'auto' : 'none';
  255. var player = vjs.apply(this, arguments),
  256. a = '<a href="https://d0.ananas.chaoxing.com/download/' + _self.config('objectid') + '" target="_blank">',
  257. img = '<img src="https://d0.ananas.chaoxing.com/download/e363b256c0e9bc5bd8266bf99dd6d6bb" style="margin: 6px 0 0 6px;">';
  258. player.volume(Math.round(setting.vol) / 100 || 0);
  259. Ext.get(player.controlBar.addChild('Button').el_).setHTML(a + img + '</a>').dom.title = '下载视频';
  260. player.on('loadstart', function () {
  261. setting.tip && this.play().catch(Ext.emptyFn);
  262. this.playbackRate(setting.rate > 16 || setting.rate < 0.0625 ? 1 : setting.rate);
  263. });
  264. player.one(['loadedmetadata', 'firstplay'], function () {
  265. setting.two = setting.rate === '0' && setting.two < 1;
  266. setting.two && config.plugins.seekBarControl.sendLog(this.children_[0], 'ended', Math.floor(this.cache_.duration));
  267. });
  268. player.on('ended', function () {
  269. Ext.fly(frameElement).parent().addCls('ans-job-finished');
  270. });
  271. return player;
  272. }
  273.  
  274.  
  275. function relieveLimit() {
  276. if (setting.scale) _self.UEDITOR_CONFIG.scaleEnabled = false;
  277. $.each(UE.instants, function () {
  278. var key = this.key;
  279. this.ready(function () {
  280. this.destroy();
  281. UE.getEditor(key);
  282. });
  283. });
  284. }
  285.  
  286.  
  287.  
  288. function findAnswer() {
  289. if (setting.num >= $('.TiMu').length) {
  290. var arr = setting.lose ? ['共有 <font color="red">' + setting.lose + '</font> 道题目待完善(已深色标注)', saveThis] : ['答题已完成', submitThis];
  291. setting.div.children('div:eq(0)').data('html', arr[0]).siblings('button:eq(0)').hide().click();
  292. return setTimeout(arr[1], setting.time);
  293. }
  294. var $TiMu = $('.TiMu').eq(setting.num),
  295. question = filterImg($TiMu.find('.Zy_TItle:eq(0) .clearfix')).replace(/^【.*?】\s*/, '').replace(/\s*(\d+\.\d+分)$/, '').replace(/[(]\s*[)]。$/, '').replace(/(\s*)。$/, '').replace(/[(]\s*[)]$/, '').replace(/(\s*)$/, '').replace(/。$/, ''),
  296. type = $TiMu.find('input[name^=answertype]:eq(0)').val() || '-1';
  297.  
  298. console.log($TiMu);
  299.  
  300. if(question == ""){
  301. question = filterImg($TiMu.find('.mark_name:eq(0) .colorDeep'));
  302. }
  303. console.log($TiMu.find('.mark_name:eq(0) .colorDeep'));
  304.  
  305. GM_xmlhttpRequest({
  306. method: 'POST',
  307. url: 'http://cx.icodef.com/wyn-nb?v=2',
  308. headers: {
  309. 'Content-type': 'application/x-www-form-urlencoded',
  310. 'Authorization': '',
  311. },
  312. data: 'question=' + encodeURIComponent(question) + '&type=' + type + '&id=' + ($('#workLibraryId').val() || $('#oldWorkId').val()),
  313. timeout: setting.time,
  314. onload: function (xhr) {
  315. if (!setting.loop) {
  316. } else if (xhr.status == 200) {
  317. var obj = $.parseJSON(xhr.responseText) || {};
  318. obj.answer = obj.data;
  319. if (obj.code) {
  320. setting.div.children('div:eq(0)').text('正在搜索答案...');
  321. var td = '<td style="border: 1px solid;',
  322. answer = String(obj.answer).replace(/&/g, '&').replace(/<(?!img)/g, '<');
  323. obj.answer = /^http/.test(answer) ? '<img src="' + obj.answer + '">' : obj.answer;
  324. $(
  325. '<tr>' +
  326. td + ' text-align: center;">' + $TiMu.find('.Zy_TItle:eq(0) i').text().trim() + '</td>' +
  327. td + '" title="点击可复制">' + (question.match('<img') ? question : question.replace(/&/g, '&').replace(/</g, '<')) + '</td>' +
  328. td + '" title="点击可复制">' + (/^http/.test(answer) ? obj.answer : '') + answer + '</td>' +
  329. '</tr>'
  330. ).appendTo(setting.div.find('tbody')).css('background-color', fillAnswer($TiMu.find('ul:eq(0)').find('li'), obj, type) ? '' : 'rgba(0, 150, 136, 0.6)');
  331. setting.data[setting.num++] = {
  332. code: obj.code > 0 ? 1 : 0,
  333. question: question,
  334. option: obj.answer,
  335. type: Number(type)
  336. };
  337. } else {
  338. setting.div.children('div:eq(0)').html(obj.answer || setting.over + '服务器繁忙,正在重试...');
  339. }
  340. setting.div.children('span').html(obj.msg || '');
  341. } else if (xhr.status == 403) {
  342. var html = xhr.responseText.indexOf('{') ? '请求过于频繁,请稍后再试' : $.parseJSON(xhr.responseText).data;
  343. setting.div.children('div:eq(0)').data('html', html).siblings('button:eq(0)').click();
  344. } else {
  345. setting.div.children('div:eq(0)').html('题库异常,可能被恶意攻击了...请等待恢复');
  346. }
  347. },
  348. ontimeout: function () {
  349. setting.loop && setting.div.children('div:eq(0)').html(setting.over + '服务器超时,正在重试...');
  350. }
  351. });
  352. }
  353.  
  354. function submitAnswer($job, data) {
  355. $job.removeClass('ans-job-finished');
  356. data = data.length ? $(data) : $('.TiMu').map(function () {
  357. var title = filterImg($('.Zy_TItle .clearfix', this));
  358. return {
  359. question: title.replace(/^【.*?】\s*/, ''),
  360. type: ({ 单选题: 0, 多选题: 1, 填空题: 2, 判断题: 3 })[title.match(/^【(.*?)】|$/)[1]]
  361. };
  362. });
  363. data = $.grep(data.map(function (index) {
  364. var $TiMu = $('.TiMu').eq(index);
  365. if (!($.isPlainObject(this) && this.type < 4 && $TiMu.find('.fr').length)) {
  366. return false;
  367. } else if (this.type == 2) {
  368. var $ans = $TiMu.find('.Py_tk, .Py_answer').eq(0);
  369. if (!$TiMu.find('.cuo').length && this.code) {
  370. return false;
  371. } else if (!$ans.find('.cuo').length) {
  372. this.option = $ans.find('.clearfix').map(function () {
  373. return $(this).text().trim();
  374. }).get().join('#') || '无';
  375. } else if (this.code) {
  376. this.code = -1;
  377. } else {
  378. return false;
  379. }
  380. } else if (this.type == 3) {
  381. var ans = $TiMu.find('.font20:last').text();
  382. if ($TiMu.find('.cuo').length) {
  383. this.option = ({ '√': '错误', '×': '正确' })[ans] || '无';
  384. } else if (!this.code) {
  385. this.option = ({ '√': '正确', '×': '错误' })[ans] || '无';
  386. } else {
  387. return false;
  388. }
  389. } else {
  390. var text = $TiMu.find('.Py_answer > span:eq(0)').text();
  391. if ($TiMu.find('.dui').length && this.code && !/^A?B?C?D?E?F?G?$/.test(this.option)) {
  392. return false;
  393. } else if ($TiMu.find('.dui').length || text.match('正确答案')) {
  394. text = text.match(/[A-G]/gi) || [];
  395. this.option = $.map(text, function (value) {
  396. return filterImg($TiMu.find('.fl:contains(' + value + ') + a'));
  397. }).join('#') || '无';
  398. this.key = text.join('');
  399. } else if (this.code) {
  400. this.code = -1;
  401. } else {
  402. return false;
  403. }
  404. }
  405. return this;
  406. }), function (value) {
  407. return value && value.option != '无';
  408. });
  409. setting.curs = $('script:contains(courseName)', top.document).text().match(/courseName:\'(.+?)\'|$/)[1] || $('h1').text().trim() || '无';
  410. $job.addClass('ans-job-finished');
  411. }
  412.  
  413.  
  414. function beforeFind() {
  415. setting.regl = parent.greenligth || $.noop;
  416. if ($.type(parent._data) == 'array') return setting.regl();
  417. var maximize = $(
  418. '<div style="border: 2px dashed rgb(0, 85, 68); position: fixed; top: 0; right: 0; z-index: 99999; background-color: rgba(70, 196, 38, 0.6); overflow-x: auto;display:none;">◻</div>'
  419. ).appendTo('body').click(function () {
  420. $(setting.div).css("display", "block");
  421. GM_setValue("minimize", "0");
  422. $(maximize).css("display", "none");
  423. });
  424.  
  425. setting.div = $(
  426. '<div style="border: 2px dashed rgb(0, 85, 68); width: 330px; position: fixed; top: 0; right: 0; z-index: 99999; background-color: rgba(70, 196, 38, 0.6); overflow-x: auto;">' +
  427. '<span style="font-size: medium;"></span>' +
  428. '<div style="font-size: medium;width:70%;display: inline-block;">正在搜索答案...</div>' +
  429. '<div style="width:30%;display: inline-block;padding-right: 10px;box-sizing: border-box;text-align: right;"><minimize style="width:20px;font-size:16px;line-height: 12px;font-weight: bold;cursor: context-menu;user-select:none;">一</minimize></div>' +
  430. '<div id="cx-notice" style="border-top: 1px solid #000;border-bottom: 1px solid #000;margin: 4px 0px;overflow: hidden;">' + setting.notice + '</div>' +
  431. '<button style="margin-right: 10px;">暂停答题</button>' +
  432. '<button style="margin-right: 10px;">' + (setting.auto ? '取消本次自动提交' : '开启本次自动提交') + '</button>' +
  433. '<button style="margin-right: 10px;">重新查询</button>' +
  434. '<button>折叠面板</button><br>' +
  435. '<input id="autosubmit" type="checkbox"' + (setting.auto ? ' checked' : '') + '>自动提交</input>' +
  436. '<div style="max-height: 300px; overflow-y: auto;">' +
  437. '<table border="1" style="font-size: 12px;">' +
  438. '<thead>' +
  439. '<tr>' +
  440. '<th style="width: 25px; min-width: 25px;">题号</th>' +
  441. '<th style="width: 60%; min-width: 130px;">题目(点击可复制)</th>' +
  442. '<th style="min-width: 130px;">答案(点击可复制)</th>' +
  443. '</tr>' +
  444. '</thead>' +
  445. '<tfoot style="display: none;">' +
  446. '<tr>' +
  447. '<th colspan="3">答案提示框 已折叠</th>' +
  448. '</tr>' +
  449. '</tfoot>' +
  450. '<tbody>' +
  451. '<tr>' +
  452. '<td colspan="3" style="display: none;"></td>' +
  453. '</tr>' +
  454. '</tbody>' +
  455. '</table>' +
  456. '</div>' +
  457. '</div>'
  458. ).appendTo('body').on('click', 'button, td, input', function () {
  459. var len = $(this).prevAll('button').length;
  460. if (this.nodeName == 'TD') {
  461. $(this).prev().length && GM_setClipboard($(this).text());
  462. } else if (!$(this).siblings().length) {
  463. $(this).parent().text('正在搜索答案...');
  464. setting.num++;
  465. } else if (len === 0) {
  466. if (setting.loop) {
  467. clearInterval(setting.loop);
  468. delete setting.loop;
  469. len = ['已暂停搜索', '继续答题'];
  470. } else {
  471. setting.loop = setInterval(findAnswer, setting.time);
  472. len = ['正在搜索答案...', '暂停答题'];
  473. }
  474. setting.div.children('div:eq(0)').html(function () {
  475. return $(this).data('html') || len[0];
  476. }).removeData('html');
  477. $(this).html(len[1]);
  478. } else if (len == 1) {
  479. setting.auto = !setting.auto;
  480. $(this).html(setting.auto ? '取消本次自动提交' : '开启本次自动提交');
  481. } else if (len == 2) {
  482. parent.location.reload();
  483. } else if (len == 3) {
  484. setting.div.find('tbody, tfoot').toggle();
  485. } else if (this.id == "autosubmit") {
  486. // 题目自动提交配置
  487. console.log(this.checked);
  488. GM_setValue("autosubmit", this.checked);
  489. }
  490. }).on('click', 'minimize', function () {
  491. $(this).parent().parent().css("display", "none");
  492. GM_setValue("minimize", "1");
  493. $(maximize).css("display", "block");
  494. }).find('table, td, th').css('border', '1px solid').end();
  495.  
  496. if (GM_getValue("minimize") == "1") {
  497. $(setting.div).css("display", "none");
  498. $(maximize).css("display", "block");
  499. }
  500.  
  501. setting.lose = setting.num = 0;
  502. setting.data = parent._data = [];
  503. setting.over = '<button style="margin-right: 10px;">跳过此题</button>';
  504. setting.curs = $('script:contains(courseName)', top.document).text().match(/courseName:\'(.+?)\'|$/)[1] || $('h1').text().trim() || '无';
  505. setting.loop = setInterval(findAnswer, setting.time);
  506. var tip = ({ undefined: '任务点排队中', null: '等待切换中' })[setting.tip];
  507. tip && setting.div.children('div:eq(0)').data('html', tip).siblings('button:eq(0)').click();
  508.  
  509. }
  510.  
  511. function fillAnswer($li, obj, type) {
  512. var $input = $li.find(':radio, :checkbox'),
  513. str = String(obj.answer).toCDB() || new Date().toString(),
  514. data = str.split(/#|\x01|\|/),
  515. opt = obj.opt || str,
  516. state = setting.lose;
  517. // $li.find(':radio:checked').prop('checked', false);
  518. obj.code > 0 && $input.each(function (index) {
  519. if (this.value == 'true') {
  520. data.join().match(/(^|,)(正确|是|对|√|T|ri)(,|$)/) && this.click();
  521. } else if (this.value == 'false') {
  522. data.join().match(/(^|,)(错误|否|错|×|F|wr)(,|$)/) && this.click();
  523. } else {
  524. var tip = filterImg($li.eq(index).find('.after')).toCDB() || new Date().toString();
  525. Boolean($.inArray(tip, data) + 1 || (type == '1' && str.indexOf(tip) + 1)) == this.checked || this.click();
  526. }
  527. }).each(function () {
  528. if (!/^A?B?C?D?E?F?G?$/.test(opt)) return false;
  529. Boolean(opt.match(this.value)) == this.checked || this.click();
  530. });
  531. if (type.match(/^[013]$/)) {
  532. $input.is(':checked') || (setting.none ? ($input[Math.floor(Math.random() * $input.length)] || $()).click() : setting.lose++);
  533. } else if (type.match(/^(2|[4-9]|1[08])$/)) {
  534. data = String(obj.answer).split(/#|\x01|\|/);
  535. str = $li.end().find('textarea').each(function (index) {
  536. index = (obj.code > 0 && data[index]) || '';
  537. if (obj.code > 0) {
  538. UE.getEditor(this.name).setContent(index.trim());
  539. }
  540. }).length;
  541. (obj.code > 0 && data.length == str) || setting.none || setting.lose++;
  542. } else {
  543. setting.none || setting.lose++;
  544. }
  545. return state == setting.lose;
  546. }
  547.  
  548.  
  549. function submitThis() {
  550. if (!setting.auto) {
  551. } else if (!$('.Btn_blue_1:visible').length) {
  552. setting.div.children('button:lt(3)').hide().eq(1).click();
  553. return setting.regl();
  554. } else if ($('#confirmSubWin:visible').length) {
  555. var btn = $('#tipContent + * > a').offset() || { top: 0, left: 0 },
  556. mouse = document.createEvent('MouseEvents');
  557. btn = [btn.left + Math.ceil(Math.random() * 46), btn.top + Math.ceil(Math.random() * 26)];
  558. mouse.initMouseEvent('click', true, true, document.defaultView, 0, 0, 0, btn[0], btn[1], false, false, false, false, 0, null);
  559. _self.event = $.extend(true, {}, mouse);
  560. delete _self.event.isTrusted;
  561. _self.form1submit();
  562. } else {
  563. $('.Btn_blue_1')[0].click();
  564. }
  565. setTimeout(submitThis, Math.ceil(setting.time * Math.random()) * 2);
  566. }
  567.  
  568. function toLogin(fid) {
  569. GM_xmlhttpRequest({
  570. method: 'GET',
  571. url: '/api/login?name=' + setting.username + '&pwd=' + setting.password + '&schoolid=' + fid + '&verify=0',
  572. onload: function (xhr) {
  573. var obj = $.parseJSON(xhr.responseText) || {};
  574. obj.result ? location.href = decodeURIComponent($('#ref, #refer_0x001').val()) : alert(obj.errorMsg || 'Error');
  575. }
  576. });
  577. }
  578.  
  579. function filterImg(dom) {
  580. return $(dom).clone().find('img[src]').replaceWith(function () {
  581. return $('<p></p>').text('<img src="' + $(this).attr('src') + '">');
  582. }).end().find('iframe[src]').replaceWith(function () {
  583. return $('<p></p>').text('<iframe src="' + $(this).attr('src') + '"></irame>');
  584. }).end().text().trim();
  585. }
  586.  
  587.  
  588. function getSchoolId() {
  589. var school = /^1\d{10}$/.test(setting.username) ? '' : setting.school;
  590. if (!isNaN(school)) return setTimeout(toLogin, setting.time, school);
  591. if (school == '账号为手机号可以不修改此参数') return alert('请修改school参数');
  592. $.getJSON('/org/searchUnis?filter=' + encodeURI(school) + '&product=44', function (data) {
  593. if (!data.result) return alert('学校查询错误');
  594. var msg = $.grep(data.froms, function (value) {
  595. return value.name == school;
  596. })[0];
  597. msg ? setTimeout(toLogin, setting.time, msg.schoolid) : alert('学校名称不完整');
  598. });
  599. }
  600.  
  601. function checkToNext() {
  602. var $tip = $(setting.job.join(', '), document).prevAll('.ans-job-icon' + setting.normal);
  603. setInterval(function () {
  604. $tip.parent(':not(.ans-job-finished)').length || setting.jump && toNext();
  605. }, setting.time);
  606. }
  607.  
  608. function DisplayURL() {
  609. _self.WAY.box.hide();
  610. var $li = $(this).closest('li');
  611. $.get('/visit/goToCourseByFace', {
  612. courseId: $li.find('input[name=courseId]').val(),
  613. clazzId: $li.find('input[name=classId]').val()
  614. }, function (data) {
  615. $li.find('[onclick^=openFaceTip]').removeAttr('onclick').attr({
  616. target: '_blank',
  617. href: $(data).filter('script:last').text().match(/n\("(.+?)"/)[1]
  618. });
  619. alert('本课程已临时解除面部识别');
  620. }, 'html');
  621. }
  622.  
  623.  
  624. function autoRead() {
  625. $('html, body').animate({
  626. scrollTop: $(document).height() - $(window).height()
  627. }, Math.round(setting.read) * 1E3, function () {
  628. $('.nodeItem.r i').click();
  629. }).one('click', '#top', function (event) {
  630. $(event.delegateTarget).stop();
  631. });
  632. }
  633.  
  634. function saveThis() {
  635. if (!setting.auto) return setTimeout(saveThis, setting.time);
  636. setting.div.children('button:lt(3)').hide().eq(1).click();
  637. _self.alert = console.log;
  638. $('#tempsave').click();
  639. setting.regl();
  640. }
  641. function toNext() {
  642. var $cur = $('#cur' + $('#chapterIdid').val()),
  643. $tip = $('span.currents ~ span'),
  644. sel = setting.review ? 'html' : '.blue';
  645. if (!$cur.has(sel).length && $tip.length) return $tip.eq(0).click();
  646. $tip = $('.roundpointStudent, .roundpoint').parent();
  647. $tip = $tip.slice($tip.index($cur) + 1).not(':has(' + sel + ')');
  648. $tip.not(setting.lock ? ':has(.lock)' : 'html').find('span').eq(0).click();
  649. $tip.length || setting.course && switchCourse();
  650. }
  651. function goCourse(url) {
  652. GM_xmlhttpRequest({
  653. method: 'GET',
  654. url: url,
  655. onload: function (xhr) {
  656. $.globalEval('location.href = "' + $('.articlename a[href]', xhr.responseText).attr('href') + '";');
  657. }
  658. });
  659. }
  660.  
  661.  
  662. function switchCourse() {
  663. GM_xmlhttpRequest({
  664. method: 'GET',
  665. url: '/visit/courses/study?isAjax=true&fileId=0&debug=',
  666. headers: {
  667. 'Referer': location.origin + '/visit/courses',
  668. 'X-Requested-With': 'XMLHttpRequest'
  669. },
  670. onload: function (xhr) {
  671. var list = $('h3 a[target]', xhr.responseText).map(function () {
  672. return $(this).attr('href');
  673. }),
  674. index = list.map(function (index) {
  675. return this.match(top.courseId) && index;
  676. }).filter(function () {
  677. return $.isNumeric(this);
  678. })[0] + 1 || 0;
  679. setting.course = list[index] ? goCourse(list[index]) : 0;
  680. }
  681. });
  682. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址