hbmzu.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // 湖北民族大学教务系统(jwgl.hbmzu.edu.cn/edu)拾光课表导入适配脚本
  2. // 课表查询页(/edu/report/mySchedule.mvc)直接渲染课表 DOM:
  3. // #container 内每行 tr:首 td 为节次("上午1-2节"…"晚上11-12节"),后续 7 个 td 对应周一~周日
  4. // 每格 .course-block 含 span:课程名、教室、周次、教师(无教室时仅 3 个)
  5. // 注意:无开学日期/总周数接口,config 仅保存作息时间
  6. // 预设作息时间(12 节,含午间/晚间)
  7. const HBMZU_TIME_SLOTS = [
  8. { number: 1, startTime: "08:00", endTime: "08:45" },
  9. { number: 2, startTime: "08:50", endTime: "09:35" },
  10. { number: 3, startTime: "10:05", endTime: "10:50" },
  11. { number: 4, startTime: "10:55", endTime: "11:40" },
  12. { number: 5, startTime: "14:00", endTime: "14:45" },
  13. { number: 6, startTime: "14:50", endTime: "15:35" },
  14. { number: 7, startTime: "16:05", endTime: "16:50" },
  15. { number: 8, startTime: "16:55", endTime: "17:40" },
  16. { number: 9, startTime: "18:30", endTime: "19:15" },
  17. { number: 10, startTime: "19:20", endTime: "20:05" },
  18. { number: 11, startTime: "20:15", endTime: "21:00" },
  19. { number: 12, startTime: "21:05", endTime: "21:50" }
  20. ];
  21. function getErrorMessage(error) {
  22. if (error && typeof error.message === "string" && error.message.trim()) return error.message;
  23. if (typeof error === "string" && error.trim()) return error;
  24. try {
  25. const serialized = JSON.stringify(error);
  26. if (serialized && serialized !== "{}") return serialized;
  27. } catch (_) {
  28. // Ignore serialization failures.
  29. }
  30. return "未知错误";
  31. }
  32. // 收集可访问的 document(frameset 用 <frame>,普通页面用 <iframe>)
  33. function collectDocs() {
  34. const docs = [document];
  35. const frames = document.querySelectorAll("iframe, frame");
  36. for (const f of frames) {
  37. try {
  38. if (f.contentDocument) docs.push(f.contentDocument);
  39. } catch (_) {
  40. // 跨域 frame 无法访问,忽略。
  41. }
  42. }
  43. return docs;
  44. }
  45. // 从各 frame 中查找课表表格(#container 内含 .course-block)
  46. // 注入时机早于 frame 加载完成,故轮询等待 frame 就绪(最长 6 秒)
  47. async function findCourseTable() {
  48. const deadline = Date.now() + 6000;
  49. while (Date.now() < deadline) {
  50. for (const doc of collectDocs()) {
  51. const container = doc.getElementById("container");
  52. if (container && container.querySelector(".course-block")) {
  53. return container;
  54. }
  55. }
  56. await new Promise(resolve => setTimeout(resolve, 300));
  57. }
  58. return null;
  59. }
  60. // 解析周次文本:"3-14周"→3..14;"3-13单周"→3,5,7,9,11,13;"4-14双周"→4,6..14;"14-15周"→14,15
  61. function parseWeeksText(weekStr) {
  62. const text = String(weekStr || "").replace(/\s+/g, "");
  63. const m = text.match(/^(\d+)-(\d+)(单|双)?周$/);
  64. if (!m) return [];
  65. const start = Number(m[1]);
  66. const end = Number(m[2]);
  67. const parity = m[3]; // "单" / "双" / undefined
  68. const weeks = [];
  69. for (let w = start; w <= end; w++) {
  70. if (parity === "单" && w % 2 === 0) continue;
  71. if (parity === "双" && w % 2 === 1) continue;
  72. weeks.push(w);
  73. }
  74. return weeks;
  75. }
  76. // 解析课表表格
  77. // 每行首 td 为节次文本("上午1-2节"→1-2),其后 7 个 td 依次为周一~周日
  78. function parseCourseTable(container) {
  79. const courses = [];
  80. container.querySelectorAll("tr").forEach(row => {
  81. const tds = row.querySelectorAll("td");
  82. if (tds.length < 2) return;
  83. const sectionText = (tds[0].textContent || "").replace(/\s+/g, "");
  84. const sectionMatch = sectionText.match(/(\d+)-(\d+)节/);
  85. if (!sectionMatch) return;
  86. const startSection = Number(sectionMatch[1]);
  87. const endSection = Number(sectionMatch[2]);
  88. for (let i = 0; i < 7; i++) {
  89. const dayTd = tds[i + 1];
  90. if (!dayTd) continue;
  91. const blocks = dayTd.querySelectorAll(".course-block");
  92. for (const block of blocks) {
  93. const spans = block.querySelectorAll("span");
  94. if (spans.length < 3) continue;
  95. const name = (spans[0].textContent || "").trim();
  96. if (!name) continue;
  97. // span 结构:[名称, 教室?, 周次, 教师];无教室时仅 [名称, 周次, 教师]
  98. const hasRoom = spans.length >= 4;
  99. const position = hasRoom ? (spans[1].textContent || "").trim() : "";
  100. const weekStr = (spans[hasRoom ? 2 : 1].textContent || "").trim();
  101. const teacher = (spans[spans.length - 1].textContent || "").trim();
  102. const weeks = parseWeeksText(weekStr);
  103. if (weeks.length === 0) continue;
  104. courses.push({
  105. name,
  106. teacher: teacher || "未知",
  107. position: position || "待定",
  108. day: i + 1,
  109. startSection,
  110. endSection,
  111. weeks
  112. });
  113. }
  114. }
  115. });
  116. return courses;
  117. }
  118. // 合并同课程同时间同教室的条目(如单双周分教室的保持两条)
  119. function mergeCourses(courses) {
  120. const merged = new Map();
  121. for (const c of courses) {
  122. const key = `${c.name}|${c.teacher}|${c.position}|${c.day}|${c.startSection}|${c.endSection}`;
  123. const holder = merged.get(key);
  124. if (holder) {
  125. holder.weeks = Array.from(new Set([...holder.weeks, ...c.weeks])).sort((a, b) => a - b);
  126. } else {
  127. merged.set(key, { ...c, weeks: [...c.weeks].sort((a, b) => a - b) });
  128. }
  129. }
  130. return Array.from(merged.values()).sort(
  131. (a, b) => a.day - b.day || a.startSection - b.startSection || a.name.localeCompare(b.name)
  132. );
  133. }
  134. // 保存作息时间
  135. async function saveTimeSlots(timeSlots) {
  136. try {
  137. await window.shiguangBridgePromise.savePresetTimeSlots(JSON.stringify(timeSlots));
  138. } catch (error) {
  139. console.error("JS: 作息时间保存失败", error);
  140. }
  141. }
  142. async function runImportFlow() {
  143. const alertConfirmed = await window.shiguangBridgePromise.showAlert(
  144. "课表导入",
  145. "导入前请确保已登录并打开课表查询页面。",
  146. "好的,开始导入"
  147. );
  148. if (!alertConfirmed) {
  149. window.shiguangBridge.showToast("用户取消了导入。");
  150. return;
  151. }
  152. window.shiguangBridge.showToast("正在获取课表数据...");
  153. try {
  154. const container = await findCourseTable();
  155. if (!container) throw new Error("未找到课表,请确认已登录并打开课表查询页面。");
  156. const courses = parseCourseTable(container);
  157. if (courses.length === 0) throw new Error("课表中未解析到有效课程,请确认当前学期有课。");
  158. const merged = mergeCourses(courses);
  159. window.shiguangBridge.showToast(`正在保存 ${merged.length} 门课程...`);
  160. await window.shiguangBridgePromise.saveImportedCourses(JSON.stringify(merged, null, 2));
  161. await saveTimeSlots(HBMZU_TIME_SLOTS);
  162. window.shiguangBridge.showToast(`课程导入成功,共导入 ${merged.length} 门课程!`);
  163. window.shiguangBridge.notifyTaskCompletion();
  164. } catch (error) {
  165. window.shiguangBridge.showToast(`导入失败:${getErrorMessage(error)}`);
  166. console.error("JS: Import Error", error);
  167. }
  168. }
  169. runImportFlow();