超星慕课小工具

一个超星慕课刷课工具,火狐,谷歌,油猴支持.全自动任务,视频倍速秒过,作业考试题库,验证码自动打码(੧ᐛ੭挂科模式,启动)

  1. // ==UserScript==
  2. // @name 超星慕课小工具
  3. // @namespace https://github.com/CodFrm/cxmooc-tools
  4. // @version 2.5.8
  5. // @description 一个超星慕课刷课工具,火狐,谷歌,油猴支持.全自动任务,视频倍速秒过,作业考试题库,验证码自动打码(੧ᐛ੭挂科模式,启动)
  6. // @author CodFrm
  7. // @run-at document-start
  8. // @match *://*/mycourse/studentstudy?*
  9. // @match *://*/ztnodedetailcontroller/visitnodedetail?*
  10. // @match *://*/antispiderShowVerify.ac*
  11. // @match *://*/html/processVerify.ac?*
  12. // @match *://*/exam/test/reVersionPaperMarkContentNew?*
  13. // @match *://*/exam/test/reVersionTestStartNew?*
  14. // @match *://*/work/selectWorkQuestionYiPiYue?*
  15. // @match *://*/work/doHomeWorkNew?*
  16. // @match *://*/ananas/modules/*/index.html?*
  17. // @match *://*/exam/test?*
  18. // @match *://*/course/*.html?*
  19. // @grant GM_xmlhttpRequest
  20. // @grant GM_notification
  21. // @grant unsafeWindow
  22. // @license MIT
  23. // ==/UserScript==
  24.  
  25. let config = {
  26. answer_ignore: false, //忽略题目,勾选此处将不会答题
  27. auto: true, //全自动挂机,无需手动操作,即可自动观看视频等
  28. interval: 1, //时间间隔,当任务点完成后,会等待1分钟然后跳转到下一个任务点
  29. rand_answer: false, //随机答案,没有答案的题目将自动的生成一个答案
  30. video_multiple: 1, //视频播放倍速,视频播放的倍数,建议不要改动,为1即可,这是危险的功能
  31. video_mute: true, //视频静音,视频自动静音播放
  32. video_cdn: "公网1", //锁定视频播放源,为空为记录最后一次选中的源(公网1,公网2等)
  33. super_mode: true, //解锁flash弹幕视频等,详情请看文档
  34. topic_interval: 5,//题目答题间隔,单位为秒
  35. vtoken: "",
  36. };
  37.  
  38. Object.keys(config).forEach(k => {
  39. localStorage[k] = config[k];
  40. });
  41. /******/ (function(modules) { // webpackBootstrap
  42. /******/ // The module cache
  43. /******/ var installedModules = {};
  44. /******/
  45. /******/ // The require function
  46. /******/ function __webpack_require__(moduleId) {
  47. /******/
  48. /******/ // Check if module is in cache
  49. /******/ if(installedModules[moduleId]) {
  50. /******/ return installedModules[moduleId].exports;
  51. /******/ }
  52. /******/ // Create a new module (and put it into the cache)
  53. /******/ var module = installedModules[moduleId] = {
  54. /******/ i: moduleId,
  55. /******/ l: false,
  56. /******/ exports: {}
  57. /******/ };
  58. /******/
  59. /******/ // Execute the module function
  60. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  61. /******/
  62. /******/ // Flag the module as loaded
  63. /******/ module.l = true;
  64. /******/
  65. /******/ // Return the exports of the module
  66. /******/ return module.exports;
  67. /******/ }
  68. /******/
  69. /******/
  70. /******/ // expose the modules object (__webpack_modules__)
  71. /******/ __webpack_require__.m = modules;
  72. /******/
  73. /******/ // expose the module cache
  74. /******/ __webpack_require__.c = installedModules;
  75. /******/
  76. /******/ // define getter function for harmony exports
  77. /******/ __webpack_require__.d = function(exports, name, getter) {
  78. /******/ if(!__webpack_require__.o(exports, name)) {
  79. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  80. /******/ }
  81. /******/ };
  82. /******/
  83. /******/ // define __esModule on exports
  84. /******/ __webpack_require__.r = function(exports) {
  85. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  86. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  87. /******/ }
  88. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  89. /******/ };
  90. /******/
  91. /******/ // create a fake namespace object
  92. /******/ // mode & 1: value is a module id, require it
  93. /******/ // mode & 2: merge all properties of value into the ns
  94. /******/ // mode & 4: return value when already ns object
  95. /******/ // mode & 8|1: behave like require
  96. /******/ __webpack_require__.t = function(value, mode) {
  97. /******/ if(mode & 1) value = __webpack_require__(value);
  98. /******/ if(mode & 8) return value;
  99. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  100. /******/ var ns = Object.create(null);
  101. /******/ __webpack_require__.r(ns);
  102. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  103. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  104. /******/ return ns;
  105. /******/ };
  106. /******/
  107. /******/ // getDefaultExport function for compatibility with non-harmony modules
  108. /******/ __webpack_require__.n = function(module) {
  109. /******/ var getter = module && module.__esModule ?
  110. /******/ function getDefault() { return module['default']; } :
  111. /******/ function getModuleExports() { return module; };
  112. /******/ __webpack_require__.d(getter, 'a', getter);
  113. /******/ return getter;
  114. /******/ };
  115. /******/
  116. /******/ // Object.prototype.hasOwnProperty.call
  117. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  118. /******/
  119. /******/ // __webpack_public_path__
  120. /******/ __webpack_require__.p = "";
  121. /******/
  122. /******/
  123. /******/ // Load entry module and return exports
  124. /******/ return __webpack_require__(__webpack_require__.s = "./src/tampermonkey/cxmooc-pack.ts");
  125. /******/ })
  126. /************************************************************************/
  127. /******/ ({
  128.  
  129. /***/ "./src/config.ts":
  130. /*!***********************!*\
  131. !*** ./src/config.ts ***!
  132. \***********************/
  133. /*! no static exports found */
  134. /***/ (function(module, exports, __webpack_require__) {
  135.  
  136. "use strict";
  137.  
  138. Object.defineProperty(exports, "__esModule", { value: true });
  139. exports.SystemConfig = void 0;
  140. var SystemConfig = /** @class */ (function () {
  141. function SystemConfig() {
  142. }
  143. SystemConfig.version = 2.5;
  144. SystemConfig.url = "https://cx.icodef.com/";
  145. SystemConfig.hotVersion = "2.5.2";
  146. //TODO:优化规则,可以通过ci自动生成匹配规则到tampermonkey和manifest文件中
  147. SystemConfig.match = {
  148. "cx": [
  149. "*://*/mycourse/studentstudy?*",
  150. "*://*/work/doHomeWorkNew?*",
  151. "*://*/work/selectWorkQuestionYiPiYue?*",
  152. "*://*/exam/test/reVersionTestStartNew?*",
  153. "*://*/ztnodedetailcontroller/visitnodedetail?*",
  154. "*://*/antispiderShowVerify.ac*",
  155. "*://*/html/processVerify.ac?*",
  156. "*://*/exam/test/reVersionPaperMarkContentNew?*",
  157. "*://*/ananas/modules/*/index.html?*",
  158. "*://*/exam/test?*",
  159. "*://*/course/*.html?*"
  160. ], "zhs": [
  161. "*://examh5.zhihuishu.com/stuExamWeb.html*",
  162. "*://onlineexamh5new.zhihuishu.com/stuExamWeb.html*",
  163. "*://studyh5.zhihuishu.com/videoStudy.html*",
  164. ], "mooc163": [
  165. "*://www.icourse163.org/learn/*",
  166. "*://www.icourse163.org/spoc/learn/*"
  167. ]
  168. };
  169. SystemConfig.config = {
  170. cx: {
  171. name: "超星",
  172. items: [{
  173. title: "随机答案",
  174. description: "如果题库没有正确的答案会随机选择",
  175. type: "checkbox",
  176. key: "rand_answer",
  177. value: false,
  178. }, {
  179. title: "自动挂机",
  180. description: "进入一个页面就会自动开始挂机,完成一个任务之后会自动进行下一个",
  181. type: "checkbox",
  182. key: "auto",
  183. value: true,
  184. }, {
  185. title: "视频静音",
  186. description: "播放视频时,自动开启静音",
  187. type: "checkbox",
  188. key: "video_mute",
  189. value: true,
  190. }, {
  191. title: "忽略题目",
  192. description: "自动挂机时,忽略掉题目不做,直接跳过",
  193. type: "checkbox",
  194. key: "answer_ignore",
  195. value: false,
  196. }, {
  197. title: "超级模式",
  198. description: "超星平台下,超级模式会自动将flash播放器换成h5播放器",
  199. type: "checkbox",
  200. key: "super_mode",
  201. value: true,
  202. }, {
  203. title: "播放源",
  204. description: "锁定视频播放源,为空为记录最后一次选中的源(公网1,公网2等)",
  205. type: "text",
  206. key: "video_cdn",
  207. value: "默认"
  208. }, {
  209. title: "播放倍速",
  210. description: "视频播放的倍数,1为正常速度(最高16倍,该功能有一定危险)",
  211. type: "text",
  212. key: "video_multiple",
  213. prompt: "这是一个很危险的功能,建议不要进行调整,如果你想调整播放速度请在下方填写yes(智慧树平台播放速度和视频进度无关,最高只能1.5倍速)",
  214. unit: "倍",
  215. value: "1",
  216. }, {
  217. title: "跳转间隔",
  218. description: "视频(题目,任务点)完成后n分钟再继续下一个任务,可以有小数点,例如:0.5=30秒",
  219. type: "text",
  220. key: "interval",
  221. unit: "分",
  222. value: "1",
  223. }, {
  224. title: "做题间隔",
  225. description: "每一道题之间填写答案的时间间隔",
  226. type: "text",
  227. key: "topic_interval",
  228. unit: "秒",
  229. value: "5",
  230. }],
  231. }, zhs: {
  232. name: "智慧树",
  233. items: [{
  234. title: "随机答案",
  235. description: "如果题库没有正确的答案会随机选择",
  236. type: "checkbox",
  237. key: "rand_answer",
  238. value: false,
  239. }, {
  240. title: "自动挂机",
  241. description: "进入一个页面就会自动开始挂机,完成一个任务之后会自动进行下一个",
  242. type: "checkbox",
  243. key: "auto",
  244. value: true,
  245. }, {
  246. title: "视频静音",
  247. description: "播放视频时,自动开启静音",
  248. type: "checkbox",
  249. key: "video_mute",
  250. value: true,
  251. }, {
  252. title: "超级模式",
  253. description: "智慧树平台下,超级模式会让任务完成的倍速成真",
  254. type: "checkbox",
  255. key: "super_mode",
  256. value: true,
  257. }, {
  258. title: "播放倍速",
  259. description: "视频播放的倍数,1为正常速度(最高16倍,该功能有一定危险)",
  260. type: "text",
  261. key: "video_multiple",
  262. prompt: "这是一个很危险的功能,建议不要进行调整,如果你想调整播放速度请在下方填写yes(智慧树平台播放速度和视频进度无关,最高只能1.5倍速)",
  263. unit: "倍",
  264. value: "1",
  265. }, {
  266. title: "跳转间隔",
  267. description: "视频完成后n分钟再继续播放下一个,可以有小数点,例如:0.5=30秒",
  268. type: "text",
  269. key: "interval",
  270. unit: "分",
  271. value: "1",
  272. }, {
  273. title: "做题间隔",
  274. description: "每一道题之间填写答案的时间间隔",
  275. type: "text",
  276. key: "topic_interval",
  277. unit: "秒",
  278. value: "5",
  279. }],
  280. }, mooc163: {
  281. name: "中国大学MOOC",
  282. items: [{
  283. title: "随机答案",
  284. description: "如果题库没有正确的答案会随机选择",
  285. type: "checkbox",
  286. key: "rand_answer",
  287. value: false,
  288. }, {
  289. title: "自动挂机",
  290. description: "进入一个页面就会自动开始挂机,完成一个任务之后会自动进行下一个",
  291. type: "checkbox",
  292. key: "auto",
  293. value: true,
  294. }, {
  295. title: "视频静音",
  296. description: "播放视频时,自动开启静音",
  297. type: "checkbox",
  298. key: "video_mute",
  299. value: true,
  300. }, {
  301. title: "忽略题目",
  302. description: "自动挂机时,忽略掉题目不做,直接跳过",
  303. type: "checkbox",
  304. key: "answer_ignore",
  305. value: false,
  306. }, {
  307. title: "播放倍速",
  308. description: "视频播放的倍数,1为正常速度(最高16倍,该功能有一定危险)",
  309. type: "text",
  310. key: "video_multiple",
  311. prompt: "这是一个很危险的功能,建议不要进行调整,如果你想调整播放速度请在下方填写yes(智慧树平台播放速度和视频进度无关,最高只能1.5倍速)",
  312. unit: "倍",
  313. value: "1",
  314. }, {
  315. title: "跳转间隔",
  316. description: "视频完成后n分钟再继续播放下一个,可以有小数点,例如:0.5=30秒",
  317. type: "text",
  318. key: "interval",
  319. unit: "分",
  320. value: "1",
  321. }, {
  322. title: "做题间隔",
  323. description: "每一道题之间填写答案的时间间隔",
  324. type: "text",
  325. key: "topic_interval",
  326. unit: "秒",
  327. value: "5",
  328. }],
  329. },
  330. };
  331. return SystemConfig;
  332. }());
  333. exports.SystemConfig = SystemConfig;
  334.  
  335.  
  336. /***/ }),
  337.  
  338. /***/ "./src/internal/app/question.ts":
  339. /*!**************************************!*\
  340. !*** ./src/internal/app/question.ts ***!
  341. \**************************************/
  342. /*! no static exports found */
  343. /***/ (function(module, exports, __webpack_require__) {
  344.  
  345. "use strict";
  346.  
  347. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  348. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  349. return new (P || (P = Promise))(function (resolve, reject) {
  350. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  351. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  352. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  353. step((generator = generator.apply(thisArg, _arguments || [])).next());
  354. });
  355. };
  356. var __generator = (this && this.__generator) || function (thisArg, body) {
  357. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  358. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  359. function verb(n) { return function (v) { return step([n, v]); }; }
  360. function step(op) {
  361. if (f) throw new TypeError("Generator is already executing.");
  362. while (_) try {
  363. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  364. if (y = 0, t) op = [op[0] & 2, t.value];
  365. switch (op[0]) {
  366. case 0: case 1: t = op; break;
  367. case 4: _.label++; return { value: op[1], done: false };
  368. case 5: _.label++; y = op[1]; op = [0]; continue;
  369. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  370. default:
  371. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  372. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  373. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  374. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  375. if (t[2]) _.ops.pop();
  376. _.trys.pop(); continue;
  377. }
  378. op = body.call(thisArg, _);
  379. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  380. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  381. }
  382. };
  383. Object.defineProperty(exports, "__esModule", { value: true });
  384. exports.ToolsQuestionBankFacade = exports.ToolsQuestionBank = exports.SwitchTopicType = exports.QuestionStatusString = exports.TopicStatusString = exports.PushAnswer = void 0;
  385. var utils_1 = __webpack_require__(/*! ../utils/utils */ "./src/internal/utils/utils.ts");
  386. var config_1 = __webpack_require__(/*! @App/config */ "./src/config.ts");
  387. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  388. var PushAnswer = /** @class */ (function () {
  389. function PushAnswer() {
  390. }
  391. PushAnswer.prototype.Equal = function (content1, content2) {
  392. return content1 == content2;
  393. };
  394. return PushAnswer;
  395. }());
  396. exports.PushAnswer = PushAnswer;
  397. var topicStatusMap = new Map();
  398. topicStatusMap.set("ok", "搜索成功").set("random", "随机答案").set("no_support_random", "不支持的随机答案类型").set("no_answer", "题库中没有搜索到答案").set("no_match", "题库中没有符合的答案");
  399. var questionStatusMap = new Map();
  400. questionStatusMap.set("success", "搜索成功").set("network", "题库网络错误").set("incomplete", "题库不全").set("processing", "搜索中...");
  401. function TopicStatusString(status) {
  402. return topicStatusMap.get(status) || "未知错误";
  403. }
  404. exports.TopicStatusString = TopicStatusString;
  405. function QuestionStatusString(status) {
  406. return questionStatusMap.get(status) || "未知错误";
  407. }
  408. exports.QuestionStatusString = QuestionStatusString;
  409. function SwitchTopicType(title) {
  410. switch (title) {
  411. case "单选题": {
  412. return 1;
  413. }
  414. case "多选题": {
  415. return 2;
  416. }
  417. case "判断题": {
  418. return 3;
  419. }
  420. case "填空题": {
  421. return 4;
  422. }
  423. default: {
  424. return null;
  425. }
  426. }
  427. }
  428. exports.SwitchTopicType = SwitchTopicType;
  429. // 小工具题库
  430. var ToolsQuestionBank = /** @class */ (function () {
  431. function ToolsQuestionBank(platform, info) {
  432. this.platform = platform;
  433. this.info = info;
  434. }
  435. ToolsQuestionBank.prototype.SetInfo = function (info) {
  436. this.info = info;
  437. };
  438. ToolsQuestionBank.prototype.GetInfo = function () {
  439. return encodeURIComponent(JSON.stringify(this.info));
  440. };
  441. ToolsQuestionBank.prototype.Answer = function (topic, resolve) {
  442. var _this = this;
  443. application_1.Application.App.log.Debug("答案查询", topic);
  444. var num = 20;
  445. var answer = new Array();
  446. var retStatus = "success";
  447. var next = function (index) {
  448. var body = "info=" + _this.GetInfo() + "&";
  449. var t = index;
  450. for (; t < index + num && t < topic.length; t++) {
  451. var val = topic[t];
  452. body += "topic[" + (t - index) + "]=" + encodeURIComponent((val.topic)) + "&type[" + (t - index) + "]=" + val.type + "&";
  453. }
  454. utils_1.HttpUtils.HttpPost(config_1.SystemConfig.url + "v2/answer?platform=" + _this.platform, body, {
  455. headers: {
  456. "Authorization": application_1.Application.App.config.vtoken,
  457. "X-Version": config_1.SystemConfig.version.toString(),
  458. },
  459. json: true,
  460. success: function (result) { return __awaiter(_this, void 0, void 0, function () {
  461. var status, tmpResult, i, val;
  462. return __generator(this, function (_a) {
  463. switch (_a.label) {
  464. case 0:
  465. status = "success";
  466. tmpResult = new Array();
  467. for (i = 0; i < result.length; i++) {
  468. if (result[i].result == undefined || result[i].result.length <= 0) {
  469. tmpResult.push({
  470. index: index + result[i].index,
  471. topic: result[i].topic,
  472. type: -1,
  473. status: "no_answer",
  474. answers: null,
  475. correct: null,
  476. Equal: this.Equal,
  477. });
  478. status = "incomplete";
  479. continue;
  480. }
  481. val = result[i].result[0];
  482. tmpResult.push({
  483. index: index + result[i].index,
  484. topic: val.topic,
  485. type: val.type,
  486. correct: val.correct,
  487. status: "ok",
  488. Equal: this.Equal,
  489. });
  490. }
  491. answer = answer.concat(tmpResult);
  492. if (status != "success") {
  493. retStatus = status;
  494. }
  495. return [4 /*yield*/, resolve({ status: "processing", answer: tmpResult })];
  496. case 1:
  497. _a.sent();
  498. if (t < topic.length) {
  499. next(t);
  500. }
  501. else {
  502. return [2 /*return*/, resolve({ status: retStatus, answer: answer })];
  503. }
  504. return [2 /*return*/];
  505. }
  506. });
  507. }); },
  508. error: function () {
  509. return resolve({ status: "network", answer: answer });
  510. }
  511. });
  512. };
  513. next(0);
  514. };
  515. ToolsQuestionBank.prototype.Push = function (answer) {
  516. var _this = this;
  517. return new Promise(function (resolve) {
  518. application_1.Application.App.log.Debug("采集提交", answer);
  519. utils_1.HttpUtils.HttpPost(config_1.SystemConfig.url + "answer?platform=" + _this.platform, "info=" + _this.GetInfo() + "&data=" + encodeURIComponent(JSON.stringify(answer)), {
  520. headers: {
  521. "Authorization": application_1.Application.App.config.vtoken,
  522. "X-Version": config_1.SystemConfig.version.toString(),
  523. },
  524. json: true,
  525. success: function (result) {
  526. application_1.Application.App.log.Info("答案自动记录成功,成功获得" + result.add_token_num + "个打码数,剩余数量:" + result.token_num);
  527. resolve("success");
  528. },
  529. error: function () {
  530. resolve("network");
  531. }
  532. });
  533. });
  534. };
  535. ToolsQuestionBank.prototype.Equal = function (content1, content2) {
  536. return utils_1.removeHTML(content1) == utils_1.removeHTML(content2);
  537. };
  538. ToolsQuestionBank.prototype.CheckCourse = function (info) {
  539. var _this = this;
  540. return new Promise(function (resolve) {
  541. info = info || [_this.info];
  542. utils_1.HttpUtils.HttpPost(config_1.SystemConfig.url + "v2/check?platform=" + _this.platform, "info=" + encodeURIComponent(JSON.stringify(info)), {
  543. headers: {
  544. "Authorization": application_1.Application.App.config.vtoken,
  545. "X-Version": config_1.SystemConfig.version.toString(),
  546. },
  547. success: function () {
  548. resolve(0);
  549. }, error: function () {
  550. resolve(-1);
  551. }
  552. });
  553. resolve();
  554. });
  555. };
  556. return ToolsQuestionBank;
  557. }());
  558. exports.ToolsQuestionBank = ToolsQuestionBank;
  559. var ToolsQuestionBankFacade = /** @class */ (function () {
  560. function ToolsQuestionBankFacade(platform, info) {
  561. if (typeof platform == "string") {
  562. this.bank = new ToolsQuestionBank(platform, info);
  563. }
  564. else {
  565. this.bank = platform;
  566. }
  567. this.question = new Array();
  568. }
  569. ToolsQuestionBankFacade.prototype.ClearQuestion = function () {
  570. this.question = new Array();
  571. };
  572. ToolsQuestionBankFacade.prototype.AddQuestion = function (q) {
  573. this.question.push(q);
  574. };
  575. ToolsQuestionBankFacade.prototype.Answer = function (callback) {
  576. var _this = this;
  577. var topic = new Array();
  578. this.question.forEach(function (val) {
  579. var type = val.GetType();
  580. if (type == -1) {
  581. return;
  582. }
  583. topic.push({
  584. topic: (val.GetTopic()),
  585. type: type,
  586. });
  587. });
  588. var status = "success";
  589. this.bank.Answer(topic, function (ret) {
  590. return new Promise(function (resolve) { return __awaiter(_this, void 0, void 0, function () {
  591. var t, i, answer, question, tmpStatus;
  592. return __generator(this, function (_a) {
  593. switch (_a.label) {
  594. case 0:
  595. if (ret.status != "processing") {
  596. application_1.Application.App.log.Debug("题库返回", ret);
  597. if (ret.status != "success" || status == "success") {
  598. callback(ret.status);
  599. return [2 /*return*/, resolve()];
  600. }
  601. callback(status);
  602. return [2 /*return*/, resolve()];
  603. }
  604. t = application_1.Application.App.config.topic_interval * 1000;
  605. i = 0;
  606. _a.label = 1;
  607. case 1:
  608. if (!(i < ret.answer.length)) return [3 /*break*/, 11];
  609. answer = ret.answer[i];
  610. question = this.question[answer.index];
  611. tmpStatus = answer.status;
  612. if (!(answer.status == "no_answer")) return [3 /*break*/, 3];
  613. status = this.randAnswer(status, tmpStatus, question);
  614. return [4 /*yield*/, utils_1.Sleep(t)];
  615. case 2:
  616. _a.sent();
  617. return [3 /*break*/, 10];
  618. case 3:
  619. if (!(answer.type != question.GetType())) return [3 /*break*/, 4];
  620. tmpStatus = "no_match";
  621. return [3 /*break*/, 6];
  622. case 4: return [4 /*yield*/, question.Fill(answer)];
  623. case 5:
  624. tmpStatus = _a.sent();
  625. _a.label = 6;
  626. case 6:
  627. if (!(tmpStatus == "no_match")) return [3 /*break*/, 8];
  628. status = this.randAnswer(status, tmpStatus, question);
  629. return [4 /*yield*/, utils_1.Sleep(t)];
  630. case 7:
  631. _a.sent();
  632. return [3 /*break*/, 10];
  633. case 8:
  634. question.SetStatus(tmpStatus);
  635. if (!(i < ret.answer.length - 1)) return [3 /*break*/, 10];
  636. return [4 /*yield*/, utils_1.Sleep(t)];
  637. case 9:
  638. _a.sent();
  639. _a.label = 10;
  640. case 10:
  641. i++;
  642. return [3 /*break*/, 1];
  643. case 11: return [2 /*return*/, resolve()];
  644. }
  645. });
  646. }); });
  647. });
  648. };
  649. ToolsQuestionBankFacade.prototype.randAnswer = function (status, tmpStatus, question) {
  650. if (application_1.Application.App.config.rand_answer) {
  651. tmpStatus = question.Random();
  652. }
  653. else {
  654. status = "incomplete";
  655. }
  656. if (tmpStatus == "no_support_random") {
  657. status = "incomplete";
  658. }
  659. question.SetStatus(tmpStatus);
  660. return status;
  661. };
  662. ToolsQuestionBankFacade.prototype.Push = function (callback) {
  663. var answer = new Array();
  664. this.question.forEach(function (val) {
  665. var correct = val.Correct();
  666. if (correct == null || correct.correct == null || correct.type == -1) {
  667. return;
  668. }
  669. answer.push(correct);
  670. });
  671. this.bank.Push(answer).then(function (ret) {
  672. application_1.Application.App.log.Debug("题库返回", ret);
  673. return callback(ret);
  674. });
  675. };
  676. ToolsQuestionBankFacade.prototype.dealOption = function (options) {
  677. for (var i = 0; i < options.length; i++) {
  678. if (typeof options[i].content == "string") {
  679. options[i].content = (options[i].content);
  680. }
  681. }
  682. return options;
  683. };
  684. ToolsQuestionBankFacade.prototype.CheckCourse = function () {
  685. return this.bank.CheckCourse();
  686. };
  687. return ToolsQuestionBankFacade;
  688. }());
  689. exports.ToolsQuestionBankFacade = ToolsQuestionBankFacade;
  690.  
  691.  
  692. /***/ }),
  693.  
  694. /***/ "./src/internal/app/task.ts":
  695. /*!**********************************!*\
  696. !*** ./src/internal/app/task.ts ***!
  697. \**********************************/
  698. /*! no static exports found */
  699. /***/ (function(module, exports, __webpack_require__) {
  700.  
  701. "use strict";
  702.  
  703. var __extends = (this && this.__extends) || (function () {
  704. var extendStatics = function (d, b) {
  705. extendStatics = Object.setPrototypeOf ||
  706. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  707. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  708. return extendStatics(d, b);
  709. };
  710. return function (d, b) {
  711. extendStatics(d, b);
  712. function __() { this.constructor = d; }
  713. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  714. };
  715. })();
  716. Object.defineProperty(exports, "__esModule", { value: true });
  717. exports.Task = void 0;
  718. var event_1 = __webpack_require__(/*! @App/internal/utils/event */ "./src/internal/utils/event.ts");
  719. var Task = /** @class */ (function (_super) {
  720. __extends(Task, _super);
  721. function Task() {
  722. return _super !== null && _super.apply(this, arguments) || this;
  723. }
  724. // 初始化任务
  725. Task.prototype.Init = function () {
  726. return new Promise(function (resolve) {
  727. return resolve();
  728. });
  729. };
  730. // 提交任务,例如topic的类型,可以在本接口内进行提交操作
  731. Task.prototype.Submit = function () {
  732. return new Promise(function (resolve) {
  733. return resolve();
  734. });
  735. };
  736. // 停止任务
  737. Task.prototype.Stop = function () {
  738. return new Promise(function (resolve) {
  739. return resolve();
  740. });
  741. };
  742. // 任务的上下文(对于某些iframe的可能会用到)
  743. Task.prototype.Context = function () {
  744. return window;
  745. };
  746. return Task;
  747. }(event_1.EventListener));
  748. exports.Task = Task;
  749.  
  750.  
  751. /***/ }),
  752.  
  753. /***/ "./src/internal/app/topic.ts":
  754. /*!***********************************!*\
  755. !*** ./src/internal/app/topic.ts ***!
  756. \***********************************/
  757. /*! no static exports found */
  758. /***/ (function(module, exports, __webpack_require__) {
  759.  
  760. "use strict";
  761.  
  762. Object.defineProperty(exports, "__esModule", { value: true });
  763. exports.Topic = void 0;
  764. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  765. var config_1 = __webpack_require__(/*! @App/config */ "./src/config.ts");
  766. // 题目任务点
  767. var Topic = /** @class */ (function () {
  768. function Topic(content, answer) {
  769. this.answer = answer;
  770. this.context = content;
  771. }
  772. Topic.prototype.SetQueryQuestions = function (queryQuestions) {
  773. this.queryQuestions = queryQuestions;
  774. };
  775. Topic.prototype.addQuestion = function () {
  776. var _this = this;
  777. var questions = this.queryQuestions.QueryQuestions();
  778. this.answer.ClearQuestion();
  779. questions.forEach(function (val) {
  780. _this.answer.AddQuestion(val);
  781. });
  782. };
  783. Topic.prototype.QueryAnswer = function () {
  784. var _this = this;
  785. return new Promise(function (resolve) {
  786. if (_this.lock) {
  787. return resolve("processing");
  788. }
  789. _this.lock = true;
  790. application_1.Application.App.log.Info("题目搜索中...");
  791. _this.addQuestion();
  792. _this.answer.Answer(function (status) {
  793. _this.lock = false;
  794. resolve(status);
  795. if (status == "network") {
  796. return application_1.Application.App.log.Error("题库无法访问,请查看:" + config_1.SystemConfig.url);
  797. }
  798. else if (status == "incomplete") {
  799. return application_1.Application.App.log.Warn("题库答案不全,请手动填写操作");
  800. }
  801. });
  802. });
  803. };
  804. Topic.prototype.CollectAnswer = function () {
  805. var _this = this;
  806. return new Promise(function (resolve) {
  807. application_1.Application.App.log.Debug("收集题目答案", _this.context);
  808. _this.addQuestion();
  809. _this.answer.Push(function (status) {
  810. application_1.Application.App.log.Debug("采集答案返回", status);
  811. resolve();
  812. });
  813. });
  814. };
  815. return Topic;
  816. }());
  817. exports.Topic = Topic;
  818.  
  819.  
  820. /***/ }),
  821.  
  822. /***/ "./src/internal/app/vcode.ts":
  823. /*!***********************************!*\
  824. !*** ./src/internal/app/vcode.ts ***!
  825. \***********************************/
  826. /*! no static exports found */
  827. /***/ (function(module, exports, __webpack_require__) {
  828.  
  829. "use strict";
  830.  
  831. Object.defineProperty(exports, "__esModule", { value: true });
  832. exports.VCode = void 0;
  833. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  834. var config_1 = __webpack_require__(/*! @App/config */ "./src/config.ts");
  835. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  836. var VCode = /** @class */ (function () {
  837. function VCode(listen) {
  838. this.listen = listen;
  839. }
  840. VCode.prototype.Init = function () {
  841. var _this = this;
  842. this.listen.Listen(function (fill) {
  843. application_1.Application.App.log.Info("准备进行打码");
  844. _this.getVcode(fill);
  845. });
  846. };
  847. VCode.prototype.getVcode = function (fill) {
  848. var img = fill.GetImage();
  849. var base64 = "";
  850. if (typeof img == "string") {
  851. base64 = img;
  852. }
  853. else {
  854. base64 = utils_1.getImageBase64(img, 'jpeg');
  855. }
  856. utils_1.HttpUtils.HttpPost(config_1.SystemConfig.url + 'vcode', 'img=' + encodeURIComponent(base64.substr('data:image/jpeg;base64,'.length)), {
  857. headers: {
  858. "Authorization": application_1.Application.App.config.vtoken,
  859. "X-Version": config_1.SystemConfig.version.toString(),
  860. },
  861. json: false,
  862. success: function (ret) {
  863. var json = JSON.parse(ret);
  864. application_1.Application.App.log.Debug(json);
  865. if (json.code == -2) {
  866. fill.Fill("error", json.msg, "");
  867. }
  868. else if (json.code == -1) {
  869. fill.Fill("error", "打码服务器发生错误", "");
  870. }
  871. else if (json.msg) {
  872. fill.Fill("ok", "打码成功", json.msg);
  873. }
  874. else {
  875. fill.Fill("error", "未知错误", "");
  876. }
  877. },
  878. error: function () {
  879. fill.Fill("network", "网络请求失败", "");
  880. }
  881. });
  882. };
  883. return VCode;
  884. }());
  885. exports.VCode = VCode;
  886.  
  887.  
  888. /***/ }),
  889.  
  890. /***/ "./src/internal/application.ts":
  891. /*!*************************************!*\
  892. !*** ./src/internal/application.ts ***!
  893. \*************************************/
  894. /*! no static exports found */
  895. /***/ (function(module, exports, __webpack_require__) {
  896.  
  897. "use strict";
  898.  
  899. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  900. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  901. return new (P || (P = Promise))(function (resolve, reject) {
  902. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  903. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  904. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  905. step((generator = generator.apply(thisArg, _arguments || [])).next());
  906. });
  907. };
  908. var __generator = (this && this.__generator) || function (thisArg, body) {
  909. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  910. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  911. function verb(n) { return function (v) { return step([n, v]); }; }
  912. function step(op) {
  913. if (f) throw new TypeError("Generator is already executing.");
  914. while (_) try {
  915. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  916. if (y = 0, t) op = [op[0] & 2, t.value];
  917. switch (op[0]) {
  918. case 0: case 1: t = op; break;
  919. case 4: _.label++; return { value: op[1], done: false };
  920. case 5: _.label++; y = op[1]; op = [0]; continue;
  921. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  922. default:
  923. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  924. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  925. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  926. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  927. if (t[2]) _.ops.pop();
  928. _.trys.pop(); continue;
  929. }
  930. op = body.call(thisArg, _);
  931. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  932. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  933. }
  934. };
  935. Object.defineProperty(exports, "__esModule", { value: true });
  936. exports.Application = exports.AppName = exports.Content = exports.Frontend = exports.Backend = void 0;
  937. var message_1 = __webpack_require__(/*! ./utils/message */ "./src/internal/utils/message.ts");
  938. var utils_1 = __webpack_require__(/*! ./utils/utils */ "./src/internal/utils/utils.ts");
  939. var config_1 = __webpack_require__(/*! @App/config */ "./src/config.ts");
  940. exports.Backend = "backend";
  941. exports.Frontend = "frontend";
  942. exports.Content = "content";
  943. exports.AppName = "cxmooc-tools";
  944. var Application = /** @class */ (function () {
  945. function Application(runEnv, launcher, component) {
  946. Application.app = this;
  947. Application.runEnv = runEnv;
  948. this.runEnvSwitch(runEnv);
  949. this.launcher = launcher;
  950. this.component = component;
  951. }
  952. Object.defineProperty(Application, "App", {
  953. get: function () {
  954. return Application.app;
  955. },
  956. enumerable: false,
  957. configurable: true
  958. });
  959. Object.defineProperty(Application.prototype, "debug", {
  960. get: function () {
  961. return "development" == "development";
  962. },
  963. enumerable: false,
  964. configurable: true
  965. });
  966. Object.defineProperty(Application.prototype, "prod", {
  967. get: function () {
  968. return "development" == "production";
  969. },
  970. enumerable: false,
  971. configurable: true
  972. });
  973. Object.defineProperty(Application.prototype, "config", {
  974. get: function () {
  975. return this.component.get("config");
  976. },
  977. enumerable: false,
  978. configurable: true
  979. });
  980. Object.defineProperty(Application.prototype, "log", {
  981. get: function () {
  982. return this.component.get("logger");
  983. },
  984. enumerable: false,
  985. configurable: true
  986. });
  987. Application.prototype.run = function () {
  988. this.launcher.start();
  989. };
  990. Object.defineProperty(Application.prototype, "IsFrontend", {
  991. get: function () {
  992. return Application.IsFrontend;
  993. },
  994. enumerable: false,
  995. configurable: true
  996. });
  997. Object.defineProperty(Application.prototype, "IsBackend", {
  998. get: function () {
  999. return Application.IsBackend;
  1000. },
  1001. enumerable: false,
  1002. configurable: true
  1003. });
  1004. Object.defineProperty(Application.prototype, "IsContent", {
  1005. get: function () {
  1006. return Application.IsContent;
  1007. },
  1008. enumerable: false,
  1009. configurable: true
  1010. });
  1011. Application.prototype.runEnvSwitch = function (env) {
  1012. switch (env) {
  1013. case exports.Frontend:
  1014. Application.IsFrontend = true;
  1015. break;
  1016. case exports.Backend:
  1017. Application.IsBackend = true;
  1018. break;
  1019. case exports.Content:
  1020. Application.IsContent = true;
  1021. break;
  1022. }
  1023. ;
  1024. };
  1025. Object.defineProperty(Application.prototype, "Client", {
  1026. get: function () {
  1027. if (Application.IsFrontend) {
  1028. return message_1.NewChromeClientMessage(exports.AppName);
  1029. }
  1030. return message_1.NewExtensionClientMessage(exports.AppName);
  1031. },
  1032. enumerable: false,
  1033. configurable: true
  1034. });
  1035. Application.CheckUpdate = function (callback) {
  1036. if (Application.IsContent) {
  1037. chrome.storage.local.get(["version", "enforce", "hotversion", "url"], function (item) {
  1038. return __awaiter(this, void 0, void 0, function () {
  1039. return __generator(this, function (_a) {
  1040. switch (_a.label) {
  1041. case 0: return [4 /*yield*/, callback((config_1.SystemConfig.version < item.version), item)];
  1042. case 1:
  1043. _a.sent();
  1044. return [2 /*return*/];
  1045. }
  1046. });
  1047. });
  1048. });
  1049. return;
  1050. }
  1051. utils_1.HttpUtils.HttpGet(config_1.SystemConfig.url + "update?ver=" + config_1.SystemConfig.version, {
  1052. json: true,
  1053. success: function (json) {
  1054. return __awaiter(this, void 0, void 0, function () {
  1055. var data;
  1056. return __generator(this, function (_a) {
  1057. switch (_a.label) {
  1058. case 0:
  1059. data = {
  1060. version: json.version,
  1061. url: json.url,
  1062. enforce: json.enforce,
  1063. hotversion: json.hotversion,
  1064. injection: json.injection,
  1065. };
  1066. Application.IsContent && chrome.storage.local.set(data);
  1067. return [4 /*yield*/, callback((config_1.SystemConfig.version < data.version), data)];
  1068. case 1:
  1069. _a.sent();
  1070. return [2 /*return*/];
  1071. }
  1072. });
  1073. });
  1074. }, error: function () {
  1075. return __awaiter(this, void 0, void 0, function () {
  1076. return __generator(this, function (_a) {
  1077. switch (_a.label) {
  1078. case 0: return [4 /*yield*/, callback(false, undefined)];
  1079. case 1:
  1080. _a.sent();
  1081. return [2 /*return*/];
  1082. }
  1083. });
  1084. });
  1085. }
  1086. });
  1087. };
  1088. return Application;
  1089. }());
  1090. exports.Application = Application;
  1091.  
  1092.  
  1093. /***/ }),
  1094.  
  1095. /***/ "./src/internal/utils/config.ts":
  1096. /*!**************************************!*\
  1097. !*** ./src/internal/utils/config.ts ***!
  1098. \**************************************/
  1099. /*! no static exports found */
  1100. /***/ (function(module, exports, __webpack_require__) {
  1101.  
  1102. "use strict";
  1103.  
  1104. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  1105. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  1106. return new (P || (P = Promise))(function (resolve, reject) {
  1107. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  1108. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  1109. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  1110. step((generator = generator.apply(thisArg, _arguments || [])).next());
  1111. });
  1112. };
  1113. var __generator = (this && this.__generator) || function (thisArg, body) {
  1114. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  1115. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  1116. function verb(n) { return function (v) { return step([n, v]); }; }
  1117. function step(op) {
  1118. if (f) throw new TypeError("Generator is already executing.");
  1119. while (_) try {
  1120. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  1121. if (y = 0, t) op = [op[0] & 2, t.value];
  1122. switch (op[0]) {
  1123. case 0: case 1: t = op; break;
  1124. case 4: _.label++; return { value: op[1], done: false };
  1125. case 5: _.label++; y = op[1]; op = [0]; continue;
  1126. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  1127. default:
  1128. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  1129. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  1130. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  1131. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  1132. if (t[2]) _.ops.pop();
  1133. _.trys.pop(); continue;
  1134. }
  1135. op = body.call(thisArg, _);
  1136. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  1137. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  1138. }
  1139. };
  1140. Object.defineProperty(exports, "__esModule", { value: true });
  1141. exports.NewFrontendGetConfig = exports.NewBackendConfig = exports.ChromeConfigItems = void 0;
  1142. var utils_1 = __webpack_require__(/*! ./utils */ "./src/internal/utils/utils.ts");
  1143. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  1144. var config_1 = __webpack_require__(/*! @App/config */ "./src/config.ts");
  1145. // 缓存默认值
  1146. var configDefaultValue = new Map();
  1147. configDefaultValue.set("vtoken", "");
  1148. for (var key in config_1.SystemConfig.config) {
  1149. for (var i = 0; i < config_1.SystemConfig.config[key].items.length; i++) {
  1150. configDefaultValue.set(key + "_" + config_1.SystemConfig.config[key].items[i].key, config_1.SystemConfig.config[key].items[i].value);
  1151. }
  1152. }
  1153. var ChromeConfigItems = /** @class */ (function () {
  1154. function ChromeConfigItems(config) {
  1155. var _this = this;
  1156. this.Namespace = "";
  1157. this.config = config;
  1158. var list = [];
  1159. configDefaultValue.forEach(function (val, key) {
  1160. list.push(key);
  1161. });
  1162. this.config.Watch(list, function (key, val) {
  1163. _this.localCache[key] = val;
  1164. });
  1165. this.localCache = localStorage;
  1166. }
  1167. // 设置配置的命名空间,储存格式为 namepace_configkey
  1168. ChromeConfigItems.prototype.SetNamespace = function (namespace) {
  1169. this.Namespace = namespace + "_";
  1170. };
  1171. ChromeConfigItems.prototype.ConfigList = function () {
  1172. return this.config.ConfigList();
  1173. };
  1174. ChromeConfigItems.prototype.SetNamespaceConfig = function (namespace, key, val) {
  1175. return this.config.SetConfig(namespace + "_" + key, val);
  1176. };
  1177. ChromeConfigItems.prototype.GetNamespaceConfig = function (namespace, key, defaultVal) {
  1178. return this.config.GetConfig(namespace + "_" + key, defaultVal);
  1179. };
  1180. ChromeConfigItems.prototype.GetConfig = function (key, defaultVal) {
  1181. var val = this.config.GetConfig(this.Namespace + key);
  1182. if (val == undefined) {
  1183. return this.config.GetConfig(key, defaultVal);
  1184. }
  1185. return val || defaultVal;
  1186. };
  1187. ChromeConfigItems.prototype.Watch = function (key, callback) {
  1188. this.config.Watch(key, callback);
  1189. };
  1190. Object.defineProperty(ChromeConfigItems.prototype, "super_mode", {
  1191. get: function () {
  1192. return utils_1.toBool(this.GetConfig("super_mode", "true"));
  1193. },
  1194. enumerable: false,
  1195. configurable: true
  1196. });
  1197. Object.defineProperty(ChromeConfigItems.prototype, "vtoken", {
  1198. get: function () {
  1199. return this.GetConfig("vtoken", "");
  1200. },
  1201. enumerable: false,
  1202. configurable: true
  1203. });
  1204. Object.defineProperty(ChromeConfigItems.prototype, "rand_answer", {
  1205. get: function () {
  1206. return utils_1.toBool(this.GetConfig("rand_answer", "false"));
  1207. },
  1208. enumerable: false,
  1209. configurable: true
  1210. });
  1211. Object.defineProperty(ChromeConfigItems.prototype, "auto", {
  1212. get: function () {
  1213. return utils_1.toBool(this.GetConfig("auto", "true"));
  1214. },
  1215. set: function (val) {
  1216. this.SetConfig("auto", utils_1.boolToString(val));
  1217. },
  1218. enumerable: false,
  1219. configurable: true
  1220. });
  1221. Object.defineProperty(ChromeConfigItems.prototype, "video_mute", {
  1222. get: function () {
  1223. return utils_1.toBool(this.GetConfig("video_mute", "true"));
  1224. },
  1225. enumerable: false,
  1226. configurable: true
  1227. });
  1228. Object.defineProperty(ChromeConfigItems.prototype, "answer_ignore", {
  1229. get: function () {
  1230. return utils_1.toBool(this.GetConfig("answer_ignore", "false"));
  1231. },
  1232. enumerable: false,
  1233. configurable: true
  1234. });
  1235. Object.defineProperty(ChromeConfigItems.prototype, "video_cdn", {
  1236. get: function () {
  1237. var val = this.GetConfig("video_cdn");
  1238. if (val == "默认") {
  1239. return "";
  1240. }
  1241. return val;
  1242. },
  1243. enumerable: false,
  1244. configurable: true
  1245. });
  1246. Object.defineProperty(ChromeConfigItems.prototype, "video_multiple", {
  1247. get: function () {
  1248. return parseFloat(this.GetConfig("video_multiple"));
  1249. },
  1250. enumerable: false,
  1251. configurable: true
  1252. });
  1253. Object.defineProperty(ChromeConfigItems.prototype, "interval", {
  1254. get: function () {
  1255. var interval = parseFloat(this.GetConfig("interval", "0.1"));
  1256. interval = interval * 100;
  1257. return Math.floor(utils_1.randNumber(interval - interval / 2, interval + interval / 2)) / 100;
  1258. },
  1259. enumerable: false,
  1260. configurable: true
  1261. });
  1262. ChromeConfigItems.prototype.SetConfig = function (key, val) {
  1263. return this.config.SetConfig(this.Namespace + key, val);
  1264. };
  1265. Object.defineProperty(ChromeConfigItems.prototype, "topic_interval", {
  1266. get: function () {
  1267. return parseInt(this.GetConfig("topic_interval", "5"));
  1268. },
  1269. set: function (val) {
  1270. this.SetConfig("topic_interval", val);
  1271. },
  1272. enumerable: false,
  1273. configurable: true
  1274. });
  1275. return ChromeConfigItems;
  1276. }());
  1277. exports.ChromeConfigItems = ChromeConfigItems;
  1278. // 后台环境中使用
  1279. function NewBackendConfig() {
  1280. var _this = this;
  1281. return new Promise(function (resolve) { return __awaiter(_this, void 0, void 0, function () {
  1282. var ret;
  1283. return __generator(this, function (_a) {
  1284. switch (_a.label) {
  1285. case 0:
  1286. ret = new backendConfig();
  1287. return [4 /*yield*/, ret.updateCache()];
  1288. case 1:
  1289. _a.sent();
  1290. resolve(ret);
  1291. return [2 /*return*/];
  1292. }
  1293. });
  1294. }); });
  1295. }
  1296. exports.NewBackendConfig = NewBackendConfig;
  1297. var configWatch = /** @class */ (function () {
  1298. function configWatch() {
  1299. this.watchCallback = new Map();
  1300. }
  1301. configWatch.prototype.WatchEvent = function (key, val) {
  1302. var list = this.watchCallback.get(key);
  1303. if (list != undefined) {
  1304. list.forEach(function (v) {
  1305. v(key, val);
  1306. });
  1307. }
  1308. list = this.watchCallback.get("*");
  1309. if (list != undefined) {
  1310. list.forEach(function (v) {
  1311. v(key, val);
  1312. });
  1313. }
  1314. };
  1315. configWatch.prototype.Watch = function (key, callback) {
  1316. var _this = this;
  1317. if (typeof key == "string") {
  1318. this.setWatchMap(key, callback);
  1319. return;
  1320. }
  1321. key.forEach(function (val, index) {
  1322. _this.setWatchMap(val, callback);
  1323. });
  1324. };
  1325. configWatch.prototype.setWatchMap = function (key, callback) {
  1326. var list = this.watchCallback.get(key);
  1327. if (list == undefined) {
  1328. list = new Array();
  1329. }
  1330. list.push(callback);
  1331. this.watchCallback.set(key, list);
  1332. };
  1333. return configWatch;
  1334. }());
  1335. var backendConfig = /** @class */ (function () {
  1336. function backendConfig() {
  1337. var _this = this;
  1338. this.watch = new configWatch();
  1339. chrome.runtime.onMessage.addListener(function (request) {
  1340. if (request.type && request.type == "cxconfig") {
  1341. _this.cache[request.key] = request.value;
  1342. _this.watch.WatchEvent(request.key, request.value);
  1343. _this.updateConfigStorage();
  1344. }
  1345. });
  1346. }
  1347. // 更新配置转为json,存入
  1348. backendConfig.prototype.updateConfigStorage = function () {
  1349. var txt = JSON.stringify(this.cache);
  1350. chrome.storage.sync.set({ "config_storage": txt });
  1351. };
  1352. // 更新缓存
  1353. backendConfig.prototype.updateCache = function () {
  1354. var _this = this;
  1355. return new Promise(function (resolve) {
  1356. chrome.storage.sync.get("config_storage", function (items) {
  1357. if (items["config_storage"]) {
  1358. _this.cache = JSON.parse(items["config_storage"]);
  1359. }
  1360. else {
  1361. _this.cache = {};
  1362. }
  1363. configDefaultValue.forEach(function (val, key) {
  1364. if (_this.cache[key] === undefined) {
  1365. _this.cache[key] = val;
  1366. }
  1367. });
  1368. _this.updateConfigStorage();
  1369. resolve(undefined);
  1370. });
  1371. });
  1372. };
  1373. backendConfig.prototype.GetConfig = function (key, defaultVal) {
  1374. if (this.cache == undefined) {
  1375. application_1.Application.App.log.Fatal("缓存失败!!!");
  1376. return "";
  1377. }
  1378. return this.cache[key] || defaultVal;
  1379. };
  1380. backendConfig.prototype.Watch = function (key, callback) {
  1381. return this.watch.Watch(key, callback);
  1382. };
  1383. backendConfig.prototype.SetConfig = function (key, val) {
  1384. var _this = this;
  1385. return new Promise(function (resolve) {
  1386. var info = {};
  1387. info[key] = val;
  1388. //通知前端和后端
  1389. _this.cache[key] = val;
  1390. chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
  1391. chrome.tabs.sendMessage(tabs[0].id, { type: "cxconfig", key: key, value: val });
  1392. });
  1393. chrome.runtime.sendMessage({ type: "cxconfig", key: key, value: val });
  1394. _this.updateConfigStorage();
  1395. resolve(undefined);
  1396. });
  1397. };
  1398. backendConfig.prototype.ConfigList = function () {
  1399. var _this = this;
  1400. return new Promise(function (resolve) { return __awaiter(_this, void 0, void 0, function () {
  1401. return __generator(this, function (_a) {
  1402. switch (_a.label) {
  1403. case 0:
  1404. if (this.cache) {
  1405. return [2 /*return*/, resolve(this.cache)];
  1406. }
  1407. return [4 /*yield*/, this.updateCache()];
  1408. case 1:
  1409. _a.sent();
  1410. resolve(this.cache);
  1411. return [2 /*return*/];
  1412. }
  1413. });
  1414. }); });
  1415. };
  1416. return backendConfig;
  1417. }());
  1418. // 前端环境使用
  1419. function NewFrontendGetConfig() {
  1420. return new frontendGetConfig();
  1421. }
  1422. exports.NewFrontendGetConfig = NewFrontendGetConfig;
  1423. var frontendGetConfig = /** @class */ (function () {
  1424. function frontendGetConfig() {
  1425. var _this = this;
  1426. this.watch = new configWatch();
  1427. this.cache = window.configData || localStorage;
  1428. window.addEventListener('message', function (event) {
  1429. if (event.data.type && event.data.type == "cxconfig") {
  1430. application_1.Application.App.log.Info("配置更新:" + event.data.key + "=" + event.data.value);
  1431. _this.cache[event.data.key] = event.data.value;
  1432. _this.watch.WatchEvent(event.data.key, event.data.value);
  1433. }
  1434. });
  1435. }
  1436. frontendGetConfig.prototype.GetConfig = function (key, defaultVal) {
  1437. if (window.GM_getValue) {
  1438. return window.GM_getValue(key, defaultVal);
  1439. }
  1440. return this.cache[key] || defaultVal;
  1441. };
  1442. frontendGetConfig.prototype.Watch = function (key, callback) {
  1443. return this.watch.Watch(key, callback);
  1444. };
  1445. frontendGetConfig.prototype.SetConfig = function (key, val) {
  1446. return __awaiter(this, void 0, void 0, function () {
  1447. return __generator(this, function (_a) {
  1448. this.cache[key] = val;
  1449. if (window.GM_setValue) {
  1450. return [2 /*return*/, window.GM_setValue(key, val)];
  1451. }
  1452. return [2 /*return*/, application_1.Application.App.Client.Send({
  1453. type: "GM_setValue", details: { key: key, val: val },
  1454. })];
  1455. });
  1456. });
  1457. };
  1458. frontendGetConfig.prototype.ConfigList = function () {
  1459. return this.cache;
  1460. };
  1461. return frontendGetConfig;
  1462. }());
  1463.  
  1464.  
  1465. /***/ }),
  1466.  
  1467. /***/ "./src/internal/utils/event.ts":
  1468. /*!*************************************!*\
  1469. !*** ./src/internal/utils/event.ts ***!
  1470. \*************************************/
  1471. /*! no static exports found */
  1472. /***/ (function(module, exports, __webpack_require__) {
  1473.  
  1474. "use strict";
  1475.  
  1476. Object.defineProperty(exports, "__esModule", { value: true });
  1477. exports.EventListener = void 0;
  1478. var EventListener = /** @class */ (function () {
  1479. function EventListener() {
  1480. this.event = {};
  1481. }
  1482. EventListener.prototype.addEventListener = function (event, callback) {
  1483. if (!this.event[event]) {
  1484. this.event[event] = new Array();
  1485. }
  1486. this.event[event].push({
  1487. callback: callback, param: { once: false },
  1488. });
  1489. };
  1490. EventListener.prototype.addEventListenerOnce = function (event, callback) {
  1491. if (!this.event[event]) {
  1492. this.event[event] = new Array();
  1493. }
  1494. this.event[event].push({
  1495. callback: callback, param: { once: true },
  1496. });
  1497. };
  1498. EventListener.prototype.callEvent = function (event) {
  1499. var _this = this;
  1500. var args = [];
  1501. for (var _i = 1; _i < arguments.length; _i++) {
  1502. args[_i - 1] = arguments[_i];
  1503. }
  1504. if (!this.event[event]) {
  1505. return;
  1506. }
  1507. var del = new Array();
  1508. this.event[event].forEach(function (v, index) {
  1509. v.callback.apply(_this, args);
  1510. if (v.param.once) {
  1511. del.push(index);
  1512. }
  1513. });
  1514. del.forEach(function (v, index) {
  1515. _this.event[event].splice(v - index, 1);
  1516. });
  1517. };
  1518. return EventListener;
  1519. }());
  1520. exports.EventListener = EventListener;
  1521.  
  1522.  
  1523. /***/ }),
  1524.  
  1525. /***/ "./src/internal/utils/hook.ts":
  1526. /*!************************************!*\
  1527. !*** ./src/internal/utils/hook.ts ***!
  1528. \************************************/
  1529. /*! no static exports found */
  1530. /***/ (function(module, exports, __webpack_require__) {
  1531.  
  1532. "use strict";
  1533.  
  1534. Object.defineProperty(exports, "__esModule", { value: true });
  1535. exports.Hook = void 0;
  1536. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  1537. var Hook = /** @class */ (function () {
  1538. function Hook(func, context) {
  1539. this.context = context || window;
  1540. this.func = func;
  1541. }
  1542. Hook.prototype.Middleware = function (call) {
  1543. var name;
  1544. if (typeof this.func == "string") {
  1545. name = this.func;
  1546. }
  1547. else {
  1548. name = this.func.name;
  1549. }
  1550. var old = this.context[name];
  1551. this.context[name] = function () {
  1552. var args = [old];
  1553. for (var _i = 0; _i < arguments.length; _i++) {
  1554. args[_i + 1] = arguments[_i];
  1555. }
  1556. return call.apply(this, args);
  1557. };
  1558. };
  1559. Hook.HookAjaxRespond = function (url, call) {
  1560. var _this = this;
  1561. if (!this.once) {
  1562. this.match_list = new Map();
  1563. var self_1 = this;
  1564. var hookXMLHttpRequest = new Hook("open", application_1.Application.GlobalContext.XMLHttpRequest.prototype);
  1565. hookXMLHttpRequest.Middleware(function (next) {
  1566. var _this = this;
  1567. var args = [];
  1568. for (var _a = 1; _a < arguments.length; _a++) {
  1569. args[_a - 1] = arguments[_a];
  1570. }
  1571. self_1.match_list.forEach(function (val, key) {
  1572. if (args[1].indexOf(key) != -1) {
  1573. Object.defineProperty(_this, "responseText", {
  1574. configurable: true,
  1575. get: function () {
  1576. return val.call(this, args[1], this.response);
  1577. }
  1578. });
  1579. }
  1580. });
  1581. return next.apply(this, args);
  1582. });
  1583. this.once = true;
  1584. }
  1585. if (typeof url == "string") {
  1586. this.match_list.set(url, call);
  1587. }
  1588. else {
  1589. url.forEach(function (v) {
  1590. _this.match_list.set(v, call);
  1591. });
  1592. }
  1593. };
  1594. return Hook;
  1595. }());
  1596. exports.Hook = Hook;
  1597.  
  1598.  
  1599. /***/ }),
  1600.  
  1601. /***/ "./src/internal/utils/log.ts":
  1602. /*!***********************************!*\
  1603. !*** ./src/internal/utils/log.ts ***!
  1604. \***********************************/
  1605. /*! no static exports found */
  1606. /***/ (function(module, exports, __webpack_require__) {
  1607.  
  1608. "use strict";
  1609.  
  1610. var __spreadArrays = (this && this.__spreadArrays) || function () {
  1611. for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
  1612. for (var r = Array(s), k = 0, i = 0; i < il; i++)
  1613. for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
  1614. r[k] = a[j];
  1615. return r;
  1616. };
  1617. Object.defineProperty(exports, "__esModule", { value: true });
  1618. exports.EmptyLog = exports.PageLog = exports.ConsoleLog = void 0;
  1619. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  1620. __webpack_require__(/*! ../../views/common */ "./src/views/common.ts");
  1621. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  1622. // 开发者工具f12处打印日志
  1623. var ConsoleLog = /** @class */ (function () {
  1624. function ConsoleLog() {
  1625. }
  1626. ConsoleLog.prototype.getNowTime = function () {
  1627. var time = new Date();
  1628. return time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds();
  1629. };
  1630. ConsoleLog.prototype.Debug = function () {
  1631. var args = [];
  1632. for (var _i = 0; _i < arguments.length; _i++) {
  1633. args[_i] = arguments[_i];
  1634. }
  1635. application_1.Application.App.debug && console.info.apply(console, __spreadArrays(["[debug", this.getNowTime(), "]"], args));
  1636. return this;
  1637. };
  1638. ConsoleLog.prototype.Info = function () {
  1639. var args = [];
  1640. for (var _i = 0; _i < arguments.length; _i++) {
  1641. args[_i] = arguments[_i];
  1642. }
  1643. application_1.Application.App.debug && console.info.apply(console, __spreadArrays(["[info", this.getNowTime(), "]"], args));
  1644. return this;
  1645. };
  1646. ConsoleLog.prototype.Warn = function () {
  1647. var args = [];
  1648. for (var _i = 0; _i < arguments.length; _i++) {
  1649. args[_i] = arguments[_i];
  1650. }
  1651. console.warn.apply(console, __spreadArrays(["[warn", this.getNowTime(), "]"], args));
  1652. return this;
  1653. };
  1654. ConsoleLog.prototype.Error = function () {
  1655. var args = [];
  1656. for (var _i = 0; _i < arguments.length; _i++) {
  1657. args[_i] = arguments[_i];
  1658. }
  1659. console.error.apply(console, __spreadArrays(["[error", this.getNowTime(), "]"], args));
  1660. return this;
  1661. };
  1662. ConsoleLog.prototype.Fatal = function () {
  1663. var args = [];
  1664. for (var _i = 0; _i < arguments.length; _i++) {
  1665. args[_i] = arguments[_i];
  1666. }
  1667. console.error.apply(console, __spreadArrays(["[fatal", this.getNowTime(), "]"], args));
  1668. return this;
  1669. };
  1670. return ConsoleLog;
  1671. }());
  1672. exports.ConsoleLog = ConsoleLog;
  1673. var PageLog = /** @class */ (function () {
  1674. function PageLog() {
  1675. var _this = this;
  1676. this.el = undefined;
  1677. window.addEventListener("load", function () {
  1678. _this.div = document.createElement("div");
  1679. // 主要布局
  1680. _this.div.innerHTML = "\n <div class=\"head\" id=\"tools-head\"> \n <span>\u5C0F\u5DE5\u5177\u901A\u77E5\u6761</span> \n <label class=\"switch\" style=\"width:90px\">\n <input class=\"checkbox-input\" id=\"checkbox\" type=\"checkbox\" checked=\"checked\">\n <label class=\"checkbox\" for=\"checkbox\"></label>\n <span>\u684C\u9762\u901A\u77E5</span>\n </label>\n <span class=\"close\" style=\"float:right; cursor:pointer; margin-right:5px;\">x</span>\n </div>\n <div class=\"main\">\n <div class=\"tools-notice-content\"></div>\n </div>\n ";
  1681. _this.div.className = "tools-logger-panel";
  1682. document.body.appendChild(_this.div);
  1683. _this.el = _this.div.querySelector(".tools-notice-content");
  1684. _this.div.querySelector(".close").onclick = function () {
  1685. _this.el = undefined;
  1686. _this.div.remove();
  1687. };
  1688. var checkbox = _this.div.querySelector("#checkbox");
  1689. checkbox.checked = (application_1.Application.App.config.GetConfig("is_notify") || "true") == "true";
  1690. _this.is_notify = checkbox.checked;
  1691. if (!checkbox.checked) {
  1692. checkbox.removeAttribute("checked");
  1693. }
  1694. var self = _this;
  1695. checkbox.addEventListener("change", function () {
  1696. self.is_notify = this.checked;
  1697. application_1.Application.App.config.SetConfig("is_notify", this.checked.toString());
  1698. });
  1699. setTimeout(function () {
  1700. application_1.Application.CheckUpdate(function (isnew, data) {
  1701. if (data == undefined) {
  1702. _this.Info("检查更新失败.");
  1703. return;
  1704. }
  1705. var html = "";
  1706. if (isnew) {
  1707. html += "<span>[有新版本]</span>";
  1708. }
  1709. html += data.injection;
  1710. _this.Info(html);
  1711. });
  1712. }, 1000);
  1713. //支持拖拽移动
  1714. function getProperty(ele, prop) {
  1715. return parseInt(window.getComputedStyle(ele)[prop]);
  1716. }
  1717. var windowWidth = window.innerWidth;
  1718. var windowHeight = window.innerHeight;
  1719. var containerWidth = getProperty(_this.div, "width");
  1720. var containerHeight = getProperty(_this.div, "height");
  1721. var x = parseInt(application_1.Application.App.config.GetConfig("notify_tools_x", "60px").replace('px', ''));
  1722. if (x < 0) {
  1723. x = 0;
  1724. }
  1725. if (x >= windowWidth - containerWidth)
  1726. x = windowWidth - containerWidth;
  1727. _this.div.style.left = x + "px";
  1728. var y = parseInt(application_1.Application.App.config.GetConfig("notify_tools_y", "40px").replace('px', ''));
  1729. if (y < 0) {
  1730. y = 0;
  1731. }
  1732. if (y >= windowHeight - containerHeight)
  1733. y = windowHeight - containerHeight;
  1734. _this.div.style.top = y + "px";
  1735. var head = _this.div.querySelector("#tools-head");
  1736. head.onmousedown = function (downEvent) {
  1737. var relaX = downEvent.clientX - _this.div.offsetLeft;
  1738. var relaY = downEvent.clientY - _this.div.offsetTop;
  1739. var windowWidth = window.innerWidth;
  1740. var windowHeight = window.innerHeight;
  1741. var containerWidth = getProperty(_this.div, "width");
  1742. var containerHeight = getProperty(_this.div, "height");
  1743. document.onmousemove = function (moveEvent) {
  1744. var targetX = moveEvent.clientX - relaX;
  1745. var targetY = moveEvent.clientY - relaY;
  1746. if (targetX <= 0)
  1747. targetX = 0;
  1748. if (targetY <= 0)
  1749. targetY = 0;
  1750. if (targetX >= windowWidth - containerWidth)
  1751. targetX = windowWidth - containerWidth;
  1752. if (targetY >= windowHeight - containerHeight)
  1753. targetY = windowHeight - containerHeight;
  1754. _this.div.style.left = targetX + "px";
  1755. _this.div.style.top = targetY + "px";
  1756. };
  1757. document.onmouseup = function () {
  1758. document.onmouseup = null;
  1759. document.onmousemove = null;
  1760. application_1.Application.App.config.SetConfig("notify_tools_x", _this.div.style.left);
  1761. application_1.Application.App.config.SetConfig("notify_tools_y", _this.div.style.top);
  1762. };
  1763. };
  1764. });
  1765. }
  1766. PageLog.prototype.getNowTime = function () {
  1767. var time = new Date();
  1768. return time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds();
  1769. };
  1770. PageLog.prototype.first = function (text, color, background) {
  1771. var new_log = document.createElement("div");
  1772. new_log.innerHTML =
  1773. "\n <div class=\"log\" style=\"border-color: " +
  1774. background +
  1775. "; background-color: " +
  1776. background +
  1777. ";\">\n <p><span style=\"color:" +
  1778. color +
  1779. ";\">" +
  1780. text +
  1781. "</span></p>\n </div>\n ";
  1782. //插入第一个元素前
  1783. var first = document
  1784. .getElementsByClassName("tools-notice-content")[0]
  1785. .getElementsByTagName("div");
  1786. document.querySelector(".tools-notice-content").insertBefore(new_log, first[0]);
  1787. };
  1788. PageLog.prototype.toStr = function () {
  1789. var args = [];
  1790. for (var _i = 0; _i < arguments.length; _i++) {
  1791. args[_i] = arguments[_i];
  1792. }
  1793. var text = "";
  1794. for (var i = 0; i < args.length; i++) {
  1795. if (typeof args[i] == "object") {
  1796. text += args[i].toString() + "\n";
  1797. }
  1798. else {
  1799. text += args[i] + "\n";
  1800. }
  1801. }
  1802. return text.substring(0, text.length - 1);
  1803. };
  1804. PageLog.prototype.Debug = function () {
  1805. var args = [];
  1806. for (var _i = 0; _i < arguments.length; _i++) {
  1807. args[_i] = arguments[_i];
  1808. }
  1809. console.info.apply(console, __spreadArrays(["[debug", this.getNowTime(), "]"], args));
  1810. return this;
  1811. };
  1812. PageLog.prototype.Info = function () {
  1813. var args = [];
  1814. for (var _i = 0; _i < arguments.length; _i++) {
  1815. args[_i] = arguments[_i];
  1816. }
  1817. var text = this.toStr.apply(this, args);
  1818. if (this.el) {
  1819. this.first(text, "#409EFF", "rgba(121, 187, 255, 0.2)");
  1820. }
  1821. else {
  1822. console.info.apply(console, __spreadArrays(["[info", this.getNowTime(), "]"], args));
  1823. }
  1824. return this;
  1825. };
  1826. PageLog.prototype.Warn = function () {
  1827. var args = [];
  1828. for (var _i = 0; _i < arguments.length; _i++) {
  1829. args[_i] = arguments[_i];
  1830. }
  1831. var text = this.toStr.apply(this, args);
  1832. if (this.el) {
  1833. this.first(text, "#5C3C00", "rgba(250, 236, 216, 0.4)");
  1834. }
  1835. console.warn.apply(console, __spreadArrays(["[warn", this.getNowTime(), "]"], args));
  1836. if (document.hidden && localStorage["is_notify"] == "true") {
  1837. utils_1.Noifications({
  1838. title: "网课小工具",
  1839. text: text + "\n3秒后自动关闭",
  1840. timeout: 3000,
  1841. });
  1842. }
  1843. return this;
  1844. };
  1845. PageLog.prototype.Error = function () {
  1846. var args = [];
  1847. for (var _i = 0; _i < arguments.length; _i++) {
  1848. args[_i] = arguments[_i];
  1849. }
  1850. var text = this.toStr.apply(this, args);
  1851. if (this.el) {
  1852. this.first(text, "#FFF0F0", "rgba(253, 226, 226, 0.5)");
  1853. }
  1854. console.error.apply(console, __spreadArrays(["[error", this.getNowTime(), "]"], args));
  1855. if (localStorage["is_notify"] == "true") {
  1856. utils_1.Noifications({
  1857. title: "网课小工具",
  1858. text: text,
  1859. });
  1860. }
  1861. return this;
  1862. };
  1863. PageLog.prototype.Fatal = function () {
  1864. var args = [];
  1865. for (var _i = 0; _i < arguments.length; _i++) {
  1866. args[_i] = arguments[_i];
  1867. }
  1868. var text = this.toStr.apply(this, args);
  1869. if (this.el) {
  1870. this.first(text, "#ff0000", "rgba(253, 226, 226, 0.5)");
  1871. }
  1872. console.error.apply(console, __spreadArrays(["[fatal", this.getNowTime(), "]"], args));
  1873. utils_1.Noifications({
  1874. title: "网课小工具",
  1875. text: text,
  1876. });
  1877. return this;
  1878. };
  1879. return PageLog;
  1880. }());
  1881. exports.PageLog = PageLog;
  1882. var EmptyLog = /** @class */ (function () {
  1883. function EmptyLog() {
  1884. }
  1885. EmptyLog.prototype.Debug = function () {
  1886. var args = [];
  1887. for (var _i = 0; _i < arguments.length; _i++) {
  1888. args[_i] = arguments[_i];
  1889. }
  1890. return this;
  1891. };
  1892. EmptyLog.prototype.Info = function () {
  1893. var args = [];
  1894. for (var _i = 0; _i < arguments.length; _i++) {
  1895. args[_i] = arguments[_i];
  1896. }
  1897. return this;
  1898. };
  1899. EmptyLog.prototype.Warn = function () {
  1900. var args = [];
  1901. for (var _i = 0; _i < arguments.length; _i++) {
  1902. args[_i] = arguments[_i];
  1903. }
  1904. return this;
  1905. };
  1906. EmptyLog.prototype.Error = function () {
  1907. var args = [];
  1908. for (var _i = 0; _i < arguments.length; _i++) {
  1909. args[_i] = arguments[_i];
  1910. }
  1911. return this;
  1912. };
  1913. EmptyLog.prototype.Fatal = function () {
  1914. var args = [];
  1915. for (var _i = 0; _i < arguments.length; _i++) {
  1916. args[_i] = arguments[_i];
  1917. }
  1918. return this;
  1919. };
  1920. return EmptyLog;
  1921. }());
  1922. exports.EmptyLog = EmptyLog;
  1923.  
  1924.  
  1925. /***/ }),
  1926.  
  1927. /***/ "./src/internal/utils/message.ts":
  1928. /*!***************************************!*\
  1929. !*** ./src/internal/utils/message.ts ***!
  1930. \***************************************/
  1931. /*! no static exports found */
  1932. /***/ (function(module, exports, __webpack_require__) {
  1933.  
  1934. "use strict";
  1935.  
  1936. var __extends = (this && this.__extends) || (function () {
  1937. var extendStatics = function (d, b) {
  1938. extendStatics = Object.setPrototypeOf ||
  1939. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  1940. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  1941. return extendStatics(d, b);
  1942. };
  1943. return function (d, b) {
  1944. extendStatics(d, b);
  1945. function __() { this.constructor = d; }
  1946. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  1947. };
  1948. })();
  1949. Object.defineProperty(exports, "__esModule", { value: true });
  1950. exports.NewChromeClientMessage = exports.NewChromeServerMessage = exports.NewExtensionClientMessage = exports.NewExtensionServerMessage = void 0;
  1951. function NewExtensionServerMessage(port) {
  1952. return new extensionServerMessage(port);
  1953. }
  1954. exports.NewExtensionServerMessage = NewExtensionServerMessage;
  1955. var extensionServerMessage = /** @class */ (function () {
  1956. function extensionServerMessage(port) {
  1957. this.port = port;
  1958. this.recv();
  1959. }
  1960. extensionServerMessage.prototype.recv = function () {
  1961. var _this = this;
  1962. //监听消息
  1963. chrome.runtime.onConnect.addListener(function (port) {
  1964. if (port.name != _this.port) {
  1965. return;
  1966. }
  1967. port.onMessage.addListener(function (request) {
  1968. _this.acceptCallback(new extensionClientMessage(port), request);
  1969. });
  1970. });
  1971. };
  1972. extensionServerMessage.prototype.Accept = function (callback) {
  1973. this.acceptCallback = callback;
  1974. };
  1975. return extensionServerMessage;
  1976. }());
  1977. var msg = /** @class */ (function () {
  1978. function msg(tag) {
  1979. this.tag = tag;
  1980. }
  1981. msg.prototype.Recv = function (callback) {
  1982. this.recvCallback = callback;
  1983. };
  1984. return msg;
  1985. }());
  1986. // 扩展中使用
  1987. function NewExtensionClientMessage(tag) {
  1988. return new extensionClientMessage(tag);
  1989. }
  1990. exports.NewExtensionClientMessage = NewExtensionClientMessage;
  1991. var extensionClientMessage = /** @class */ (function (_super) {
  1992. __extends(extensionClientMessage, _super);
  1993. function extensionClientMessage(param) {
  1994. var _this = this;
  1995. if (typeof param === 'string') {
  1996. _this = _super.call(this, param) || this;
  1997. _this.connect();
  1998. }
  1999. else {
  2000. _this.conn = param;
  2001. }
  2002. _this.recv();
  2003. return _this;
  2004. }
  2005. extensionClientMessage.prototype.connect = function () {
  2006. this.conn = chrome.runtime.connect({ name: this.tag });
  2007. };
  2008. extensionClientMessage.prototype.recv = function () {
  2009. var _this = this;
  2010. this.conn.onMessage.addListener(function (response) {
  2011. _this.recvCallback(response);
  2012. });
  2013. };
  2014. extensionClientMessage.prototype.Send = function (msg) {
  2015. this.conn.postMessage(msg);
  2016. };
  2017. return extensionClientMessage;
  2018. }(msg));
  2019. // 浏览器中使用
  2020. function NewChromeServerMessage(tag) {
  2021. return new chromeServerMessage(tag);
  2022. }
  2023. exports.NewChromeServerMessage = NewChromeServerMessage;
  2024. var chromeServerMessage = /** @class */ (function () {
  2025. function chromeServerMessage(tag) {
  2026. this.tag = tag;
  2027. this.recv();
  2028. }
  2029. chromeServerMessage.prototype.recv = function () {
  2030. var _this = this;
  2031. window.addEventListener('message', function (event) {
  2032. if (event.data.tag == _this.tag && event.data.conn_tag && event.data.source == "client") {
  2033. _this.acceptCallback(new chromeClientMessage(_this.tag, event.data.conn_tag), event.data.msg);
  2034. }
  2035. });
  2036. };
  2037. chromeServerMessage.prototype.Accept = function (callback) {
  2038. this.acceptCallback = callback;
  2039. };
  2040. return chromeServerMessage;
  2041. }());
  2042. function NewChromeClientMessage(tag) {
  2043. return new chromeClientMessage(tag);
  2044. }
  2045. exports.NewChromeClientMessage = NewChromeClientMessage;
  2046. var chromeClientMessage = /** @class */ (function (_super) {
  2047. __extends(chromeClientMessage, _super);
  2048. function chromeClientMessage(tag, conn) {
  2049. var _this = this;
  2050. if (conn !== undefined) {
  2051. _this = _super.call(this, tag) || this;
  2052. _this.connTag = conn;
  2053. _this.source = "server";
  2054. }
  2055. else {
  2056. _this = _super.call(this, tag) || this;
  2057. _this.connect();
  2058. _this.source = "client";
  2059. }
  2060. return _this;
  2061. }
  2062. chromeClientMessage.prototype.connect = function () {
  2063. var _this = this;
  2064. this.connTag = Math.random();
  2065. window.addEventListener('message', function (event) {
  2066. if (event.data.tag == _this.tag && event.data.conn_tag == _this.connTag && event.data.source == "server") {
  2067. _this.recvCallback && _this.recvCallback(event.data.msg);
  2068. }
  2069. });
  2070. };
  2071. chromeClientMessage.prototype.Send = function (msg) {
  2072. window.postMessage({ tag: this.tag, conn_tag: this.connTag, msg: msg, source: this.source }, '*');
  2073. };
  2074. return chromeClientMessage;
  2075. }(msg));
  2076.  
  2077.  
  2078. /***/ }),
  2079.  
  2080. /***/ "./src/internal/utils/utils.ts":
  2081. /*!*************************************!*\
  2082. !*** ./src/internal/utils/utils.ts ***!
  2083. \*************************************/
  2084. /*! no static exports found */
  2085. /***/ (function(module, exports, __webpack_require__) {
  2086.  
  2087. "use strict";
  2088.  
  2089. Object.defineProperty(exports, "__esModule", { value: true });
  2090. exports.Sleep = exports.UntrustedClick = exports.boolToString = exports.toBool = exports.Noifications = exports.isPhone = exports.getImageBase64 = exports.protocolPrompt = exports.dealHotVersion = exports.substrex = exports.removeHTML = exports.removeHTMLTag = exports.post = exports.get = exports.createBtn = exports.randNumber = exports.RemoveInjected = exports.syncSetChromeStorageLocal = exports.syncGetChromeStorageLocal = exports.InjectedBySrc = exports.Injected = exports.HttpUtils = void 0;
  2091. var application_1 = __webpack_require__(/*! ../application */ "./src/internal/application.ts");
  2092. var HttpUtils = /** @class */ (function () {
  2093. function HttpUtils() {
  2094. }
  2095. HttpUtils.Request = function (info) {
  2096. if (application_1.Application.App.IsBackend) {
  2097. fetch(info.url, info).then(function (body) {
  2098. if (info.json) {
  2099. return body.json();
  2100. }
  2101. else {
  2102. return body.text();
  2103. }
  2104. }).then(function (body) {
  2105. info.success && info.success(body);
  2106. }).catch(function () {
  2107. info.error && info.error();
  2108. });
  2109. return;
  2110. }
  2111. HttpUtils.crossDomainRequest(info);
  2112. };
  2113. HttpUtils.errorCode = function (ret) {
  2114. if (!ret.code) {
  2115. return false;
  2116. }
  2117. switch (ret.code) {
  2118. case -1: {
  2119. application_1.Application.App.log.Info(ret.msg);
  2120. break;
  2121. }
  2122. case -2: {
  2123. application_1.Application.App.log.Warn(ret.msg);
  2124. break;
  2125. }
  2126. case 1: {
  2127. application_1.Application.App.log.Info(ret.msg);
  2128. return false;
  2129. }
  2130. default: {
  2131. return false;
  2132. }
  2133. }
  2134. return true;
  2135. };
  2136. HttpUtils.crossDomainRequest = function (info) {
  2137. if (window.hasOwnProperty('GM_xmlhttpRequest')) {
  2138. //兼容油猴
  2139. info.data = info.body;
  2140. info.onreadystatechange = function (response) {
  2141. if (response.readyState == 4) {
  2142. if (response.status == 200) {
  2143. if (info.json) {
  2144. var ret = JSON.parse(response.responseText);
  2145. if (HttpUtils.errorCode(ret)) {
  2146. info.error && info.error();
  2147. return;
  2148. }
  2149. info.success && info.success(ret);
  2150. }
  2151. else {
  2152. info.success && info.success(response.responseText);
  2153. }
  2154. }
  2155. else {
  2156. info.error && info.error();
  2157. }
  2158. }
  2159. };
  2160. window.GM_xmlhttpRequest(info);
  2161. }
  2162. else {
  2163. var client = application_1.Application.App.Client;
  2164. client.Recv(function (data) {
  2165. if (data.code == 0) {
  2166. if (info.json) {
  2167. if (HttpUtils.errorCode(data.body)) {
  2168. info.error && info.error();
  2169. return;
  2170. }
  2171. }
  2172. info.success && info.success(data.body);
  2173. }
  2174. else {
  2175. info.error && info.error();
  2176. }
  2177. });
  2178. client.Send({
  2179. type: "GM_xmlhttpRequest", info: {
  2180. url: info.url,
  2181. method: info.method,
  2182. json: info.json,
  2183. body: info.body,
  2184. headers: info.headers,
  2185. }
  2186. });
  2187. }
  2188. };
  2189. HttpUtils.HttpGet = function (url, info) {
  2190. info.url = url;
  2191. this.Request(info);
  2192. };
  2193. HttpUtils.HttpPost = function (url, body, info) {
  2194. info.url = url;
  2195. info.body = body;
  2196. if (!info.headers) {
  2197. info.headers = {};
  2198. }
  2199. if (!info.headers["Content-Type"]) {
  2200. info.headers["Content-Type"] = "application/x-www-form-urlencoded";
  2201. }
  2202. info.method = "POST";
  2203. this.Request(info);
  2204. };
  2205. HttpUtils.SendRequest = function (client, data) {
  2206. if (!data.info) {
  2207. return;
  2208. }
  2209. var info = data.info;
  2210. if (application_1.Application.App.IsBackend) {
  2211. info.success = function (body) {
  2212. client.Send({ body: body, code: 0 });
  2213. };
  2214. info.error = function () {
  2215. client.Send({ code: -1 });
  2216. };
  2217. HttpUtils.Request(info);
  2218. }
  2219. else {
  2220. // content 做转发
  2221. var extClient = application_1.Application.App.Client;
  2222. extClient.Send({ type: "GM_xmlhttpRequest", info: info });
  2223. extClient.Recv(function (data) {
  2224. client.Send(data);
  2225. });
  2226. }
  2227. };
  2228. return HttpUtils;
  2229. }());
  2230. exports.HttpUtils = HttpUtils;
  2231. /**
  2232. * 通过源码注入js资源
  2233. * @param doc
  2234. * @param url
  2235. * @constructor
  2236. */
  2237. function Injected(doc, source) {
  2238. var temp = doc.createElement('script');
  2239. temp.setAttribute('type', 'text/javascript');
  2240. temp.innerHTML = source;
  2241. temp.className = "injected-js";
  2242. doc.documentElement.appendChild(temp);
  2243. return temp;
  2244. }
  2245. exports.Injected = Injected;
  2246. /**
  2247. * 通过源码注入js资源
  2248. * @param doc
  2249. * @param url
  2250. * @constructor
  2251. */
  2252. function InjectedBySrc(doc, source) {
  2253. var temp = doc.createElement('script');
  2254. temp.setAttribute('type', 'text/javascript');
  2255. temp.src = source;
  2256. temp.className = "injected-js";
  2257. doc.documentElement.appendChild(temp);
  2258. return temp;
  2259. }
  2260. exports.InjectedBySrc = InjectedBySrc;
  2261. function syncGetChromeStorageLocal(key) {
  2262. return new Promise(function (resolve) { return (chrome.storage.local.get(key, function (value) {
  2263. resolve(value[key]);
  2264. })); });
  2265. }
  2266. exports.syncGetChromeStorageLocal = syncGetChromeStorageLocal;
  2267. function syncSetChromeStorageLocal(key, value) {
  2268. var tmp = {};
  2269. tmp[key] = value;
  2270. return new Promise(function (resolve) { return (chrome.storage.local.set(tmp, function () {
  2271. resolve();
  2272. })); });
  2273. }
  2274. exports.syncSetChromeStorageLocal = syncSetChromeStorageLocal;
  2275. /**
  2276. * 移除注入js
  2277. * @param doc
  2278. */
  2279. function RemoveInjected(doc) {
  2280. var resource = doc.getElementsByClassName("injected-js");
  2281. for (var i = 0; i < resource.length; i++) {
  2282. resource[i].remove();
  2283. }
  2284. }
  2285. exports.RemoveInjected = RemoveInjected;
  2286. function randNumber(minNum, maxNum) {
  2287. return Math.floor(Math.random() * (maxNum - minNum + 1) + minNum);
  2288. }
  2289. exports.randNumber = randNumber;
  2290. /**
  2291. * 创建一个按钮
  2292. * @param title
  2293. * @param description
  2294. * @param id
  2295. */
  2296. function createBtn(title, description, className, id) {
  2297. if (description === void 0) { description = ""; }
  2298. if (className === void 0) { className = ""; }
  2299. if (id === void 0) { id = ""; }
  2300. var btn = document.createElement('button');
  2301. btn.innerText = title;
  2302. btn.id = id;
  2303. btn.title = description;
  2304. btn.className = className;
  2305. return btn;
  2306. }
  2307. exports.createBtn = createBtn;
  2308. /**
  2309. * get请求
  2310. * @param {*} url
  2311. */
  2312. function get(url, success) {
  2313. var xmlhttp = createRequest();
  2314. xmlhttp.open("GET", url, true);
  2315. xmlhttp.onreadystatechange = function () {
  2316. if (this.readyState == 4) {
  2317. if (this.status == 200) {
  2318. success && success(this.responseText, this.resource);
  2319. }
  2320. else {
  2321. xmlhttp.errorCallback && xmlhttp.errorCallback(this);
  2322. }
  2323. }
  2324. };
  2325. xmlhttp.send();
  2326. return xmlhttp;
  2327. }
  2328. exports.get = get;
  2329. /**
  2330. * post请求
  2331. * @param {*} url
  2332. * @param {*} data
  2333. * @param {*} json
  2334. */
  2335. function post(url, data, json, success) {
  2336. if (json === void 0) { json = true; }
  2337. var xmlhttp = createRequest();
  2338. xmlhttp.open("POST", url, true);
  2339. if (json) {
  2340. xmlhttp.setRequestHeader("Content-Type", "application/json");
  2341. }
  2342. else {
  2343. xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  2344. }
  2345. xmlhttp.onreadystatechange = function () {
  2346. if (this.readyState == 4) {
  2347. if (this.status == 200) {
  2348. success && success(this.responseText);
  2349. }
  2350. else {
  2351. xmlhttp.errorCallback && xmlhttp.errorCallback(this);
  2352. }
  2353. }
  2354. };
  2355. xmlhttp.send(data);
  2356. return xmlhttp;
  2357. }
  2358. exports.post = post;
  2359. /**
  2360. * 创建http请求
  2361. */
  2362. function createRequest() {
  2363. var xmlhttp;
  2364. if (window.XMLHttpRequest) {
  2365. xmlhttp = new XMLHttpRequest();
  2366. }
  2367. else {
  2368. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  2369. }
  2370. xmlhttp.error = function (callback) {
  2371. xmlhttp.errorCallback = callback;
  2372. return xmlhttp;
  2373. };
  2374. xmlhttp.withCredentials = true;
  2375. return xmlhttp;
  2376. }
  2377. // 移除html tag
  2378. function removeHTMLTag(html) {
  2379. var revHtml = /<.*?>/g;
  2380. html = html.replace(revHtml, '');
  2381. html = html.replace(/(^\s+)|(\s+$)/g, '');
  2382. return html;
  2383. }
  2384. exports.removeHTMLTag = removeHTMLTag;
  2385. /**
  2386. * 去除html标签和处理中文
  2387. * @param {string} html
  2388. */
  2389. function removeHTML(html) {
  2390. //先处理带src和href属性的标签
  2391. var srcReplace = /<img.*?src="(.*?)".*?>/g;
  2392. html = html.replace(srcReplace, '$1');
  2393. srcReplace = /(<iframe.+?>)\s+?(<\/iframe>)/g;
  2394. html = html.replace(srcReplace, '$1$2');
  2395. srcReplace = /<(iframe|a).*?(src|href)="(.*?)".*?>(.*?)<\/(iframe|a)>/g;
  2396. html = html.replace(srcReplace, '$3$4');
  2397. var revHtml = /<.*?>/g;
  2398. html = html.replace(revHtml, '');
  2399. html = html.replace(/(^\s+)|(\s+$)/g, '');
  2400. html = dealSymbol(html);
  2401. return html.replace(/&nbsp;/g, ' ')
  2402. .replace(/&quot;/g, "\"").replace(/&gt;/g, ">")
  2403. .replace(/&lt;/g, "<").replace(/&amp;/g, '&').trim();
  2404. }
  2405. exports.removeHTML = removeHTML;
  2406. /**
  2407. * 处理符号
  2408. * @param topic
  2409. */
  2410. function dealSymbol(topic) {
  2411. topic = topic.replace(/,/g, ',');
  2412. topic = topic.replace(/(/g, '(');
  2413. topic = topic.replace(/)/g, ')');
  2414. topic = topic.replace(/?/g, '?');
  2415. topic = topic.replace(/:/g, ':');
  2416. topic = topic.replace(/。/g, '.');
  2417. topic = topic.replace(/[“”]/g, '"');
  2418. return topic;
  2419. }
  2420. /**
  2421. * 取中间文本
  2422. * @param str
  2423. * @param left
  2424. * @param right
  2425. */
  2426. function substrex(str, left, right) {
  2427. var leftPos = str.indexOf(left) + left.length;
  2428. var rightPos = str.indexOf(right, leftPos);
  2429. return str.substring(leftPos, rightPos);
  2430. }
  2431. exports.substrex = substrex;
  2432. function dealHotVersion(hotversion) {
  2433. hotversion = hotversion.substring(0, hotversion.indexOf(".") + 1) + hotversion.substring(hotversion.indexOf(".") + 1).replace(".", "");
  2434. return Number(hotversion);
  2435. }
  2436. exports.dealHotVersion = dealHotVersion;
  2437. function protocolPrompt(content, key, keyword) {
  2438. keyword = keyword || "yes";
  2439. if (localStorage[key] == undefined || localStorage[key] != 1) {
  2440. var msg = prompt(content + "\n如果以后不想再弹出本对话框并且同意请在下方填写\"" + keyword + "\"");
  2441. if (msg === null)
  2442. return false;
  2443. if (keyword != msg) {
  2444. return false;
  2445. }
  2446. localStorage[key] = 1;
  2447. }
  2448. return true;
  2449. }
  2450. exports.protocolPrompt = protocolPrompt;
  2451. function getImageBase64(img, ext) {
  2452. var canvas = document.createElement("canvas");
  2453. canvas.width = img.width;
  2454. canvas.height = img.height;
  2455. var ctx = canvas.getContext("2d");
  2456. ctx.drawImage(img, 0, 0, img.width, img.height);
  2457. var dataURL = canvas.toDataURL("image/" + ext, 0.75); //节省可怜的流量>_<,虽然好像没有啥
  2458. canvas = null;
  2459. return dataURL;
  2460. }
  2461. exports.getImageBase64 = getImageBase64;
  2462. function isPhone() {
  2463. return /Android|iPhone/i.test(navigator.userAgent);
  2464. }
  2465. exports.isPhone = isPhone;
  2466. function Noifications(details) {
  2467. if (window.hasOwnProperty("GM_notification")) {
  2468. window.GM_notification(details);
  2469. }
  2470. else {
  2471. var client = application_1.Application.App.Client;
  2472. client.Send({
  2473. type: "GM_notification", details: details,
  2474. });
  2475. application_1.Application.App.Client.Send(details);
  2476. }
  2477. }
  2478. exports.Noifications = Noifications;
  2479. function toBool(val) {
  2480. if (typeof val == "boolean") {
  2481. return val;
  2482. }
  2483. return val == "true";
  2484. }
  2485. exports.toBool = toBool;
  2486. function boolToString(val) {
  2487. if (val) {
  2488. return "true";
  2489. }
  2490. return "false";
  2491. }
  2492. exports.boolToString = boolToString;
  2493. function UntrustedClick(el) {
  2494. if (window.CAT_click != undefined) {
  2495. CAT_click(el);
  2496. return true;
  2497. }
  2498. var untrusted = new MouseEvent("click", { "clientX": 10086 });
  2499. if (!untrusted.isTrusted) {
  2500. application_1.Application.App.log.Warn("扩展执行错误");
  2501. return false;
  2502. }
  2503. return el.dispatchEvent(untrusted);
  2504. }
  2505. exports.UntrustedClick = UntrustedClick;
  2506. function Sleep(timeout) {
  2507. return new Promise(function (resolve) {
  2508. setTimeout(function () {
  2509. resolve(undefined);
  2510. }, timeout);
  2511. });
  2512. }
  2513. exports.Sleep = Sleep;
  2514.  
  2515.  
  2516. /***/ }),
  2517.  
  2518. /***/ "./src/mooc/chaoxing/course.ts":
  2519. /*!*************************************!*\
  2520. !*** ./src/mooc/chaoxing/course.ts ***!
  2521. \*************************************/
  2522. /*! no static exports found */
  2523. /***/ (function(module, exports, __webpack_require__) {
  2524.  
  2525. "use strict";
  2526.  
  2527. var __extends = (this && this.__extends) || (function () {
  2528. var extendStatics = function (d, b) {
  2529. extendStatics = Object.setPrototypeOf ||
  2530. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  2531. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  2532. return extendStatics(d, b);
  2533. };
  2534. return function (d, b) {
  2535. extendStatics(d, b);
  2536. function __() { this.constructor = d; }
  2537. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  2538. };
  2539. })();
  2540. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  2541. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  2542. return new (P || (P = Promise))(function (resolve, reject) {
  2543. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  2544. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  2545. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  2546. step((generator = generator.apply(thisArg, _arguments || [])).next());
  2547. });
  2548. };
  2549. var __generator = (this && this.__generator) || function (thisArg, body) {
  2550. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  2551. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  2552. function verb(n) { return function (v) { return step([n, v]); }; }
  2553. function step(op) {
  2554. if (f) throw new TypeError("Generator is already executing.");
  2555. while (_) try {
  2556. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  2557. if (y = 0, t) op = [op[0] & 2, t.value];
  2558. switch (op[0]) {
  2559. case 0: case 1: t = op; break;
  2560. case 4: _.label++; return { value: op[1], done: false };
  2561. case 5: _.label++; y = op[1]; op = [0]; continue;
  2562. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  2563. default:
  2564. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  2565. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  2566. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  2567. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  2568. if (t[2]) _.ops.pop();
  2569. _.trys.pop(); continue;
  2570. }
  2571. op = body.call(thisArg, _);
  2572. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  2573. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  2574. }
  2575. };
  2576. Object.defineProperty(exports, "__esModule", { value: true });
  2577. exports.CxHomeWork = exports.CxExamTopic = exports.CxCourse = void 0;
  2578. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  2579. var factory_1 = __webpack_require__(/*! @App/mooc/chaoxing/factory */ "./src/mooc/chaoxing/factory.ts");
  2580. var event_1 = __webpack_require__(/*! @App/internal/utils/event */ "./src/internal/utils/event.ts");
  2581. //课程任务
  2582. var CxCourse = /** @class */ (function (_super) {
  2583. __extends(CxCourse, _super);
  2584. function CxCourse() {
  2585. var _this = _super !== null && _super.apply(this, arguments) || this;
  2586. _this.taskIndex = 0;
  2587. return _this;
  2588. }
  2589. CxCourse.prototype.Init = function () {
  2590. var _this = this;
  2591. return new Promise(function (resolve) {
  2592. var first = true;
  2593. document.addEventListener("load", function (ev) {
  2594. var el = (ev.srcElement || ev.target);
  2595. if (el.id == "iframe") {
  2596. application_1.Application.App.log.Info("超星新窗口加载");
  2597. _this.OperateCard(el);
  2598. // 超星会有多次加载,所以使用一个flag变量,只回调一次
  2599. first && resolve(undefined);
  2600. first = false;
  2601. }
  2602. }, true);
  2603. });
  2604. };
  2605. CxCourse.prototype.Stop = function () {
  2606. throw new Error("Method not implemented.");
  2607. };
  2608. CxCourse.prototype.Next = function () {
  2609. var _this = this;
  2610. return new Promise(function (resolve) {
  2611. if (_this.taskList.length > _this.taskIndex) {
  2612. resolve(_this.taskList[_this.taskIndex]);
  2613. return _this.taskIndex++;
  2614. }
  2615. // 当页任务点全部结束,翻页.由于会重新加载窗口调用reload,在加载完成之后再返回任务点.(本方法是同步调用,所以使用此种方法)
  2616. _this.addEventListenerOnce("reload", function () { return __awaiter(_this, void 0, void 0, function () {
  2617. var _a;
  2618. return __generator(this, function (_b) {
  2619. switch (_b.label) {
  2620. case 0:
  2621. _a = resolve;
  2622. return [4 /*yield*/, this.Next()];
  2623. case 1:
  2624. _a.apply(void 0, [_b.sent()]);
  2625. return [2 /*return*/];
  2626. }
  2627. });
  2628. }); });
  2629. _this.nextPage(null);
  2630. });
  2631. };
  2632. CxCourse.prototype.SetTaskPointer = function (index) {
  2633. this.taskIndex = index;
  2634. };
  2635. // 操作任务卡,一个页面会包含很多任务,取出来
  2636. CxCourse.prototype.OperateCard = function (iframe) {
  2637. return __awaiter(this, void 0, void 0, function () {
  2638. var iframeWindow, match, _loop_1, this_1, index;
  2639. var _this = this;
  2640. return __generator(this, function (_a) {
  2641. switch (_a.label) {
  2642. case 0:
  2643. iframeWindow = iframe.contentWindow;
  2644. // 判断任务的参数
  2645. if (iframeWindow.mArg == undefined) {
  2646. match = iframeWindow.document.body.innerHTML.match(/try{\s+?mArg = (.*?);/);
  2647. if (!match) {
  2648. return [2 /*return*/];
  2649. }
  2650. iframeWindow.mArg = JSON.parse(match[1]);
  2651. }
  2652. // 任务的属性
  2653. this.attachments = iframeWindow.mArg.attachments;
  2654. this.taskList = new Array();
  2655. _loop_1 = function (index) {
  2656. var value, task;
  2657. return __generator(this, function (_a) {
  2658. switch (_a.label) {
  2659. case 0:
  2660. value = this_1.attachments[index];
  2661. value.defaults = iframeWindow.mArg.defaults;
  2662. // 任务工厂去创建对应的任务对象
  2663. task = factory_1.TaskFactory.CreateCourseTask(iframeWindow, value);
  2664. if (!task) {
  2665. return [2 /*return*/, "continue"];
  2666. }
  2667. task.jobIndex = index;
  2668. this_1.taskList.push(task);
  2669. task.addEventListener("complete", function () {
  2670. _this.callEvent("taskComplete", index, task);
  2671. });
  2672. return [4 /*yield*/, task.Init()];
  2673. case 1:
  2674. _a.sent();
  2675. return [2 /*return*/];
  2676. }
  2677. });
  2678. };
  2679. this_1 = this;
  2680. index = 0;
  2681. _a.label = 1;
  2682. case 1:
  2683. if (!(index < this.attachments.length)) return [3 /*break*/, 4];
  2684. return [5 /*yield**/, _loop_1(index)];
  2685. case 2:
  2686. _a.sent();
  2687. _a.label = 3;
  2688. case 3:
  2689. index++;
  2690. return [3 /*break*/, 1];
  2691. case 4:
  2692. this.taskIndex = 0;
  2693. this.callEvent("reload");
  2694. return [2 /*return*/];
  2695. }
  2696. });
  2697. });
  2698. };
  2699. CxCourse.prototype.afterPage = function () {
  2700. //感觉奇葩的方法...
  2701. var els = document.querySelectorAll("div.ncells > *:not(.currents) > .orange01");
  2702. var now = document.querySelector("div.ncells > .currents");
  2703. for (var i = 0; i < els.length; i++) {
  2704. if (now.getBoundingClientRect().top < els[i].getBoundingClientRect().top) {
  2705. return els[i];
  2706. }
  2707. }
  2708. return null;
  2709. };
  2710. CxCourse.prototype.nextPage = function (num) {
  2711. var _this = this;
  2712. var el = document.querySelector("span.currents ~ span") || document.querySelector(".prev_next.next");
  2713. if (el != undefined) {
  2714. return el.click();
  2715. }
  2716. //只往后执行
  2717. el = this.afterPage();
  2718. if (el == undefined) {
  2719. //进行有锁任务查找
  2720. if (document.querySelector("div.ncells > *:not(.currents) > .lock") == undefined) {
  2721. return this.callEvent("complete");
  2722. }
  2723. return setTimeout(function () {
  2724. if (num > 5) {
  2725. return _this.callEvent("error", "被锁卡住了,请手动处理");
  2726. }
  2727. application_1.Application.App.log.Info("等待解锁");
  2728. _this.nextPage(num + 1);
  2729. }, 5000);
  2730. }
  2731. el.parentElement.querySelector("a>span").click();
  2732. };
  2733. return CxCourse;
  2734. }(event_1.EventListener));
  2735. exports.CxCourse = CxCourse;
  2736. // 考试
  2737. var CxExamTopic = /** @class */ (function () {
  2738. function CxExamTopic() {
  2739. }
  2740. CxExamTopic.prototype.Init = function () {
  2741. window.addEventListener("load", function () {
  2742. var el = document.querySelector("#paperId");
  2743. var info = "0";
  2744. if (el) {
  2745. info = el.value;
  2746. }
  2747. var task = factory_1.TaskFactory.CreateExamTopicTask(window, {
  2748. refer: document.URL,
  2749. id: "exam-" + info,
  2750. info: info,
  2751. });
  2752. task.Init();
  2753. if (document.URL.indexOf("exam/test/reVersionTestStartNew") > 0) {
  2754. if (application_1.Application.App.config.auto) {
  2755. task.Start();
  2756. }
  2757. }
  2758. });
  2759. };
  2760. return CxExamTopic;
  2761. }());
  2762. exports.CxExamTopic = CxExamTopic;
  2763. // 作业
  2764. var CxHomeWork = /** @class */ (function () {
  2765. function CxHomeWork() {
  2766. }
  2767. CxHomeWork.prototype.Init = function () {
  2768. window.onload = function () {
  2769. var el = document.querySelector("#workLibraryId");
  2770. var info = "";
  2771. if (el) {
  2772. info = el.value;
  2773. }
  2774. var task = factory_1.TaskFactory.CreateHomeworkTopicTask(window, {
  2775. refer: document.URL,
  2776. id: info,
  2777. info: info,
  2778. });
  2779. task.Init();
  2780. if (application_1.Application.App.config.auto && document.querySelector("#workLibraryId")) {
  2781. task.Start();
  2782. }
  2783. };
  2784. };
  2785. return CxHomeWork;
  2786. }());
  2787. exports.CxHomeWork = CxHomeWork;
  2788.  
  2789.  
  2790. /***/ }),
  2791.  
  2792. /***/ "./src/mooc/chaoxing/factory.ts":
  2793. /*!**************************************!*\
  2794. !*** ./src/mooc/chaoxing/factory.ts ***!
  2795. \**************************************/
  2796. /*! no static exports found */
  2797. /***/ (function(module, exports, __webpack_require__) {
  2798.  
  2799. "use strict";
  2800.  
  2801. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  2802. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  2803. return new (P || (P = Promise))(function (resolve, reject) {
  2804. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  2805. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  2806. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  2807. step((generator = generator.apply(thisArg, _arguments || [])).next());
  2808. });
  2809. };
  2810. var __generator = (this && this.__generator) || function (thisArg, body) {
  2811. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  2812. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  2813. function verb(n) { return function (v) { return step([n, v]); }; }
  2814. function step(op) {
  2815. if (f) throw new TypeError("Generator is already executing.");
  2816. while (_) try {
  2817. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  2818. if (y = 0, t) op = [op[0] & 2, t.value];
  2819. switch (op[0]) {
  2820. case 0: case 1: t = op; break;
  2821. case 4: _.label++; return { value: op[1], done: false };
  2822. case 5: _.label++; y = op[1]; op = [0]; continue;
  2823. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  2824. default:
  2825. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  2826. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  2827. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  2828. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  2829. if (t[2]) _.ops.pop();
  2830. _.trys.pop(); continue;
  2831. }
  2832. op = body.call(thisArg, _);
  2833. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  2834. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  2835. }
  2836. };
  2837. Object.defineProperty(exports, "__esModule", { value: true });
  2838. exports.TaskFactory = void 0;
  2839. var video_1 = __webpack_require__(/*! @App/mooc/chaoxing/video */ "./src/mooc/chaoxing/video.ts");
  2840. var topic_1 = __webpack_require__(/*! @App/mooc/chaoxing/topic */ "./src/mooc/chaoxing/topic.ts");
  2841. var question_1 = __webpack_require__(/*! @App/internal/app/question */ "./src/internal/app/question.ts");
  2842. var question_2 = __webpack_require__(/*! @App/mooc/chaoxing/question */ "./src/mooc/chaoxing/question.ts");
  2843. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  2844. var task_1 = __webpack_require__(/*! @App/mooc/chaoxing/task */ "./src/mooc/chaoxing/task.ts");
  2845. var utils_1 = __webpack_require__(/*! @App/mooc/chaoxing/utils */ "./src/mooc/chaoxing/utils.ts");
  2846. var utils_2 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  2847. var special_1 = __webpack_require__(/*! @App/mooc/chaoxing/special */ "./src/mooc/chaoxing/special.ts");
  2848. // 任务工厂,创建对应的任务
  2849. var TaskFactory = /** @class */ (function () {
  2850. function TaskFactory() {
  2851. }
  2852. TaskFactory.CreateCourseTask = function (context, taskinfo) {
  2853. if (taskinfo.property.module == "insertaudio") {
  2854. taskinfo.type = "audio";
  2855. }
  2856. //TODO:优化
  2857. if (taskinfo.type != "video" && taskinfo.type != "workid" && taskinfo.type != "document"
  2858. && taskinfo.type != "audio") {
  2859. return null;
  2860. }
  2861. var task;
  2862. var taskIframe = context.document.querySelector("iframe[jobid='" + taskinfo.jobid + "']");
  2863. var prev;
  2864. if (taskIframe == undefined) {
  2865. taskIframe = context.document.querySelector("iframe[data*='" + taskinfo.property.mid + "'],iframe[objectid='" + taskinfo.property.objectid + "']");
  2866. prev = document.createElement("div");
  2867. taskIframe.parentElement.prepend(prev);
  2868. }
  2869. else {
  2870. prev = taskIframe.previousElementSibling;
  2871. }
  2872. switch (taskinfo.type) {
  2873. case "video": {
  2874. var bar = new video_1.CxVideoControlBar(prev, new video_1.Video(taskIframe.contentWindow, taskinfo));
  2875. task = bar.task;
  2876. task.muted = application_1.Application.App.config.video_mute;
  2877. task.playbackRate = application_1.Application.App.config.video_multiple;
  2878. break;
  2879. }
  2880. case "workid": {
  2881. var contentWindow = taskIframe.contentWindow.document.querySelector("#frame_content").contentWindow;
  2882. taskinfo.refer = context.document.URL;
  2883. taskinfo.id = taskinfo.property.workid;
  2884. taskinfo.info = taskinfo.property.workid;
  2885. var topic = new topic_1.CxCourseTopic(contentWindow, new question_1.ToolsQuestionBankFacade("cx", {
  2886. refer: context.document.URL,
  2887. id: taskinfo.property.workid, info: taskinfo.property.workid,
  2888. }));
  2889. topic.SetQueryQuestions(new topic_1.CxCourseQueryQuestion(contentWindow, function (context, el) {
  2890. return question_2.CxQuestionFactory.CreateCourseQuestion(context, el);
  2891. }));
  2892. var bar = new topic_1.CxTopicControlBar(prev, new topic_1.TopicAdapter(context, taskinfo, topic));
  2893. if (application_1.Application.App.config.answer_ignore) {
  2894. return null;
  2895. }
  2896. task = bar.task;
  2897. break;
  2898. }
  2899. case "document": {
  2900. var bar = new task_1.CxTaskControlBar(prev, new special_1.CxDocumentTask(taskIframe.contentWindow, taskinfo));
  2901. bar.append(bar.download());
  2902. task = bar.task;
  2903. task.muted = application_1.Application.App.config.video_mute;
  2904. task.playbackRate = application_1.Application.App.config.video_multiple;
  2905. break;
  2906. }
  2907. case "audio": {
  2908. var bar = new special_1.CxAudioControlBar(prev, new special_1.CxAudioTask(taskIframe.contentWindow, taskinfo));
  2909. task = bar.task;
  2910. task.muted = application_1.Application.App.config.video_mute;
  2911. task.playbackRate = application_1.Application.App.config.video_multiple;
  2912. break;
  2913. }
  2914. default:
  2915. return null;
  2916. }
  2917. return task;
  2918. };
  2919. TaskFactory.CreateExamTopicTask = function (context, taskinfo) {
  2920. var topic = new topic_1.ExamTopic(context, new question_1.ToolsQuestionBankFacade("cx", taskinfo));
  2921. var task = new topic_1.TopicAdapter(context, taskinfo, topic);
  2922. if (document.URL.indexOf("exam/test/reVersionTestStartNew") > 0) {
  2923. topic.SetQueryQuestions(topic);
  2924. var btn_1 = utils_1.CssBtn(utils_2.createBtn("搜索答案", "搜索题目答案"));
  2925. document.querySelector(".Cy_ulBottom.clearfix.w-buttom,.Cy_ulTk,.Cy_ulBottom.clearfix").append(btn_1);
  2926. btn_1.onclick = function () {
  2927. btn_1.innerText = "答案搜索中...";
  2928. try {
  2929. task.Start().then(function (ret) {
  2930. ret = ret || "搜索题目";
  2931. btn_1.innerText = question_1.QuestionStatusString(ret);
  2932. });
  2933. }
  2934. catch (e) {
  2935. }
  2936. return false;
  2937. };
  2938. }
  2939. else {
  2940. topic.SetQueryQuestions(new topic_1.CxCourseQueryQuestion(context, function (context, el) {
  2941. return question_2.CxQuestionFactory.CreateExamCollectQuestion(context, el);
  2942. }));
  2943. }
  2944. return task;
  2945. };
  2946. TaskFactory.CreateHomeworkTopicTask = function (context, taskinfo) {
  2947. var _this = this;
  2948. var bank = new question_1.ToolsQuestionBankFacade("cx", taskinfo);
  2949. var topic = new topic_1.HomeworkTopic(context, bank);
  2950. topic.SetQueryQuestions(new topic_1.CxCourseQueryQuestion(context, function (context, el) {
  2951. return question_2.CxQuestionFactory.CreateHomeWorkQuestion(context, el);
  2952. }));
  2953. var task = new topic_1.TopicAdapter(context, taskinfo, topic);
  2954. var btn = utils_1.CssBtn(utils_2.createBtn("搜索答案", "搜索题目答案"));
  2955. if (document.querySelector("input#workRelationId")) {
  2956. document.querySelector(".CyTop").append(btn);
  2957. btn.onclick = function () { return __awaiter(_this, void 0, void 0, function () {
  2958. return __generator(this, function (_a) {
  2959. btn.innerText = "答案搜索中...";
  2960. task.Start().then(function (ret) {
  2961. ret = ret || "搜索题目";
  2962. btn.innerText = question_1.QuestionStatusString(ret);
  2963. });
  2964. return [2 /*return*/];
  2965. });
  2966. }); };
  2967. }
  2968. return task;
  2969. };
  2970. return TaskFactory;
  2971. }());
  2972. exports.TaskFactory = TaskFactory;
  2973.  
  2974.  
  2975. /***/ }),
  2976.  
  2977. /***/ "./src/mooc/chaoxing/platform.ts":
  2978. /*!***************************************!*\
  2979. !*** ./src/mooc/chaoxing/platform.ts ***!
  2980. \***************************************/
  2981. /*! no static exports found */
  2982. /***/ (function(module, exports, __webpack_require__) {
  2983.  
  2984. "use strict";
  2985.  
  2986. Object.defineProperty(exports, "__esModule", { value: true });
  2987. exports.CxPlatform = void 0;
  2988. var vcode_1 = __webpack_require__(/*! @App/internal/app/vcode */ "./src/internal/app/vcode.ts");
  2989. var course_1 = __webpack_require__(/*! ./course */ "./src/mooc/chaoxing/course.ts");
  2990. var vcode_2 = __webpack_require__(/*! ./vcode */ "./src/mooc/chaoxing/vcode.ts");
  2991. var video_1 = __webpack_require__(/*! ./video */ "./src/mooc/chaoxing/video.ts");
  2992. var read_1 = __webpack_require__(/*! @App/mooc/chaoxing/read */ "./src/mooc/chaoxing/read.ts");
  2993. var special_1 = __webpack_require__(/*! @App/mooc/chaoxing/special */ "./src/mooc/chaoxing/special.ts");
  2994. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  2995. var CxPlatform = /** @class */ (function () {
  2996. function CxPlatform() {
  2997. }
  2998. CxPlatform.prototype.CreateMooc = function () {
  2999. var url = document.URL;
  3000. var mooc = null;
  3001. if (url.indexOf("mycourse/studentstudy?") > 0) {
  3002. new vcode_1.VCode(new vcode_2.CxCourseVCode()); //添加打码组件
  3003. mooc = new course_1.CxCourse();
  3004. }
  3005. else if (url.indexOf("ananas/modules/video/index.html") > 0) {
  3006. mooc = new video_1.CxVideoOptimization();
  3007. }
  3008. else if (url.indexOf("ananas/modules/audio/index.html") > 0) {
  3009. mooc = new special_1.CxAudioOptimization();
  3010. }
  3011. else if ((url.indexOf("work/doHomeWorkNew") > 0 || url.indexOf("work/selectWorkQuestionYiPiYue") > 0) && self == top) {
  3012. mooc = new course_1.CxHomeWork();
  3013. }
  3014. else if (url.indexOf("exam/test/reVersionTestStartNew") > 0 || url.indexOf("exam/test/reVersionPaperMarkContentNew") > 0) {
  3015. mooc = new course_1.CxExamTopic();
  3016. }
  3017. else if (url.indexOf("/course/") > 0) {
  3018. mooc = new read_1.ReadStartPage();
  3019. }
  3020. else if (url.indexOf("ztnodedetailcontroller/visitnodedetail") > 0) {
  3021. mooc = new read_1.Read();
  3022. }
  3023. else if (url.indexOf("exam/test?") > 0) {
  3024. mooc = new read_1.Exam();
  3025. }
  3026. if (mooc) {
  3027. application_1.Application.App.config.SetNamespace("cx");
  3028. }
  3029. return mooc;
  3030. };
  3031. return CxPlatform;
  3032. }());
  3033. exports.CxPlatform = CxPlatform;
  3034.  
  3035.  
  3036. /***/ }),
  3037.  
  3038. /***/ "./src/mooc/chaoxing/question.ts":
  3039. /*!***************************************!*\
  3040. !*** ./src/mooc/chaoxing/question.ts ***!
  3041. \***************************************/
  3042. /*! no static exports found */
  3043. /***/ (function(module, exports, __webpack_require__) {
  3044.  
  3045. "use strict";
  3046.  
  3047. var __extends = (this && this.__extends) || (function () {
  3048. var extendStatics = function (d, b) {
  3049. extendStatics = Object.setPrototypeOf ||
  3050. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3051. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  3052. return extendStatics(d, b);
  3053. };
  3054. return function (d, b) {
  3055. extendStatics(d, b);
  3056. function __() { this.constructor = d; }
  3057. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3058. };
  3059. })();
  3060. Object.defineProperty(exports, "__esModule", { value: true });
  3061. exports.CxQuestionFactory = void 0;
  3062. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  3063. var question_1 = __webpack_require__(/*! @App/internal/app/question */ "./src/internal/app/question.ts");
  3064. var utils_2 = __webpack_require__(/*! ./utils */ "./src/mooc/chaoxing/utils.ts");
  3065. //TODO: 优化
  3066. var CxQuestionFactory = /** @class */ (function () {
  3067. function CxQuestionFactory() {
  3068. }
  3069. CxQuestionFactory.CreateCourseQuestion = function (context, el) {
  3070. var ret = question_1.SwitchTopicType(utils_1.substrex(el.innerText, '【', '】'));
  3071. return this.CreateCourseQuestionByTopicType(context, ret, el);
  3072. };
  3073. CxQuestionFactory.CreateExamQuestion = function (context, type, el) {
  3074. var processor = new ExamQuestionProcessor();
  3075. var ret = null;
  3076. this.RemoveNotice(el);
  3077. switch (type) {
  3078. case 1:
  3079. case 2: {
  3080. ret = new cxExamSelectQuestion(context, el, type, processor);
  3081. break;
  3082. }
  3083. case 3: {
  3084. ret = new cxExamJudgeQuestion(context, el, type, processor);
  3085. break;
  3086. }
  3087. case 4: {
  3088. ret = new cxExamFillQuestion(context, el, type, processor);
  3089. break;
  3090. }
  3091. default: {
  3092. this.AddNotice(el, "不支持的类型");
  3093. return null;
  3094. }
  3095. }
  3096. return ret;
  3097. };
  3098. CxQuestionFactory.CreateCourseQuestionByTopicType = function (context, type, el) {
  3099. var ret = null;
  3100. var processor = new CourseQuestionProcessor();
  3101. this.RemoveNotice(el);
  3102. switch (type) {
  3103. case 1:
  3104. case 2: {
  3105. ret = new cxSelectQuestion(context, el, type, processor);
  3106. break;
  3107. }
  3108. case 3: {
  3109. ret = new cxJudgeQuestion(context, el, type, processor);
  3110. break;
  3111. }
  3112. case 4: {
  3113. ret = new cxFillQuestion(context, el, type, processor);
  3114. break;
  3115. }
  3116. default: {
  3117. this.AddNotice(el, "不支持的类型");
  3118. return null;
  3119. }
  3120. }
  3121. return ret;
  3122. };
  3123. CxQuestionFactory.getBeforeType = function (el) {
  3124. var before = el.previousElementSibling;
  3125. do {
  3126. if (before.className == "Cy_TItle1") {
  3127. return before;
  3128. }
  3129. before = before.previousElementSibling;
  3130. } while (before != null);
  3131. return null;
  3132. };
  3133. CxQuestionFactory.CreateHomeWorkQuestion = function (context, el) {
  3134. var ret = CxQuestionFactory.getBeforeType(el);
  3135. return this.CreateCourseQuestionByTopicType(context, question_1.SwitchTopicType(utils_1.substrex(ret.innerText, ".", "(")), el);
  3136. };
  3137. //TODO:写的什么玩意啊
  3138. CxQuestionFactory.CreateExamCollectQuestion = function (context, el) {
  3139. var ret = CxQuestionFactory.getBeforeType(el.parentElement);
  3140. var txt = ret.innerText.match(/、(.*?)[\s|(]/)[1];
  3141. return this.CreateExamQuestionByTopicType(context, question_1.SwitchTopicType(txt), el);
  3142. };
  3143. CxQuestionFactory.CreateExamQuestionByTopicType = function (context, type, el) {
  3144. var ret = null;
  3145. var processor = new CourseQuestionProcessor();
  3146. this.RemoveNotice(el);
  3147. switch (type) {
  3148. case 1:
  3149. case 2: {
  3150. ret = new cxSelectQuestion(context, el, type, processor);
  3151. break;
  3152. }
  3153. case 3: {
  3154. ret = new cxJudgeQuestion(context, el, type, processor);
  3155. break;
  3156. }
  3157. case 4: {
  3158. ret = new cxExamFillQuestion(context, el, type, processor);
  3159. break;
  3160. }
  3161. default: {
  3162. this.AddNotice(el, "不支持的类型");
  3163. return null;
  3164. }
  3165. }
  3166. return ret;
  3167. };
  3168. CxQuestionFactory.RemoveNotice = function (el) {
  3169. var tmpel = el.querySelector(".clearfix > ul,.clearfix > .Py_tk,.Zy_ulTk");
  3170. if (tmpel == undefined) {
  3171. tmpel = el;
  3172. }
  3173. tmpel.querySelectorAll(".prompt-line-answer").forEach(function (v) {
  3174. v.remove();
  3175. });
  3176. };
  3177. CxQuestionFactory.AddNotice = function (el, str) {
  3178. var tmpel = el.querySelector(".clearfix > ul,.clearfix > .Py_tk,.Zy_ulTk");
  3179. if (tmpel == undefined) {
  3180. tmpel = el;
  3181. }
  3182. utils_2.CreateNoteLine(str, "answer", tmpel);
  3183. };
  3184. return CxQuestionFactory;
  3185. }());
  3186. exports.CxQuestionFactory = CxQuestionFactory;
  3187. var CourseQuestionProcessor = /** @class */ (function () {
  3188. function CourseQuestionProcessor() {
  3189. }
  3190. CourseQuestionProcessor.prototype.GetTopic = function (el) {
  3191. var ret = el.querySelector(".Zy_TItle > .clearfix,.Cy_TItle > .clearfix").innerHTML;
  3192. ret = ret.substring(ret.indexOf('】') + 1);
  3193. if (/((.+?)分)($|\s)/.test(ret)) {
  3194. ret = ret.substring(0, ret.lastIndexOf("("));
  3195. }
  3196. return ret;
  3197. };
  3198. return CourseQuestionProcessor;
  3199. }());
  3200. var ExamQuestionProcessor = /** @class */ (function () {
  3201. function ExamQuestionProcessor() {
  3202. }
  3203. ExamQuestionProcessor.prototype.GetTopic = function (el) {
  3204. var ret = el.querySelector(".Cy_TItle.clearfix .clearfix").innerHTML;
  3205. ret = ret.substr(0, ret.lastIndexOf('分)'));
  3206. ret = ret.substr(0, ret.lastIndexOf('('));
  3207. return ret;
  3208. };
  3209. return ExamQuestionProcessor;
  3210. }());
  3211. var cxQuestion = /** @class */ (function () {
  3212. function cxQuestion(context, el, type, processor) {
  3213. this.context = context;
  3214. this.el = el;
  3215. this.type = type;
  3216. this.processor = processor;
  3217. }
  3218. cxQuestion.prototype.SetStatus = function (status) {
  3219. this.AddNotice(question_1.TopicStatusString(status));
  3220. };
  3221. cxQuestion.prototype.GetTopic = function () {
  3222. return this.processor.GetTopic(this.el);
  3223. };
  3224. cxQuestion.prototype.RemoveNotice = function () {
  3225. CxQuestionFactory.RemoveNotice(this.el);
  3226. };
  3227. cxQuestion.prototype.AddNotice = function (str) {
  3228. CxQuestionFactory.AddNotice(this.el, str);
  3229. };
  3230. cxQuestion.prototype.GetType = function () {
  3231. return this.type;
  3232. };
  3233. cxQuestion.prototype.options = function () {
  3234. var tmpel = this.el.querySelector(".clearfix > ul,.clearfix ul.Zy_ulBottom.clearfix,ul.Zy_ulTk");
  3235. var list = tmpel.querySelectorAll("li");
  3236. return list;
  3237. };
  3238. cxQuestion.prototype.isCorrect = function () {
  3239. var el = this.el.querySelector(".Py_answer.clearfix,.Py_tk");
  3240. if (el) {
  3241. if (el.querySelectorAll('.fr.dui').length > 0 || el.querySelectorAll('.fr.bandui').length > 0) {
  3242. return el;
  3243. }
  3244. else if (el.innerHTML.indexOf('正确答案') >= 0) {
  3245. return el;
  3246. }
  3247. }
  3248. var topic = this.el.querySelector(".Cy_TItle.clearfix");
  3249. if (!topic) {
  3250. return null;
  3251. }
  3252. var fs = topic.querySelector(".font18.fb");
  3253. if (fs && fs.innerHTML != "0.0") {
  3254. return el;
  3255. }
  3256. return null;
  3257. };
  3258. cxQuestion.prototype.defaultAnswer = function () {
  3259. var ret = new question_1.PushAnswer();
  3260. ret.topic = this.GetTopic();
  3261. ret.type = this.GetType();
  3262. ret.correct = new Array();
  3263. ret.answers = new Array();
  3264. return ret;
  3265. };
  3266. return cxQuestion;
  3267. }());
  3268. var cxSelectQuestion = /** @class */ (function (_super) {
  3269. __extends(cxSelectQuestion, _super);
  3270. function cxSelectQuestion() {
  3271. return _super !== null && _super.apply(this, arguments) || this;
  3272. }
  3273. cxSelectQuestion.prototype.getContent = function (el) {
  3274. var ret = el.querySelector("a");
  3275. if (ret == null) {
  3276. var tmpel = el.querySelector("label > input,input");
  3277. if (tmpel.value == "true") {
  3278. return "对√";
  3279. }
  3280. return "错×";
  3281. }
  3282. return ret.innerHTML;
  3283. };
  3284. cxSelectQuestion.prototype.getOption = function (el) {
  3285. return el.querySelector("input").value;
  3286. };
  3287. cxSelectQuestion.prototype.click = function (el, content) {
  3288. var ipt = el.querySelector("label > input");
  3289. if (!ipt.checked) {
  3290. ipt.click();
  3291. }
  3292. this.AddNotice(this.getOption(el) + ":" + content);
  3293. };
  3294. cxSelectQuestion.prototype.Random = function () {
  3295. var options = this.options();
  3296. var pos = utils_1.randNumber(0, options.length - 1);
  3297. this.click(options[pos], this.getContent(options[pos]));
  3298. return "random";
  3299. };
  3300. cxSelectQuestion.prototype.Fill = function (s) {
  3301. var _this = this;
  3302. return new Promise(function (resolve) {
  3303. var options = _this.options();
  3304. var flag = false;
  3305. for (var i = 0; i < s.correct.length; i++) {
  3306. for (var j = 0; j < options.length; j++) {
  3307. if (s.correct[i].content.trim() == "") {
  3308. if (_this.getOption(options[j]) == s.correct[i].option) {
  3309. _this.click(options[j], _this.getContent(options[j]));
  3310. flag = true;
  3311. }
  3312. }
  3313. else if (s.Equal(_this.getContent(options[j]), s.correct[i].content)) {
  3314. _this.click(options[j], s.correct[i].content);
  3315. flag = true;
  3316. }
  3317. }
  3318. }
  3319. if (flag) {
  3320. return resolve("ok");
  3321. }
  3322. return resolve("no_match");
  3323. });
  3324. };
  3325. cxSelectQuestion.prototype.Correct = function () {
  3326. var correct = this.isCorrect();
  3327. if (correct == null) {
  3328. return null;
  3329. }
  3330. var ret = this.defaultAnswer();
  3331. var options = this.el.querySelectorAll(".Zy_ulTop > li.clearfix,.Cy_ulTop li");
  3332. var correctText = correct.querySelector("span").innerText;
  3333. for (var i = 0; i < options.length; i++) {
  3334. var optionText = options[i].querySelector("i.fl").innerText;
  3335. var option = {
  3336. option: optionText.substring(0, 1),
  3337. content: options[i].querySelector("a.fl,a").innerHTML,
  3338. };
  3339. ret.answers.push(option);
  3340. if (correctText.indexOf(option.option) > 0) {
  3341. ret.correct.push(option);
  3342. }
  3343. }
  3344. return ret;
  3345. };
  3346. return cxSelectQuestion;
  3347. }(cxQuestion));
  3348. var cxJudgeQuestion = /** @class */ (function (_super) {
  3349. __extends(cxJudgeQuestion, _super);
  3350. function cxJudgeQuestion() {
  3351. return _super !== null && _super.apply(this, arguments) || this;
  3352. }
  3353. cxJudgeQuestion.prototype.getContent = function (el) {
  3354. var tmpel = el.querySelector("label > input,input");
  3355. if (tmpel.value == "true") {
  3356. return "对√";
  3357. }
  3358. return "错×";
  3359. };
  3360. cxJudgeQuestion.prototype.click = function (el) {
  3361. var tmpel = el.querySelector("label > input,input");
  3362. if (!tmpel.checked) {
  3363. tmpel.click();
  3364. }
  3365. this.AddNotice(this.getContent(el));
  3366. };
  3367. cxJudgeQuestion.prototype.Random = function () {
  3368. var options = this.options();
  3369. var pos = utils_1.randNumber(0, 1);
  3370. this.click(options[pos]);
  3371. return "random";
  3372. };
  3373. cxJudgeQuestion.prototype.Fill = function (answer) {
  3374. var _this = this;
  3375. return new Promise(function (resolve) {
  3376. var options = _this.options();
  3377. _this.click(options[answer.correct[0].content ? 0 : 1]);
  3378. return resolve("ok");
  3379. });
  3380. };
  3381. cxJudgeQuestion.prototype.Correct = function () {
  3382. var el = this.el.querySelector(".Py_answer.clearfix");
  3383. var ret = this.defaultAnswer();
  3384. var score = this.el.querySelector(".Cy_TItle.clearfix .font18.fb");
  3385. if (el.innerHTML.indexOf('正确答案') !== -1 || (score && score.querySelector(".Cy_TItle.clearfix .font18.fb").innerHTML != "0.0")) {
  3386. var correctText_1 = el.querySelector("span").innerText;
  3387. if (correctText_1.indexOf('×') !== -1) {
  3388. ret.correct.push({ option: false, content: false });
  3389. }
  3390. else {
  3391. ret.correct.push({ option: true, content: true });
  3392. }
  3393. return ret;
  3394. }
  3395. if (!el.querySelectorAll('.fr.dui').length && !el.querySelectorAll('.fr.cuo').length) {
  3396. return null;
  3397. }
  3398. var correctText = el.querySelector("span").innerText;
  3399. if (el.querySelectorAll('.fr.dui').length) {
  3400. if (correctText.indexOf('×') !== -1) {
  3401. ret.correct.push({ option: false, content: false });
  3402. }
  3403. else {
  3404. ret.correct.push({ option: true, content: true });
  3405. }
  3406. }
  3407. else {
  3408. if (correctText.indexOf('×') !== -1) {
  3409. ret.correct.push({ option: true, content: true });
  3410. }
  3411. else {
  3412. ret.correct.push({ option: false, content: false });
  3413. }
  3414. }
  3415. return ret;
  3416. };
  3417. return cxJudgeQuestion;
  3418. }(cxSelectQuestion));
  3419. var cxFillQuestion = /** @class */ (function (_super) {
  3420. __extends(cxFillQuestion, _super);
  3421. function cxFillQuestion() {
  3422. return _super !== null && _super.apply(this, arguments) || this;
  3423. }
  3424. cxFillQuestion.prototype.getOption = function (el) {
  3425. if (el.className == "XztiHover1") {
  3426. return utils_1.substrex(el.previousElementSibling.innerHTML, "第", "空");
  3427. }
  3428. var tmpel = el.querySelector("span.fb");
  3429. return utils_1.substrex(tmpel.innerHTML, "第", "空");
  3430. };
  3431. cxFillQuestion.prototype.Random = function () {
  3432. return "no_support_random";
  3433. };
  3434. cxFillQuestion.prototype.Correct = function () {
  3435. var correct = this.isCorrect();
  3436. if (correct == null) {
  3437. return null;
  3438. }
  3439. var ret = this.defaultAnswer();
  3440. var options = this.el.querySelectorAll(".Py_tk span.font14");
  3441. var isMy = false;
  3442. if (options.length <= 0) {
  3443. isMy = true;
  3444. options = this.el.querySelectorAll(".Py_answer.clearfix .font14");
  3445. }
  3446. for (var i = 0; i < options.length; i++) {
  3447. if (isMy && options[i].querySelectorAll(".fr.dui").length <= 0) {
  3448. continue;
  3449. }
  3450. var optionEl = options[i].querySelector("i.fl");
  3451. var option = {
  3452. option: utils_1.substrex(optionEl.innerHTML, "第", "空"),
  3453. content: options[i].querySelector(".clearfix").innerText,
  3454. };
  3455. ret.correct.push(option);
  3456. }
  3457. return ret;
  3458. };
  3459. cxFillQuestion.prototype.Fill = function (answer) {
  3460. var _this = this;
  3461. return new Promise(function (resolve) {
  3462. var options = _this.options();
  3463. if (!options.length) {
  3464. options = _this.el.querySelector('.Zy_ulTk').querySelectorAll(".XztiHover1");
  3465. }
  3466. var flag = 0;
  3467. for (var i = 0; i < answer.correct.length; i++) {
  3468. for (var j = 0; j < options.length; j++) {
  3469. if (_this.getOption(options[j]) == answer.correct[i].option) {
  3470. flag++;
  3471. var el = options[j].querySelector("input.inp");
  3472. if (!el) {
  3473. var uedit = _this.context.$(options[j]).find('textarea');
  3474. if (uedit.length <= 0) {
  3475. _this.AddNotice(_this.getOption(options[j]) + "空发生了一个错误");
  3476. continue;
  3477. }
  3478. _this.context.UE.getEditor(uedit.attr('name')).setContent(answer.correct[i].content);
  3479. _this.AddNotice(_this.getOption(options[j]) + ":" + answer.correct[i].content);
  3480. }
  3481. else {
  3482. el.value = utils_1.removeHTMLTag(answer.correct[i].content);
  3483. _this.AddNotice(_this.getOption(options[j]) + ":" + answer.correct[i].content);
  3484. }
  3485. }
  3486. }
  3487. }
  3488. if (flag == options.length) {
  3489. return resolve("ok");
  3490. }
  3491. return resolve("no_match");
  3492. });
  3493. };
  3494. return cxFillQuestion;
  3495. }(cxQuestion));
  3496. //TODO: 优化
  3497. var cxExamSelectQuestion = /** @class */ (function (_super) {
  3498. __extends(cxExamSelectQuestion, _super);
  3499. function cxExamSelectQuestion() {
  3500. return _super !== null && _super.apply(this, arguments) || this;
  3501. }
  3502. cxExamSelectQuestion.prototype.options = function () {
  3503. return this.el.querySelectorAll(".Cy_ulBottom.clearfix.w-buttom li input");
  3504. };
  3505. cxExamSelectQuestion.prototype.getContent = function (el) {
  3506. var textOption = this.el.querySelectorAll(".Cy_ulTop.w-top li div.clearfix a");
  3507. var tmpli = el.parentElement.parentElement;
  3508. var pos = -1;
  3509. do {
  3510. tmpli = tmpli.previousElementSibling;
  3511. pos++;
  3512. } while (tmpli != null);
  3513. return textOption[pos].innerHTML;
  3514. };
  3515. cxExamSelectQuestion.prototype.getOption = function (el) {
  3516. return el.parentElement.innerText;
  3517. };
  3518. cxExamSelectQuestion.prototype.click = function (el, content) {
  3519. el.click();
  3520. this.AddNotice(this.getOption(el) + ":" + content);
  3521. };
  3522. return cxExamSelectQuestion;
  3523. }(cxSelectQuestion));
  3524. var cxExamFillQuestion = /** @class */ (function (_super) {
  3525. __extends(cxExamFillQuestion, _super);
  3526. function cxExamFillQuestion() {
  3527. return _super !== null && _super.apply(this, arguments) || this;
  3528. }
  3529. cxExamFillQuestion.prototype.options = function () {
  3530. return this.el.querySelectorAll(".Cy_ulTk .XztiHover1");
  3531. };
  3532. cxExamFillQuestion.prototype.getOption = function (el) {
  3533. var tmpel = el.querySelector(".fb.font14");
  3534. return utils_1.substrex(tmpel.innerHTML, "第", "空");
  3535. };
  3536. cxExamFillQuestion.prototype.Fill = function (answer) {
  3537. var _this = this;
  3538. return new Promise(function (resolve) {
  3539. var options = _this.options();
  3540. var flag = 0;
  3541. for (var i = 0; i < answer.correct.length; i++) {
  3542. for (var j = 0; j < options.length; j++) {
  3543. if (_this.getOption(options[j]) == answer.correct[i].option) {
  3544. flag++;
  3545. var uedit = window.$(options[j]).find('textarea');
  3546. if (uedit.length <= 0) {
  3547. _this.AddNotice(_this.getOption(options[j]) + "空发生了一个错误");
  3548. continue;
  3549. }
  3550. window.UE.getEditor(uedit.attr('name')).setContent(answer.correct[i].content);
  3551. _this.AddNotice(_this.getOption(options[j]) + ":" + answer.correct[i].content);
  3552. }
  3553. }
  3554. }
  3555. if (flag == options.length) {
  3556. return resolve("ok");
  3557. }
  3558. return resolve("no_match");
  3559. });
  3560. };
  3561. cxExamFillQuestion.prototype.Correct = function () {
  3562. var correct = this.isCorrect();
  3563. if (correct == null) {
  3564. return null;
  3565. }
  3566. var ret = this.defaultAnswer();
  3567. var options = this.el.querySelectorAll(".Py_tk div[id] span.font14");
  3568. var isMy = false;
  3569. if (options.length <= 0) {
  3570. isMy = true;
  3571. options = this.el.querySelectorAll(".Py_answer.clearfix .font14");
  3572. }
  3573. for (var i = 0; i < options.length; i++) {
  3574. if (isMy && options[i].querySelectorAll(".fr.dui").length <= 0) {
  3575. continue;
  3576. }
  3577. var optionEl = options[i].querySelector("i");
  3578. var option = {
  3579. option: utils_1.substrex(optionEl.innerHTML, "第", "空"),
  3580. content: options[i].innerHTML.substr(options[i].innerHTML.indexOf("</i>") + 4),
  3581. };
  3582. ret.correct.push(option);
  3583. }
  3584. return ret;
  3585. };
  3586. return cxExamFillQuestion;
  3587. }(cxFillQuestion));
  3588. var cxExamJudgeQuestion = /** @class */ (function (_super) {
  3589. __extends(cxExamJudgeQuestion, _super);
  3590. function cxExamJudgeQuestion() {
  3591. return _super !== null && _super.apply(this, arguments) || this;
  3592. }
  3593. cxExamJudgeQuestion.prototype.options = function () {
  3594. return this.el.querySelectorAll(".Cy_ulBottom.clearfix li");
  3595. };
  3596. return cxExamJudgeQuestion;
  3597. }(cxJudgeQuestion));
  3598.  
  3599.  
  3600. /***/ }),
  3601.  
  3602. /***/ "./src/mooc/chaoxing/read.ts":
  3603. /*!***********************************!*\
  3604. !*** ./src/mooc/chaoxing/read.ts ***!
  3605. \***********************************/
  3606. /*! no static exports found */
  3607. /***/ (function(module, exports, __webpack_require__) {
  3608.  
  3609. "use strict";
  3610.  
  3611. Object.defineProperty(exports, "__esModule", { value: true });
  3612. exports.Exam = exports.ReadStartPage = exports.Read = void 0;
  3613. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  3614. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  3615. var question_1 = __webpack_require__(/*! @App/internal/app/question */ "./src/internal/app/question.ts");
  3616. var Read = /** @class */ (function () {
  3617. function Read() {
  3618. }
  3619. Read.prototype.Init = function () {
  3620. var timer;
  3621. var slide = function () {
  3622. if (window.getScrollHeight() - window.getHeight() <= window.getScrollTop() + 40) {
  3623. var next = document.querySelectorAll('.mb15.course_section > a.wh.wh');
  3624. var flag = false;
  3625. for (var i = 0; i < next.length; i++) {
  3626. if (flag) {
  3627. next[i].click();
  3628. return;
  3629. }
  3630. if (document.URL == next[i].href) {
  3631. flag = true;
  3632. }
  3633. }
  3634. application_1.Application.App.log.Warn("阅读完成啦~");
  3635. clearTimeout(timer);
  3636. return;
  3637. }
  3638. window.scrollTo(0, window.getScrollTop() + utils_1.randNumber(60, 80));
  3639. timer = setTimeout(slide, utils_1.randNumber(10, 20) * 500);
  3640. };
  3641. window.addEventListener("load", function () {
  3642. slide();
  3643. });
  3644. };
  3645. return Read;
  3646. }());
  3647. exports.Read = Read;
  3648. var ReadStartPage = /** @class */ (function () {
  3649. function ReadStartPage() {
  3650. }
  3651. ReadStartPage.prototype.Init = function () {
  3652. window.addEventListener("load", function () {
  3653. if (!application_1.Application.App.config.auto) {
  3654. return application_1.Application.App.log.Info("开启自动挂机能够自动阅读文章哦");
  3655. }
  3656. application_1.Application.App.log.Info("请在10秒内选择章节,否则扩展将从第一章自动开始");
  3657. setTimeout(function () {
  3658. var el = document.querySelector(".mb15.course_section.fix");
  3659. el.querySelector("a").click();
  3660. }, 10000);
  3661. });
  3662. };
  3663. return ReadStartPage;
  3664. }());
  3665. exports.ReadStartPage = ReadStartPage;
  3666. var Exam = /** @class */ (function () {
  3667. function Exam() {
  3668. }
  3669. Exam.prototype.Init = function () {
  3670. var bank = new question_1.ToolsQuestionBank("cx");
  3671. window.addEventListener("load", function () {
  3672. var str = application_1.Application.GlobalContext.document.documentElement.innerHTML;
  3673. var m;
  3674. var regex = new RegExp(/goTest\(.*?,(\d+),\d+,.*?,(\d+),false,/g);
  3675. var info = new Array();
  3676. while ((m = regex.exec(str)) !== null) {
  3677. var tmp = { refer: document.URL, id: "exam-" + m[2], info: m[2] };
  3678. info.push(tmp);
  3679. }
  3680. regex = new RegExp(/lookUpPaper\('(\d+)','\d+','(\d+)'/g);
  3681. while ((m = regex.exec(str)) !== null) {
  3682. var tmp = { refer: document.URL, id: "exam-" + m[2], info: m[2] };
  3683. info.push(tmp);
  3684. }
  3685. bank.CheckCourse(info);
  3686. });
  3687. };
  3688. return Exam;
  3689. }());
  3690. exports.Exam = Exam;
  3691.  
  3692.  
  3693. /***/ }),
  3694.  
  3695. /***/ "./src/mooc/chaoxing/special.ts":
  3696. /*!**************************************!*\
  3697. !*** ./src/mooc/chaoxing/special.ts ***!
  3698. \**************************************/
  3699. /*! no static exports found */
  3700. /***/ (function(module, exports, __webpack_require__) {
  3701.  
  3702. "use strict";
  3703.  
  3704. var __extends = (this && this.__extends) || (function () {
  3705. var extendStatics = function (d, b) {
  3706. extendStatics = Object.setPrototypeOf ||
  3707. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3708. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  3709. return extendStatics(d, b);
  3710. };
  3711. return function (d, b) {
  3712. extendStatics(d, b);
  3713. function __() { this.constructor = d; }
  3714. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3715. };
  3716. })();
  3717. Object.defineProperty(exports, "__esModule", { value: true });
  3718. exports.CxAudioControlBar = exports.CxAudioTask = exports.CxAudioOptimization = exports.CxDocumentTask = void 0;
  3719. var task_1 = __webpack_require__(/*! @App/mooc/chaoxing/task */ "./src/mooc/chaoxing/task.ts");
  3720. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  3721. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  3722. var video_1 = __webpack_require__(/*! @App/mooc/chaoxing/video */ "./src/mooc/chaoxing/video.ts");
  3723. var utils_2 = __webpack_require__(/*! @App/mooc/chaoxing/utils */ "./src/mooc/chaoxing/utils.ts");
  3724. var hook_1 = __webpack_require__(/*! @App/internal/utils/hook */ "./src/internal/utils/hook.ts");
  3725. var CxDocumentTask = /** @class */ (function (_super) {
  3726. __extends(CxDocumentTask, _super);
  3727. function CxDocumentTask() {
  3728. return _super !== null && _super.apply(this, arguments) || this;
  3729. }
  3730. CxDocumentTask.prototype.Start = function () {
  3731. var _this = this;
  3732. return new Promise(function (resolve) {
  3733. var next = function () {
  3734. var el = _this.context.document.querySelector(".imglook > .mkeRbtn");
  3735. if (el.style.visibility == "hidden") {
  3736. _this.callEvent("complete");
  3737. return;
  3738. }
  3739. el.click();
  3740. _this.time = _this.context.setTimeout(next, utils_1.randNumber(1, 5) * 1000);
  3741. resolve();
  3742. };
  3743. _this.time = _this.context.setTimeout(next, utils_1.randNumber(1, 5) * 1000);
  3744. });
  3745. };
  3746. CxDocumentTask.prototype.Type = function () {
  3747. return "document";
  3748. };
  3749. return CxDocumentTask;
  3750. }(task_1.CxTask));
  3751. exports.CxDocumentTask = CxDocumentTask;
  3752. var CxAudioOptimization = /** @class */ (function (_super) {
  3753. __extends(CxAudioOptimization, _super);
  3754. function CxAudioOptimization() {
  3755. return _super !== null && _super.apply(this, arguments) || this;
  3756. }
  3757. CxAudioOptimization.prototype.Init = function () {
  3758. var _this = this;
  3759. //对播放器进行优化
  3760. window.addEventListener("load", function () {
  3761. application_1.Application.App.config.super_mode && utils_1.isPhone() && (application_1.Application.GlobalContext.Ext.isChaoxing = true);
  3762. });
  3763. this.hook();
  3764. document.addEventListener("readystatechange", function () {
  3765. _this.hook();
  3766. });
  3767. this.Api();
  3768. };
  3769. CxAudioOptimization.prototype.hook = function () {
  3770. if (document.readyState != "interactive") {
  3771. return;
  3772. }
  3773. application_1.Application.App.log.Debug("hook cx audio");
  3774. var self = this;
  3775. var paramHook = new hook_1.Hook("params2VideoOpt", application_1.Application.GlobalContext.ans.AudioJs.prototype);
  3776. paramHook.Middleware(function (next) {
  3777. var args = [];
  3778. for (var _i = 1; _i < arguments.length; _i++) {
  3779. args[_i - 1] = arguments[_i];
  3780. }
  3781. self.param = args[0];
  3782. return next.apply(this, args);
  3783. });
  3784. application_1.Application.GlobalContext.Ext.isSogou = false;
  3785. };
  3786. return CxAudioOptimization;
  3787. }(video_1.CxVideoOptimization));
  3788. exports.CxAudioOptimization = CxAudioOptimization;
  3789. var CxAudioTask = /** @class */ (function (_super) {
  3790. __extends(CxAudioTask, _super);
  3791. function CxAudioTask() {
  3792. return _super !== null && _super.apply(this, arguments) || this;
  3793. }
  3794. CxAudioTask.prototype.queryVideo = function () {
  3795. return this.context.document.getElementById("audio_html5_api");
  3796. };
  3797. return CxAudioTask;
  3798. }(video_1.Video));
  3799. exports.CxAudioTask = CxAudioTask;
  3800. var CxAudioControlBar = /** @class */ (function (_super) {
  3801. __extends(CxAudioControlBar, _super);
  3802. function CxAudioControlBar() {
  3803. return _super !== null && _super.apply(this, arguments) || this;
  3804. }
  3805. CxAudioControlBar.prototype.defaultBtn = function () {
  3806. var _this = this;
  3807. _super.prototype.defaultBtn.call(this);
  3808. var pass = utils_2.CssBtn(utils_1.createBtn("秒过嘤频", "秒过会被后台检测到", "cx-btn"));
  3809. pass.style.background = "#F57C00";
  3810. pass.onclick = function () {
  3811. if (!utils_1.protocolPrompt("秒过会产生不良记录,是否继续?", "boom_audio_no_prompt")) {
  3812. return;
  3813. }
  3814. _this.task.sendEndTimePack(function (isPassed) {
  3815. if (isPassed) {
  3816. alert('秒过成功,刷新后查看效果');
  3817. }
  3818. else {
  3819. alert('操作失败,错误');
  3820. }
  3821. });
  3822. };
  3823. this.prev.append(pass, this.download());
  3824. };
  3825. return CxAudioControlBar;
  3826. }(task_1.CxTaskControlBar));
  3827. exports.CxAudioControlBar = CxAudioControlBar;
  3828.  
  3829.  
  3830. /***/ }),
  3831.  
  3832. /***/ "./src/mooc/chaoxing/task.ts":
  3833. /*!***********************************!*\
  3834. !*** ./src/mooc/chaoxing/task.ts ***!
  3835. \***********************************/
  3836. /*! no static exports found */
  3837. /***/ (function(module, exports, __webpack_require__) {
  3838.  
  3839. "use strict";
  3840.  
  3841. var __extends = (this && this.__extends) || (function () {
  3842. var extendStatics = function (d, b) {
  3843. extendStatics = Object.setPrototypeOf ||
  3844. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3845. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  3846. return extendStatics(d, b);
  3847. };
  3848. return function (d, b) {
  3849. extendStatics(d, b);
  3850. function __() { this.constructor = d; }
  3851. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3852. };
  3853. })();
  3854. var __spreadArrays = (this && this.__spreadArrays) || function () {
  3855. for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
  3856. for (var r = Array(s), k = 0, i = 0; i < il; i++)
  3857. for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
  3858. r[k] = a[j];
  3859. return r;
  3860. };
  3861. Object.defineProperty(exports, "__esModule", { value: true });
  3862. exports.CxTaskControlBar = exports.CxTask = void 0;
  3863. var utils_1 = __webpack_require__(/*! @App/mooc/chaoxing/utils */ "./src/mooc/chaoxing/utils.ts");
  3864. var utils_2 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  3865. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  3866. var task_1 = __webpack_require__(/*! @App/internal/app/task */ "./src/internal/app/task.ts");
  3867. var CxTask = /** @class */ (function (_super) {
  3868. __extends(CxTask, _super);
  3869. function CxTask(context, taskinfo) {
  3870. var _this = _super.call(this) || this;
  3871. _this.taskinfo = taskinfo;
  3872. _this.context = context;
  3873. if (_this.taskinfo.job) {
  3874. _this.done = false;
  3875. }
  3876. else {
  3877. _this.done = true;
  3878. }
  3879. return _this;
  3880. }
  3881. CxTask.prototype.callEvent = function (event) {
  3882. var args = [];
  3883. for (var _i = 1; _i < arguments.length; _i++) {
  3884. args[_i - 1] = arguments[_i];
  3885. }
  3886. if (event == "complete") {
  3887. this.done = true;
  3888. }
  3889. _super.prototype.callEvent.apply(this, __spreadArrays([event], args));
  3890. };
  3891. CxTask.prototype.Init = function () {
  3892. return new Promise(function (resolve) {
  3893. resolve();
  3894. });
  3895. };
  3896. CxTask.prototype.Submit = function () {
  3897. return new Promise(function (resolve) {
  3898. resolve();
  3899. });
  3900. };
  3901. //TODO:停止
  3902. CxTask.prototype.Stop = function () {
  3903. return new Promise(function (resolve) {
  3904. resolve();
  3905. });
  3906. };
  3907. CxTask.prototype.Done = function () {
  3908. return this.done;
  3909. };
  3910. return CxTask;
  3911. }(task_1.Task));
  3912. exports.CxTask = CxTask;
  3913. var CxTaskControlBar = /** @class */ (function () {
  3914. function CxTaskControlBar(prev, task) {
  3915. this.task = task;
  3916. this.prev = document.createElement("div");
  3917. prev.style.textAlign = "center";
  3918. prev.style.width = "100%";
  3919. prev.prepend(this.prev);
  3920. this.defaultBtn();
  3921. }
  3922. CxTaskControlBar.prototype.defaultBtn = function () {
  3923. var _this = this;
  3924. var startBtn = utils_1.CssBtn(utils_2.createBtn(application_1.Application.App.config.auto ? "暂停挂机" : "开始挂机", "点击开始自动挂机", "cx-btn"));
  3925. startBtn.onclick = function () {
  3926. if (startBtn.innerText == '暂停挂机') {
  3927. application_1.Application.App.config.auto = false;
  3928. startBtn.innerText = "开始挂机";
  3929. startBtn.title = "点击开始自动挂机";
  3930. application_1.Application.App.log.Info("挂机停止了");
  3931. }
  3932. else {
  3933. application_1.Application.App.config.auto = true;
  3934. startBtn.innerText = '暂停挂机';
  3935. startBtn.title = "停止挂机,开始好好学习";
  3936. application_1.Application.App.log.Info("挂机开始了");
  3937. _this.task.Start();
  3938. }
  3939. };
  3940. this.prev.append(startBtn);
  3941. };
  3942. CxTaskControlBar.prototype.append = function (el) {
  3943. this.prev.append(el);
  3944. };
  3945. CxTaskControlBar.prototype.download = function () {
  3946. var _this = this;
  3947. if (!this.task.taskinfo.property.objectid) {
  3948. return;
  3949. }
  3950. var download = utils_1.CssBtn(utils_2.createBtn("下载资源", "我要下载下来好好学习", "cx-btn"));
  3951. download.style.background = "#999999";
  3952. download.onclick = function () {
  3953. utils_2.get("https://mooc1-1.chaoxing.com/ananas/status/" + _this.task.taskinfo.property.objectid, function (data) {
  3954. var json = JSON.parse(data);
  3955. prompt("如果打开下载失败,请复制下面链接手动下载", json.download);
  3956. window.open(json.download);
  3957. }).error(function () {
  3958. alert("资源信息获取失败");
  3959. });
  3960. };
  3961. return download;
  3962. };
  3963. return CxTaskControlBar;
  3964. }());
  3965. exports.CxTaskControlBar = CxTaskControlBar;
  3966.  
  3967.  
  3968. /***/ }),
  3969.  
  3970. /***/ "./src/mooc/chaoxing/topic.ts":
  3971. /*!************************************!*\
  3972. !*** ./src/mooc/chaoxing/topic.ts ***!
  3973. \************************************/
  3974. /*! no static exports found */
  3975. /***/ (function(module, exports, __webpack_require__) {
  3976.  
  3977. "use strict";
  3978.  
  3979. var __extends = (this && this.__extends) || (function () {
  3980. var extendStatics = function (d, b) {
  3981. extendStatics = Object.setPrototypeOf ||
  3982. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3983. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  3984. return extendStatics(d, b);
  3985. };
  3986. return function (d, b) {
  3987. extendStatics(d, b);
  3988. function __() { this.constructor = d; }
  3989. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3990. };
  3991. })();
  3992. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  3993. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  3994. return new (P || (P = Promise))(function (resolve, reject) {
  3995. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  3996. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  3997. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  3998. step((generator = generator.apply(thisArg, _arguments || [])).next());
  3999. });
  4000. };
  4001. var __generator = (this && this.__generator) || function (thisArg, body) {
  4002. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  4003. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  4004. function verb(n) { return function (v) { return step([n, v]); }; }
  4005. function step(op) {
  4006. if (f) throw new TypeError("Generator is already executing.");
  4007. while (_) try {
  4008. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  4009. if (y = 0, t) op = [op[0] & 2, t.value];
  4010. switch (op[0]) {
  4011. case 0: case 1: t = op; break;
  4012. case 4: _.label++; return { value: op[1], done: false };
  4013. case 5: _.label++; y = op[1]; op = [0]; continue;
  4014. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  4015. default:
  4016. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  4017. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  4018. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  4019. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  4020. if (t[2]) _.ops.pop();
  4021. _.trys.pop(); continue;
  4022. }
  4023. op = body.call(thisArg, _);
  4024. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  4025. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  4026. }
  4027. };
  4028. Object.defineProperty(exports, "__esModule", { value: true });
  4029. exports.HomeworkTopic = exports.ExamTopic = exports.CxCourseTopic = exports.CxCourseQueryQuestion = exports.TopicAdapter = exports.CxTopicControlBar = void 0;
  4030. var utils_1 = __webpack_require__(/*! ./utils */ "./src/mooc/chaoxing/utils.ts");
  4031. var utils_2 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  4032. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  4033. var question_1 = __webpack_require__(/*! @App/internal/app/question */ "./src/internal/app/question.ts");
  4034. var question_2 = __webpack_require__(/*! ./question */ "./src/mooc/chaoxing/question.ts");
  4035. var topic_1 = __webpack_require__(/*! @App/internal/app/topic */ "./src/internal/app/topic.ts");
  4036. var task_1 = __webpack_require__(/*! @App/mooc/chaoxing/task */ "./src/mooc/chaoxing/task.ts");
  4037. var CxTopicControlBar = /** @class */ (function (_super) {
  4038. __extends(CxTopicControlBar, _super);
  4039. function CxTopicControlBar() {
  4040. return _super !== null && _super.apply(this, arguments) || this;
  4041. }
  4042. CxTopicControlBar.prototype.defaultBtn = function () {
  4043. var _this = this;
  4044. _super.prototype.defaultBtn.call(this);
  4045. var topic = utils_1.CssBtn(utils_2.createBtn("搜索题目", "点击搜索题目答案", "cx-btn"));
  4046. topic.style.background = "#3fae93";
  4047. this.prev.append(topic);
  4048. // 绑定事件
  4049. topic.onclick = function () { return __awaiter(_this, void 0, void 0, function () {
  4050. return __generator(this, function (_a) {
  4051. topic.innerText = "答案搜索中...";
  4052. this.task.Start().then(function (ret) {
  4053. ret = ret || "搜索题目";
  4054. topic.innerText = question_1.QuestionStatusString(ret);
  4055. });
  4056. return [2 /*return*/];
  4057. });
  4058. }); };
  4059. };
  4060. return CxTopicControlBar;
  4061. }(task_1.CxTaskControlBar));
  4062. exports.CxTopicControlBar = CxTopicControlBar;
  4063. var TopicAdapter = /** @class */ (function (_super) {
  4064. __extends(TopicAdapter, _super);
  4065. function TopicAdapter(context, taskinfo, topic) {
  4066. var _this = _super.call(this, context, taskinfo) || this;
  4067. _this.topic = topic;
  4068. return _this;
  4069. }
  4070. TopicAdapter.prototype.Init = function () {
  4071. var _this = this;
  4072. return new Promise(function (resolve) { return __awaiter(_this, void 0, void 0, function () {
  4073. return __generator(this, function (_a) {
  4074. switch (_a.label) {
  4075. case 0:
  4076. application_1.Application.App.log.Debug("题目信息", this.taskinfo);
  4077. return [4 /*yield*/, this.topic.Init()];
  4078. case 1:
  4079. _a.sent();
  4080. resolve(undefined);
  4081. return [2 /*return*/];
  4082. }
  4083. });
  4084. }); });
  4085. };
  4086. TopicAdapter.prototype.Start = function () {
  4087. var _this = this;
  4088. return new Promise(function (resolve) { return __awaiter(_this, void 0, void 0, function () {
  4089. var ret;
  4090. return __generator(this, function (_a) {
  4091. switch (_a.label) {
  4092. case 0:
  4093. if (this.lock) {
  4094. return [2 /*return*/, resolve("processing")];
  4095. }
  4096. this.lock = true;
  4097. return [4 /*yield*/, this.topic.QueryAnswer()];
  4098. case 1:
  4099. ret = _a.sent();
  4100. this.status = ret;
  4101. this.callEvent("complete");
  4102. this.lock = false;
  4103. return [2 /*return*/, resolve(ret)];
  4104. }
  4105. });
  4106. }); });
  4107. };
  4108. TopicAdapter.prototype.Type = function () {
  4109. return "topic";
  4110. };
  4111. TopicAdapter.prototype.Submit = function () {
  4112. return __awaiter(this, void 0, void 0, function () {
  4113. var _this = this;
  4114. return __generator(this, function (_a) {
  4115. return [2 /*return*/, new Promise(function (resolve) {
  4116. if (_this.status == "success") {
  4117. _this.topic.Submit().then(function () {
  4118. resolve();
  4119. });
  4120. }
  4121. else {
  4122. resolve();
  4123. }
  4124. })];
  4125. });
  4126. });
  4127. };
  4128. return TopicAdapter;
  4129. }(task_1.CxTask));
  4130. exports.TopicAdapter = TopicAdapter;
  4131. var CxCourseQueryQuestion = /** @class */ (function () {
  4132. function CxCourseQueryQuestion(content, createQuestion) {
  4133. this.context = content;
  4134. this.createQuestion = createQuestion;
  4135. }
  4136. CxCourseQueryQuestion.prototype.QueryQuestions = function () {
  4137. var _this = this;
  4138. var timu = this.context.document.querySelectorAll(".TiMu");
  4139. var ret = new Array();
  4140. timu.forEach(function (val) {
  4141. var question = _this.createQuestion(_this.context, val);
  4142. if (question == null) {
  4143. return;
  4144. }
  4145. ret.push(question);
  4146. });
  4147. return ret;
  4148. };
  4149. return CxCourseQueryQuestion;
  4150. }());
  4151. exports.CxCourseQueryQuestion = CxCourseQueryQuestion;
  4152. var CxCourseTopic = /** @class */ (function (_super) {
  4153. __extends(CxCourseTopic, _super);
  4154. function CxCourseTopic(content, answer) {
  4155. var _this = _super.call(this, content, answer) || this;
  4156. answer.CheckCourse();
  4157. return _this;
  4158. }
  4159. CxCourseTopic.prototype.Init = function () {
  4160. var _this = this;
  4161. return new Promise(function (resolve) {
  4162. var timer = _this.context.setInterval(function () { return __awaiter(_this, void 0, void 0, function () {
  4163. return __generator(this, function (_a) {
  4164. switch (_a.label) {
  4165. case 0:
  4166. if (!(this.context.document.readyState == "complete")) return [3 /*break*/, 3];
  4167. this.context.clearInterval(timer);
  4168. if (!(this.context.document.URL.indexOf("selectWorkQuestionYiPiYue") > 0)) return [3 /*break*/, 2];
  4169. return [4 /*yield*/, this.CollectAnswer()];
  4170. case 1:
  4171. _a.sent();
  4172. _a.label = 2;
  4173. case 2:
  4174. resolve(undefined);
  4175. _a.label = 3;
  4176. case 3: return [2 /*return*/];
  4177. }
  4178. });
  4179. }); }, 500);
  4180. });
  4181. };
  4182. CxCourseTopic.prototype.QueryAnswer = function () {
  4183. if (this.context.document.URL.indexOf("selectWorkQuestionYiPiYue") > 0) {
  4184. return null;
  4185. }
  4186. return _super.prototype.QueryAnswer.call(this);
  4187. };
  4188. CxCourseTopic.prototype.Submit = function () {
  4189. var _this = this;
  4190. return new Promise(function (resolve) {
  4191. application_1.Application.App.log.Info("准备提交答案");
  4192. var self = _this;
  4193. _this.context.setTimeout(function () {
  4194. var submit = _this.context.document.querySelector(".Btn_blue_1");
  4195. submit.click();
  4196. _this.context.setTimeout(function () {
  4197. var prompt = _this.context.document.querySelector("#tipContent").innerHTML;
  4198. if (prompt.indexOf("未做完") > 0) {
  4199. alert("提示:" + prompt);
  4200. resolve("未做完");
  4201. application_1.Application.App.log.Fatal("有题目未完成,请手动操作.提示:" + prompt);
  4202. return;
  4203. }
  4204. var timer = _this.context.setInterval(function () {
  4205. prompt = document.getElementById("validate");
  4206. if (prompt.style.display != 'none') {
  4207. //等待验证码接管
  4208. return;
  4209. }
  4210. _this.context.clearInterval(timer);
  4211. _this.context.parent.document.querySelector("#frame_content")
  4212. .addEventListener("load", function () {
  4213. return __awaiter(this, void 0, void 0, function () {
  4214. return __generator(this, function (_a) {
  4215. switch (_a.label) {
  4216. case 0:
  4217. if (!(this.contentWindow.document.URL.indexOf('selectWorkQuestionYiPiYue') > 0)) return [3 /*break*/, 2];
  4218. return [4 /*yield*/, self.CollectAnswer()];
  4219. case 1:
  4220. _a.sent();
  4221. resolve(undefined);
  4222. _a.label = 2;
  4223. case 2: return [2 /*return*/];
  4224. }
  4225. });
  4226. });
  4227. });
  4228. //确定提交
  4229. var submit = _this.context.document.querySelector(".bluebtn");
  4230. submit.click();
  4231. }, 2000);
  4232. }, 2000);
  4233. }, 2000);
  4234. });
  4235. };
  4236. return CxCourseTopic;
  4237. }(topic_1.Topic));
  4238. exports.CxCourseTopic = CxCourseTopic;
  4239. var ExamTopic = /** @class */ (function (_super) {
  4240. __extends(ExamTopic, _super);
  4241. function ExamTopic() {
  4242. return _super !== null && _super.apply(this, arguments) || this;
  4243. }
  4244. ExamTopic.prototype.QueryQuestions = function () {
  4245. var current = document.querySelector(".current");
  4246. var topicType = question_1.SwitchTopicType(current.parentElement.previousElementSibling.innerText);
  4247. var question = question_2.CxQuestionFactory.CreateExamQuestion(window, topicType, document.querySelector(".leftContent.TiMu"));
  4248. var ret = new Array();
  4249. if (question == null) {
  4250. return ret;
  4251. }
  4252. ret.push(question);
  4253. return ret;
  4254. };
  4255. ExamTopic.prototype.Init = function () {
  4256. if (document.URL.indexOf("exam/test/reVersionPaperMarkContentNew") > 0) {
  4257. this.CollectAnswer();
  4258. }
  4259. return null;
  4260. };
  4261. ExamTopic.prototype.Submit = function () {
  4262. return new Promise(function (resolve) {
  4263. resolve(undefined);
  4264. });
  4265. };
  4266. return ExamTopic;
  4267. }(topic_1.Topic));
  4268. exports.ExamTopic = ExamTopic;
  4269. var HomeworkTopic = /** @class */ (function (_super) {
  4270. __extends(HomeworkTopic, _super);
  4271. function HomeworkTopic(content, answer) {
  4272. return _super.call(this, content, answer) || this;
  4273. }
  4274. HomeworkTopic.prototype.Init = function () {
  4275. var _this = this;
  4276. return new Promise(function (resolve) {
  4277. if (!document.querySelector("input#workRelationId")) {
  4278. _this.CollectAnswer();
  4279. }
  4280. resolve();
  4281. });
  4282. };
  4283. HomeworkTopic.prototype.Submit = function () {
  4284. return new Promise(function (resolve) {
  4285. resolve();
  4286. });
  4287. };
  4288. return HomeworkTopic;
  4289. }(CxCourseTopic));
  4290. exports.HomeworkTopic = HomeworkTopic;
  4291.  
  4292.  
  4293. /***/ }),
  4294.  
  4295. /***/ "./src/mooc/chaoxing/utils.ts":
  4296. /*!************************************!*\
  4297. !*** ./src/mooc/chaoxing/utils.ts ***!
  4298. \************************************/
  4299. /*! no static exports found */
  4300. /***/ (function(module, exports, __webpack_require__) {
  4301.  
  4302. "use strict";
  4303.  
  4304. Object.defineProperty(exports, "__esModule", { value: true });
  4305. exports.CreateNoteLine = exports.CssBtn = void 0;
  4306. /**
  4307. * 美化按钮
  4308. */
  4309. function CssBtn(btn) {
  4310. btn.style.outline = 'none';
  4311. btn.style.border = '0';
  4312. btn.style.background = '#7d9d35';
  4313. btn.style.color = '#fff';
  4314. btn.style.borderRadius = '4px';
  4315. btn.style.padding = '2px 8px';
  4316. btn.style.cursor = 'pointer';
  4317. btn.style.fontSize = '12px';
  4318. btn.style.marginLeft = '4px';
  4319. btn.onmousemove = function () {
  4320. btn.style.boxShadow = '1px 1px 1px 1px #ccc';
  4321. };
  4322. btn.onmouseout = function () {
  4323. btn.style.boxShadow = '';
  4324. };
  4325. return btn;
  4326. }
  4327. exports.CssBtn = CssBtn;
  4328. function CreateNoteLine(text, label, append, after) {
  4329. var p = document.createElement("p");
  4330. p.style.color = "red";
  4331. p.style.fontSize = "14px";
  4332. p.className = "prompt-line-" + label;
  4333. p.innerHTML = text;
  4334. if (append != undefined) {
  4335. append.append(p);
  4336. }
  4337. if (after != undefined) {
  4338. after.after(p);
  4339. }
  4340. return p;
  4341. }
  4342. exports.CreateNoteLine = CreateNoteLine;
  4343.  
  4344.  
  4345. /***/ }),
  4346.  
  4347. /***/ "./src/mooc/chaoxing/vcode.ts":
  4348. /*!************************************!*\
  4349. !*** ./src/mooc/chaoxing/vcode.ts ***!
  4350. \************************************/
  4351. /*! no static exports found */
  4352. /***/ (function(module, exports, __webpack_require__) {
  4353.  
  4354. "use strict";
  4355.  
  4356. Object.defineProperty(exports, "__esModule", { value: true });
  4357. exports.CxCourseVCode = void 0;
  4358. var utils_1 = __webpack_require__(/*! ./utils */ "./src/mooc/chaoxing/utils.ts");
  4359. var CxCourseVCode = /** @class */ (function () {
  4360. function CxCourseVCode() {
  4361. }
  4362. CxCourseVCode.prototype.Listen = function (callback) {
  4363. var imgel;
  4364. window.addEventListener("load", function () {
  4365. if (imgel = document.getElementById("imgVerCode")) {
  4366. imgel.addEventListener("load", function () {
  4367. if (imgel.getAttribute("src").indexOf('?') < 0) {
  4368. return;
  4369. }
  4370. var parent = document.querySelector('#sub').parentElement.parentElement;
  4371. var old = parent.querySelector(".prompt-line-dama");
  4372. if (old) {
  4373. old.remove();
  4374. }
  4375. var notice = utils_1.CreateNoteLine('cxmooc自动打码中...', 'dama', parent);
  4376. callback(new CxCourseFillVCode(imgel, notice));
  4377. });
  4378. }
  4379. });
  4380. };
  4381. return CxCourseVCode;
  4382. }());
  4383. exports.CxCourseVCode = CxCourseVCode;
  4384. var CxCourseFillVCode = /** @class */ (function () {
  4385. function CxCourseFillVCode(img, notice) {
  4386. this.img = img;
  4387. this.notice = notice;
  4388. }
  4389. CxCourseFillVCode.prototype.GetImage = function () {
  4390. return this.img;
  4391. };
  4392. CxCourseFillVCode.prototype.Fill = function (status, msg, code) {
  4393. switch (status) {
  4394. case "ok": {
  4395. this.notice.innerText = "cxmooc打码成功,准备提交";
  4396. document.querySelector('input#code').value = code;
  4397. setTimeout(function () {
  4398. document.querySelector('a#sub').click();
  4399. }, 3000);
  4400. break;
  4401. }
  4402. default: {
  4403. alert(msg);
  4404. this.notice.innerText = msg;
  4405. }
  4406. }
  4407. };
  4408. return CxCourseFillVCode;
  4409. }());
  4410.  
  4411.  
  4412. /***/ }),
  4413.  
  4414. /***/ "./src/mooc/chaoxing/video.ts":
  4415. /*!************************************!*\
  4416. !*** ./src/mooc/chaoxing/video.ts ***!
  4417. \************************************/
  4418. /*! no static exports found */
  4419. /***/ (function(module, exports, __webpack_require__) {
  4420.  
  4421. "use strict";
  4422.  
  4423. var __extends = (this && this.__extends) || (function () {
  4424. var extendStatics = function (d, b) {
  4425. extendStatics = Object.setPrototypeOf ||
  4426. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4427. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  4428. return extendStatics(d, b);
  4429. };
  4430. return function (d, b) {
  4431. extendStatics(d, b);
  4432. function __() { this.constructor = d; }
  4433. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4434. };
  4435. })();
  4436. Object.defineProperty(exports, "__esModule", { value: true });
  4437. exports.Video = exports.CxVideoControlBar = exports.CxVideoOptimization = void 0;
  4438. var hook_1 = __webpack_require__(/*! @App/internal/utils/hook */ "./src/internal/utils/hook.ts");
  4439. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  4440. var utils_1 = __webpack_require__(/*! @App/internal/utils/utils */ "./src/internal/utils/utils.ts");
  4441. var utils_2 = __webpack_require__(/*! ./utils */ "./src/mooc/chaoxing/utils.ts");
  4442. var task_1 = __webpack_require__(/*! @App/mooc/chaoxing/task */ "./src/mooc/chaoxing/task.ts");
  4443. // 优化播放器
  4444. var CxVideoOptimization = /** @class */ (function () {
  4445. function CxVideoOptimization() {
  4446. }
  4447. CxVideoOptimization.prototype.Init = function () {
  4448. var _this = this;
  4449. //对播放器进行优化
  4450. window.addEventListener("load", function () {
  4451. application_1.Application.App.config.super_mode && utils_1.isPhone() && (application_1.Application.GlobalContext.Ext.isChaoxing = true);
  4452. });
  4453. this.hook();
  4454. document.addEventListener("readystatechange", function () {
  4455. _this.hook();
  4456. });
  4457. this.Api();
  4458. };
  4459. CxVideoOptimization.prototype.hook = function () {
  4460. if (document.readyState != "interactive") {
  4461. return;
  4462. }
  4463. application_1.Application.App.log.Debug("hook cx video");
  4464. var dataHook = new hook_1.Hook("decode", application_1.Application.GlobalContext.Ext);
  4465. var self = this;
  4466. dataHook.Middleware(function (next) {
  4467. var args = [];
  4468. for (var _i = 1; _i < arguments.length; _i++) {
  4469. args[_i - 1] = arguments[_i];
  4470. }
  4471. var ret = next.apply(this, args);
  4472. if (application_1.Application.App.config.super_mode && ret.danmaku == 1) {
  4473. ret.danmaku = 0;
  4474. }
  4475. return ret;
  4476. });
  4477. window.frameElement.setAttribute("fastforward", "");
  4478. window.frameElement.setAttribute("switchwindow", "");
  4479. var paramHook = new hook_1.Hook("params2VideoOpt", application_1.Application.GlobalContext.ans.VideoJs.prototype);
  4480. paramHook.Middleware(function (next) {
  4481. var args = [];
  4482. for (var _i = 1; _i < arguments.length; _i++) {
  4483. args[_i - 1] = arguments[_i];
  4484. }
  4485. self.param = args[0];
  4486. var ret = next.apply(this, args);
  4487. ret.plugins.timelineObjects.url = self.param.rootPath + "/richvideo/initdatawithviewer";
  4488. var cdn = application_1.Application.App.config.video_cdn || localStorage["cdn"] || "公网1";
  4489. for (var i = 0; i < ret.playlines.length; i++) {
  4490. if (ret.playlines[i].label == cdn) {
  4491. var copy = ret.playlines[i];
  4492. ret.playlines.splice(i, 1);
  4493. ret.playlines.splice(0, 0, copy);
  4494. }
  4495. }
  4496. localStorage["cdn"] = ret.playlines[0].label;
  4497. delete ret.plugins.studyControl;
  4498. return ret;
  4499. });
  4500. application_1.Application.GlobalContext.Ext.isSogou = false;
  4501. var errorHook = new hook_1.Hook("afterRender", application_1.Application.GlobalContext.ans.videojs.ErrorDisplay.prototype);
  4502. errorHook.Middleware(function (next) {
  4503. var _this = this;
  4504. var args = [];
  4505. for (var _i = 1; _i < arguments.length; _i++) {
  4506. args[_i - 1] = arguments[_i];
  4507. }
  4508. var ret = next.apply(this, args);
  4509. setTimeout(function () {
  4510. var nowCdn = _this.renderData.selectedIndex;
  4511. var playlines = _this.renderData.playlines;
  4512. var cdn = application_1.Application.App.config.video_cdn || localStorage["cdn"] || "公网1";
  4513. for (var i = 0; i < playlines.length; i++) {
  4514. if (i != nowCdn) {
  4515. if (cdn == "") {
  4516. localStorage["cdn"] = playlines[i].label;
  4517. return _this.onSelected(i);
  4518. }
  4519. else if (cdn == playlines[i].label) {
  4520. localStorage["cdn"] = playlines[i].label;
  4521. return _this.onSelected(i);
  4522. }
  4523. }
  4524. }
  4525. var index = (nowCdn + 1) % playlines.length;
  4526. localStorage["cdn"] = playlines[index].label;
  4527. return _this.onSelected(index);
  4528. }, 2000);
  4529. return ret;
  4530. });
  4531. };
  4532. /**
  4533. * 操作方法
  4534. */
  4535. CxVideoOptimization.prototype.Api = function () {
  4536. var _this = this;
  4537. application_1.Application.GlobalContext.sendTimePack = function (time, callback) {
  4538. if (time == NaN || time == undefined) {
  4539. time = parseInt(_this.param.duration);
  4540. }
  4541. var playTime = Math.round(time || (_this.param.duration - utils_1.randNumber(1, 2)));
  4542. var enc = '[' + _this.param.clazzId + '][' + _this.param.userid + '][' +
  4543. _this.param.jobid + '][' + _this.param.objectId + '][' +
  4544. (playTime * 1000).toString() + '][d_yHJ!$pdA~5][' + (_this.param.duration * 1000).toString() + '][0_' +
  4545. _this.param.duration + ']';
  4546. enc = application_1.Application.GlobalContext.md5(enc);
  4547. utils_1.get(_this.param.reportUrl + '/' + _this.param.dtoken + '?clipTime=0_' + _this.param.duration +
  4548. '&otherInfo=' + _this.param.otherInfo +
  4549. '&userid=' + _this.param.userid + '&rt=0.9&jobid=' + _this.param.jobid +
  4550. '&duration=' + _this.param.duration + '&dtype=Video&objectId=' + _this.param.objectId +
  4551. '&clazzId=' + _this.param.clazzId +
  4552. '&view=pc&playingTime=' + playTime + '&isdrag=4&enc=' + enc, function (data) {
  4553. var isPassed = JSON.parse(data);
  4554. callback(isPassed.isPassed);
  4555. });
  4556. };
  4557. };
  4558. return CxVideoOptimization;
  4559. }());
  4560. exports.CxVideoOptimization = CxVideoOptimization;
  4561. var CxVideoControlBar = /** @class */ (function (_super) {
  4562. __extends(CxVideoControlBar, _super);
  4563. function CxVideoControlBar() {
  4564. return _super !== null && _super.apply(this, arguments) || this;
  4565. }
  4566. CxVideoControlBar.prototype.defaultBtn = function () {
  4567. var _this = this;
  4568. _super.prototype.defaultBtn.call(this);
  4569. var pass = utils_2.CssBtn(utils_1.createBtn("秒过视频", "秒过视频会被后台检测到", "cx-btn"));
  4570. var downloadSubtitle = utils_2.CssBtn(utils_1.createBtn("下载字幕", "我要下载字幕一同食用"));
  4571. pass.style.background = "#F57C00";
  4572. downloadSubtitle.style.background = "#638EE1";
  4573. this.prev.append(pass, this.download(), downloadSubtitle);
  4574. pass.onclick = function () {
  4575. if (!utils_1.protocolPrompt("秒过视频会产生不良记录,是否继续?", "boom_no_prompt")) {
  4576. return;
  4577. }
  4578. _this.task.sendEndTimePack(function (isPassed) {
  4579. if (isPassed) {
  4580. alert('秒过成功,刷新后查看效果');
  4581. }
  4582. else {
  4583. alert('操作失败,错误');
  4584. }
  4585. });
  4586. };
  4587. downloadSubtitle.onclick = function () {
  4588. _this.task.downloadSubtitle();
  4589. };
  4590. };
  4591. return CxVideoControlBar;
  4592. }(task_1.CxTaskControlBar));
  4593. exports.CxVideoControlBar = CxVideoControlBar;
  4594. var Video = /** @class */ (function (_super) {
  4595. __extends(Video, _super);
  4596. function Video() {
  4597. return _super !== null && _super.apply(this, arguments) || this;
  4598. }
  4599. Video.prototype.queryVideo = function () {
  4600. return this.context.document.getElementById("video_html5_api");
  4601. };
  4602. Video.prototype.Init = function () {
  4603. var _this = this;
  4604. return new Promise(function (resolve) {
  4605. application_1.Application.App.log.Debug("播放器配置", _this.taskinfo);
  4606. var timer = _this.context.setInterval(function () {
  4607. try {
  4608. var video = _this.queryVideo();
  4609. if (video == undefined) {
  4610. if (_this.context.document.querySelector("#reader").innerHTML.indexOf("您没有安装flashplayer") >= 0) {
  4611. _this.context.clearInterval(timer);
  4612. _this.flash = true;
  4613. resolve(undefined);
  4614. }
  4615. return;
  4616. }
  4617. _this.context.clearInterval(timer);
  4618. _this.video = video;
  4619. _this.initPlayer();
  4620. _this.video.addEventListener("ended", function () {
  4621. _this.end = true;
  4622. _this.context.clearInterval(_this.time);
  4623. _this.callEvent("complete");
  4624. });
  4625. resolve(undefined);
  4626. }
  4627. catch (error) {
  4628. application_1.Application.App.log.Debug("初始化video错误", error);
  4629. }
  4630. }, 500);
  4631. });
  4632. };
  4633. Video.prototype.Type = function () {
  4634. return "video";
  4635. };
  4636. Video.prototype.Start = function () {
  4637. var _this = this;
  4638. return new Promise(function (resolve) {
  4639. application_1.Application.App.log.Debug("开始播放视频");
  4640. if (_this.flash) {
  4641. resolve(undefined);
  4642. return _this.callEvent("complete");
  4643. }
  4644. //定时运行
  4645. _this.time = _this.context.setInterval(function () {
  4646. application_1.Application.App.config.auto && _this.video.paused && _this.video.play();
  4647. }, 5000);
  4648. //同时运行多视频的兼容,后续看看能不能hook
  4649. _this.video.addEventListener("pause", function () {
  4650. if (_this.video.currentTime <= _this.video.duration - 5) {
  4651. if (!_this.end) {
  4652. _this.video.play();
  4653. }
  4654. }
  4655. });
  4656. _this.video.play();
  4657. resolve(undefined);
  4658. });
  4659. };
  4660. Video.prototype.initPlayer = function () {
  4661. this.playbackRate = this._playbackRate;
  4662. this.muted = this._muted;
  4663. };
  4664. /**
  4665. * 秒过
  4666. */
  4667. Video.prototype.sendEndTimePack = function (callback) {
  4668. this.sendTimePack(this.video.duration, callback);
  4669. };
  4670. Video.prototype.sendTimePack = function (time, callback) {
  4671. this.context.sendTimePack(time, function (isPassed) {
  4672. callback(isPassed);
  4673. });
  4674. };
  4675. Video.prototype.downloadSubtitle = function () {
  4676. utils_1.get('/richvideo/subtitle?mid=' + this.taskinfo.property.mid + '&_dc=' +
  4677. Date.parse(new Date().toString()), function (data) {
  4678. var json = JSON.parse(data);
  4679. if (json.length <= 0) {
  4680. alert("没有字幕!");
  4681. }
  4682. else {
  4683. for (var i = 0; i < json.length; i++) {
  4684. var subtitleURL = json[i]['url'];
  4685. window.open(subtitleURL);
  4686. }
  4687. }
  4688. });
  4689. };
  4690. Object.defineProperty(Video.prototype, "playbackRate", {
  4691. /**
  4692. * 设置播放速度
  4693. */
  4694. set: function (speed) {
  4695. this._playbackRate = speed;
  4696. if (this.video) {
  4697. this.video.playbackRate = speed;
  4698. }
  4699. },
  4700. enumerable: false,
  4701. configurable: true
  4702. });
  4703. Object.defineProperty(Video.prototype, "muted", {
  4704. /**
  4705. * 设置播放静音
  4706. */
  4707. set: function (muted) {
  4708. this._muted = muted;
  4709. if (this.video) {
  4710. this.video.muted = muted;
  4711. }
  4712. },
  4713. enumerable: false,
  4714. configurable: true
  4715. });
  4716. return Video;
  4717. }(task_1.CxTask));
  4718. exports.Video = Video;
  4719.  
  4720.  
  4721. /***/ }),
  4722.  
  4723. /***/ "./src/mooc/mooc.ts":
  4724. /*!**************************!*\
  4725. !*** ./src/mooc/mooc.ts ***!
  4726. \**************************/
  4727. /*! no static exports found */
  4728. /***/ (function(module, exports, __webpack_require__) {
  4729.  
  4730. "use strict";
  4731.  
  4732. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  4733. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  4734. return new (P || (P = Promise))(function (resolve, reject) {
  4735. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  4736. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  4737. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  4738. step((generator = generator.apply(thisArg, _arguments || [])).next());
  4739. });
  4740. };
  4741. var __generator = (this && this.__generator) || function (thisArg, body) {
  4742. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  4743. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  4744. function verb(n) { return function (v) { return step([n, v]); }; }
  4745. function step(op) {
  4746. if (f) throw new TypeError("Generator is already executing.");
  4747. while (_) try {
  4748. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  4749. if (y = 0, t) op = [op[0] & 2, t.value];
  4750. switch (op[0]) {
  4751. case 0: case 1: t = op; break;
  4752. case 4: _.label++; return { value: op[1], done: false };
  4753. case 5: _.label++; y = op[1]; op = [0]; continue;
  4754. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  4755. default:
  4756. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  4757. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  4758. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  4759. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  4760. if (t[2]) _.ops.pop();
  4761. _.trys.pop(); continue;
  4762. }
  4763. op = body.call(thisArg, _);
  4764. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  4765. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  4766. }
  4767. };
  4768. Object.defineProperty(exports, "__esModule", { value: true });
  4769. exports.mooc = void 0;
  4770. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  4771. var mooc = /** @class */ (function () {
  4772. function mooc(moocFactory) {
  4773. // 防止taskComplete和reload冲突
  4774. this.once = false;
  4775. this.moocFactory = moocFactory;
  4776. }
  4777. mooc.prototype.start = function () {
  4778. return __awaiter(this, void 0, void 0, function () {
  4779. var state, mooc_1, e_1, isShow_1;
  4780. return __generator(this, function (_a) {
  4781. switch (_a.label) {
  4782. case 0:
  4783. _a.trys.push([0, 3, , 4]);
  4784. state = document.readyState;
  4785. application_1.Application.App.log.Debug("Start document state:", state);
  4786. mooc_1 = this.moocFactory.CreateMooc();
  4787. if (!(mooc_1 != null)) return [3 /*break*/, 2];
  4788. return [4 /*yield*/, mooc_1.Init()];
  4789. case 1:
  4790. _a.sent();
  4791. // MoocTaskSet接口判断,接管流程
  4792. if (mooc_1.Next != undefined) {
  4793. this.runMoocTask(mooc_1);
  4794. }
  4795. _a.label = 2;
  4796. case 2: return [3 /*break*/, 4];
  4797. case 3:
  4798. e_1 = _a.sent();
  4799. application_1.Application.App.log.Fatal("扩展发生了一个致命错误:", e_1);
  4800. return [3 /*break*/, 4];
  4801. case 4:
  4802. //最小化警告
  4803. if (top == self) {
  4804. isShow_1 = false;
  4805. document.addEventListener("visibilitychange", function () {
  4806. if (document.hidden) {
  4807. if (isShow_1) {
  4808. return;
  4809. }
  4810. application_1.Application.App.log.Warn("请注意!最小化可能导致视频无法正常播放!允许切换窗口.");
  4811. isShow_1 = true;
  4812. }
  4813. });
  4814. }
  4815. return [2 /*return*/];
  4816. }
  4817. });
  4818. });
  4819. };
  4820. mooc.prototype.runMoocTask = function (moocTask) {
  4821. var _this = this;
  4822. moocTask.addEventListener("reload", function () {
  4823. if (application_1.Application.App.config.auto) {
  4824. _this.runTask(moocTask);
  4825. }
  4826. clearTimeout(_this.timer);
  4827. });
  4828. moocTask.addEventListener("complete", function () {
  4829. application_1.Application.App.log.Warn("任务完成了");
  4830. alert("任务完成了");
  4831. });
  4832. moocTask.addEventListener("taskComplete", function (index, task) {
  4833. moocTask.SetTaskPointer(index + 1);
  4834. if (!application_1.Application.App.config.auto) {
  4835. return;
  4836. }
  4837. var interval = application_1.Application.App.config.interval;
  4838. application_1.Application.App.log.Info(interval + "分钟后自动切换下一个任务点");
  4839. _this.timer = setTimeout(function () { return __awaiter(_this, void 0, void 0, function () {
  4840. return __generator(this, function (_a) {
  4841. switch (_a.label) {
  4842. case 0: return [4 /*yield*/, task.Submit()];
  4843. case 1:
  4844. _a.sent();
  4845. return [4 /*yield*/, this.runTask(moocTask)];
  4846. case 2:
  4847. _a.sent();
  4848. return [2 /*return*/];
  4849. }
  4850. });
  4851. }); }, interval * 60000);
  4852. });
  4853. moocTask.addEventListener("error", function (msg) {
  4854. application_1.Application.App.log.Fatal(msg);
  4855. alert(msg);
  4856. });
  4857. };
  4858. mooc.prototype.runTask = function (moocTask) {
  4859. return __awaiter(this, void 0, void 0, function () {
  4860. var task;
  4861. return __generator(this, function (_a) {
  4862. switch (_a.label) {
  4863. case 0:
  4864. if (this.once) {
  4865. return [2 /*return*/];
  4866. }
  4867. this.once = true;
  4868. return [4 /*yield*/, moocTask.Next()];
  4869. case 1:
  4870. task = _a.sent();
  4871. _a.label = 2;
  4872. case 2:
  4873. if (!(task != null)) return [3 /*break*/, 9];
  4874. if (!task.Done()) return [3 /*break*/, 4];
  4875. return [4 /*yield*/, moocTask.Next()];
  4876. case 3:
  4877. task = _a.sent();
  4878. return [3 /*break*/, 2];
  4879. case 4:
  4880. if (!(application_1.Application.App.config.answer_ignore && task.Type() == "topic")) return [3 /*break*/, 6];
  4881. return [4 /*yield*/, moocTask.Next()];
  4882. case 5:
  4883. task = _a.sent();
  4884. return [3 /*break*/, 2];
  4885. case 6:
  4886. if (!application_1.Application.App.config.auto) return [3 /*break*/, 8];
  4887. return [4 /*yield*/, task.Start()];
  4888. case 7:
  4889. _a.sent();
  4890. _a.label = 8;
  4891. case 8:
  4892. this.nowTask = task;
  4893. return [3 /*break*/, 9];
  4894. case 9:
  4895. this.once = false;
  4896. return [2 /*return*/];
  4897. }
  4898. });
  4899. });
  4900. };
  4901. return mooc;
  4902. }());
  4903. exports.mooc = mooc;
  4904.  
  4905.  
  4906. /***/ }),
  4907.  
  4908. /***/ "./src/tampermonkey/cxmooc-pack.ts":
  4909. /*!*****************************************!*\
  4910. !*** ./src/tampermonkey/cxmooc-pack.ts ***!
  4911. \*****************************************/
  4912. /*! no static exports found */
  4913. /***/ (function(module, exports, __webpack_require__) {
  4914.  
  4915. "use strict";
  4916.  
  4917. Object.defineProperty(exports, "__esModule", { value: true });
  4918. var config_1 = __webpack_require__(/*! @App/internal/utils/config */ "./src/internal/utils/config.ts");
  4919. var log_1 = __webpack_require__(/*! @App/internal/utils/log */ "./src/internal/utils/log.ts");
  4920. var application_1 = __webpack_require__(/*! @App/internal/application */ "./src/internal/application.ts");
  4921. var mooc_1 = __webpack_require__(/*! @App/mooc/mooc */ "./src/mooc/mooc.ts");
  4922. var platform_1 = __webpack_require__(/*! @App/mooc/chaoxing/platform */ "./src/mooc/chaoxing/platform.ts");
  4923. var logger;
  4924. if (top == self) {
  4925. logger = new log_1.PageLog();
  4926. }
  4927. else {
  4928. logger = new log_1.ConsoleLog();
  4929. }
  4930. application_1.Application.GlobalContext = window.unsafeWindow;
  4931. var component = new Map().
  4932. set("config", new config_1.ChromeConfigItems(config_1.NewFrontendGetConfig())).
  4933. set("logger", logger);
  4934. var app = new application_1.Application(application_1.Frontend, new mooc_1.mooc(new platform_1.CxPlatform()), component);
  4935. app.run();
  4936.  
  4937.  
  4938. /***/ }),
  4939.  
  4940. /***/ "./src/views/common.ts":
  4941. /*!*****************************!*\
  4942. !*** ./src/views/common.ts ***!
  4943. \*****************************/
  4944. /*! no static exports found */
  4945. /***/ (function(module, exports) {
  4946.  
  4947. window.addEventListener("load", function () {
  4948. var css = "\n@keyframes aniripple \n{\n 0%{\n width:0px;\n height:0px;\n opacity:0.4;\n }\n 100%{\n width:500px;\n height:500px;\n opacity:0;\n }\n} \n\n#cxtools {\n position: absolute;\n left: 250px;\n top: 2px;\n width: 210px;\n font-size: 0;\n}\n\n.cx-btn {\n outline: none;\n border: 0;\n background: #7d9d35;\n color: #fff;\n border-radius: 4px;\n padding: 2px 8px;\n cursor: pointer;\n font-size: 12px;\n margin-left: 4px;\n}\n\n.cx-btn:hover {\n box-shadow: 1px 1px 1px 1px #ccc;\n}\n\n.zhs-tools-btn {\n color: #fff;\n background: #ff9d34;\n padding: 4px;\n display: inline-block;\n height: 24px;\n font-size: 14px;\n line-height: 24px;\n margin:0;\n cursor:pointer;\n}\n.btn-ripple{\n position:absolute;\n background:#000;\n pointer-events:none;\n transform:translate(-50%,-50%);\n border-radius:50%;\n animation:aniripple 1s linear infinite;\n}\n\n.zhs-start-btn{\n background: #36ac36;\n}\n\n.zhs-start-btn:hover{\n background: #3b8d3b;\n}\n\n#zhs-ytbn {\n color: #fff;\n background: #e777ff;\n}\n\n#zhs-ytbn:hover {\n background: #e7b7f1;\n}\n\n.zhs-search-answer {\n border: 0;\n outline: none;\n padding: 4px;\n}\n\n.zhs-search-answer:hover {\n opacity: .85;\n}\n\n.mooc163-search{\n background-color: #60b900;\n display: block;\n margin: 0 auto;\n}\n\n.tools-logger-panel{\n width: 360px;\n height: auto;\n max-height: 260px;\n color:#000;\n position: fixed;\n margin: 0 auto;\n display: block;\n font-size: 14px;\n border-radius: 4px;\n width: 340px;\n text-align: center;\n overflow: hidden;\n left:60px;\n top: 40px;\n z-index: 100000;\n background: rgba(256, 256, 256, 0.3);\n box-shadow: 0px 0px 5px #bbb;\n}\n\n.head {\n width: 100%;\n height: 30px;\n padding: 4px;\n box-sizing: border-box;\n cursor: move;\n transition-property: opacity, background-color;\n transition: 200ms ease-in-out;\n}\n\n.head span{\n color:#000;\n float:left;\n font-weight: 550;\n}\n\n.status {\n color: #67C23A;\n font-weight: 600;\n}\n\n.tools-notice-content {\n width: 100%;\n height: 220px;\n border-top:0px;\n overflow-y: scroll;\n overflow-x: hidden;\n}\n\n.tools-notice-content .log {\n height: auto;\n width: auto;\n text-align: center;\n border: 1px solid #eee;\n overflow: hidden;\n}\n\n.tools-notice-content .log p {\n margin: 0;\n color: #aaa;\n font-size: 11px;\n font-weight: 500;\n font-family: Arial, Helvetica, sans-serif;\n line-height: 26px;\n}\n\n/* \u6EDA\u52A8\u69FD */\n::-webkit-scrollbar {\n width: 10px;\n height: 10px;\n}\n\n::-webkit-scrollbar-track {\n border-radius: 3px;\n background: rgba(0, 0, 0, 0.06);\n -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08);\n}\n\n/* \u6EDA\u52A8\u6761\u6ED1\u5757 */\n::-webkit-scrollbar-thumb {\n border-radius: 3px;\n background: rgba(0, 0, 0, 0.12);\n -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);\n}\n\n/* \u590D\u9009\u6846 */\n.switch {\n margin: 2px auto;\n display: inline-flex;\n align-items: center;\n width: auto;\n}\n.checkbox-input {\n display: none\n}\n.checkbox {\n -webkit-transition: background-color 0.3s;\n transition: background-color 0.3s;\n background-color: #fff;\n border: 1px solid #d7d7d7;\n border-radius: 50px;\n width: 16px;\n height: 16px;\n vertical-align:middle;\n margin: 0 5px;\n}\n.checkbox-input:checked+.checkbox {\n background-color: #409EFF;\n}\n.checkbox-input:checked+.checkbox:after {\n // content: \"\u221A\";\n display: inline-block;\n height: 100%;\n width: 100%;\n color: #fff;\n text-align: center;\n line-height: 16px;\n font-size: 12px;\n box-shadow: 0 0 4px #409EFF;\n}\n\n.tools-logger-panel:hover,\n.tools-logger-panel:focus-within {\n background: rgba(256, 256, 256, 0.7);\n}\n\n.tools-logger-panel .head:active {\n background-color: #E5E5E5;\n}\n\n.tools-logger-panel > .close {\n margin: 2px;\n}\n\n";
  4949. var style = document.createElement("style");
  4950. style.innerHTML = css;
  4951. document.body.appendChild(style);
  4952. });
  4953.  
  4954.  
  4955. /***/ })
  4956.  
  4957. /******/ });
  4958. //# sourceMappingURL=tampermonkey-cxmooc.js.map

QingJ © 2025

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