wake_up.js 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. // 拾光课程表适配 Wakeup 课表分享口令
  2. // 目前采用v6.1.70 官渠apk中 提取到的apk签名md5与signA算法
  3. // signA二次发送至antispam 取signB
  4. const WAKEUP_V6170 = Object.freeze({
  5. host: "https://api.wakeup.fun",
  6. antispamPath: "/pluto/app/antispam",
  7. sharePath: "/share_schedule/getv2",
  8. packageName: "com.suda.yzune.wakeupschedule",
  9. versionName: "6.1.70",
  10. versionCode: 450,
  11. channel: "100271a",
  12. publicToken: "1_XPXQH3c5HRPtFHkSwi3sCCURmT25QfxM",
  13. signatureMd5: "318c6d4f74655d4f032fb0466bcfdfbc",
  14. magic: "8&%d*",
  15. signAKey: "@fG2SuLA",
  16. keySalt: "@#AIjd83#@6B"
  17. });
  18. const WAKEUP_DEVICE_DEFAULTS = Object.freeze({
  19. androidId: "0000000000000000",
  20. sdk: "35",
  21. device: "Pixel 7",
  22. brand: "google",
  23. screensize: "1080x2400",
  24. abis: "arm64-v8a",
  25. appBit: "64",
  26. appId: "wakeup",
  27. downloadType: "1",
  28. nt: "wifi",
  29. province: "",
  30. city: "",
  31. area: "",
  32. deviceId: "",
  33. operatorid: "",
  34. adid: "",
  35. did: ""
  36. });
  37. /**
  38. * 验证用户输入。WakeUP v6.1.70 的分享口令可包含字母、数字、下划线和短横线。
  39. * @param {string} input 用户输入的原始文本
  40. * @returns {false|string} 验证成功返回 false,否则返回错误信息。
  41. */
  42. function validateKey(input) {
  43. const key = extractKeyFromText(input);
  44. if (!key) return "输入不能为空!";
  45. if (!/^[A-Za-z0-9_-]{8,200}$/.test(key)) {
  46. return "未检测到有效的 WakeUP 分享口令,请粘贴完整分享文本或口令。";
  47. }
  48. return false;
  49. }
  50. /**
  51. * 从 WakeUP 的标准分享文案或裸口令中提取分享口令。
  52. * 规则与 WakeUP v6.1.70 官方渠道一致,兼容旧版 32 位十六进制口令。
  53. */
  54. function extractKeyFromText(value) {
  55. const text = typeof value === "string" ? value.trim() : "";
  56. if (!text) return "";
  57. const labelled = text.match(/分享口令(?:为)?\s*[「“"]?\s*([A-Za-z0-9_-]{1,200})\s*[」”"]?/u);
  58. if (labelled) return labelled[1];
  59. const quoted = text.match(/[「“"]\s*([A-Za-z0-9_-]{8,200})\s*[」”"]/u);
  60. if (quoted) return quoted[1];
  61. const candidates = text.match(/[A-Za-z0-9_-]{8,200}/g);
  62. return candidates ? candidates[candidates.length - 1] : text;
  63. }
  64. /** WakeUP 协议的浏览器字节、Base64 与 Android quote_plus 兼容工具。 */
  65. function wakeupToBytes(input) {
  66. return typeof input === "string" ? new TextEncoder().encode(input) : new Uint8Array(input);
  67. }
  68. function wakeupBytesToBinary(bytes) {
  69. const source = wakeupToBytes(bytes);
  70. let output = "";
  71. const chunkSize = 0x8000;
  72. for (let index = 0; index < source.length; index += chunkSize) {
  73. output += String.fromCharCode.apply(null, source.subarray(index, index + chunkSize));
  74. }
  75. return output;
  76. }
  77. function wakeupBytesToBase64(bytes) {
  78. return btoa(wakeupBytesToBinary(bytes));
  79. }
  80. function wakeupBase64ToBytes(text) {
  81. const binary = atob(text);
  82. const output = new Uint8Array(binary.length);
  83. for (let index = 0; index < binary.length; index += 1) output[index] = binary.charCodeAt(index);
  84. return output;
  85. }
  86. function wakeupBytesToLatin1(bytes) {
  87. return wakeupBytesToBinary(bytes);
  88. }
  89. function wakeupBytesToUtf8(bytes) {
  90. return new TextDecoder("utf-8").decode(wakeupToBytes(bytes));
  91. }
  92. function wakeupAndroidQuote(value) {
  93. return encodeURIComponent(String(value))
  94. .replace(/[!'()*]/g, char => `%${char.charCodeAt(0).toString(16).toUpperCase()}`)
  95. .replace(/%20/g, "+");
  96. }
  97. function wakeupFormEncode(items) {
  98. return items.map(([key, value]) => `${key}=${wakeupAndroidQuote(value == null ? "" : value)}`).join("&");
  99. }
  100. function wakeupRotateLeft(value, bits) {
  101. return ((value << bits) | (value >>> (32 - bits))) >>> 0;
  102. }
  103. /**
  104. * 纯 JavaScript MD5。Web Crypto 不提供 MD5,故保持适配脚本不依赖 Node 或第三方库。
  105. * 输入按 UTF-8 字节计算,与 WakeUP 官方协议中的 native/Java 实现对齐。
  106. */
  107. function wakeupMd5Bytes(input) {
  108. const source = wakeupToBytes(input);
  109. const paddedLength = (((source.length + 8) >>> 6) + 1) * 64;
  110. const data = new Uint8Array(paddedLength);
  111. data.set(source);
  112. data[source.length] = 0x80;
  113. const bitLength = source.length * 8;
  114. for (let index = 0; index < 8; index += 1) {
  115. data[paddedLength - 8 + index] = Math.floor(bitLength / Math.pow(256, index)) & 0xff;
  116. }
  117. const shifts = [7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22,
  118. 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20,
  119. 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23,
  120. 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21];
  121. const constants = Array.from({ length: 64 }, (_, index) => Math.floor(Math.abs(Math.sin(index + 1)) * 0x100000000) >>> 0);
  122. let a0 = 0x67452301;
  123. let b0 = 0xefcdab89;
  124. let c0 = 0x98badcfe;
  125. let d0 = 0x10325476;
  126. for (let offset = 0; offset < data.length; offset += 64) {
  127. const words = new Uint32Array(16);
  128. for (let index = 0; index < 16; index += 1) {
  129. const wordOffset = offset + index * 4;
  130. words[index] = (data[wordOffset] | (data[wordOffset + 1] << 8) |
  131. (data[wordOffset + 2] << 16) | (data[wordOffset + 3] << 24)) >>> 0;
  132. }
  133. let a = a0;
  134. let b = b0;
  135. let c = c0;
  136. let d = d0;
  137. for (let index = 0; index < 64; index += 1) {
  138. let f;
  139. let g;
  140. if (index < 16) {
  141. f = (b & c) | ((~b) & d);
  142. g = index;
  143. } else if (index < 32) {
  144. f = (d & b) | ((~d) & c);
  145. g = (5 * index + 1) % 16;
  146. } else if (index < 48) {
  147. f = b ^ c ^ d;
  148. g = (3 * index + 5) % 16;
  149. } else {
  150. f = c ^ (b | (~d));
  151. g = (7 * index) % 16;
  152. }
  153. const next = d;
  154. d = c;
  155. c = b;
  156. b = (b + wakeupRotateLeft((a + f + constants[index] + words[g]) >>> 0, shifts[index])) >>> 0;
  157. a = next;
  158. }
  159. a0 = (a0 + a) >>> 0;
  160. b0 = (b0 + b) >>> 0;
  161. c0 = (c0 + c) >>> 0;
  162. d0 = (d0 + d) >>> 0;
  163. }
  164. const digest = new Uint8Array(16);
  165. const view = new DataView(digest.buffer);
  166. view.setUint32(0, a0, true);
  167. view.setUint32(4, b0, true);
  168. view.setUint32(8, c0, true);
  169. view.setUint32(12, d0, true);
  170. return digest;
  171. }
  172. function wakeupMd5Hex(input) {
  173. return Array.from(wakeupMd5Bytes(input), byte => byte.toString(16).padStart(2, "0")).join("");
  174. }
  175. function wakeupMd5Upper(input) {
  176. return wakeupMd5Hex(input).toUpperCase();
  177. }
  178. // 以下表与位序来自 WakeUP v6.1.70 官方协议。该私有 DES 并非标准 DES,禁止替换。
  179. const WAKEUP_DES_IP = [57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27, 19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23, 15, 7, 56, 48, 40, 32, 24, 16, 8, 0, 58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6];
  180. const WAKEUP_DES_FP = [39, 7, 47, 15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13, 53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51, 19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17, 57, 25, 32, 0, 40, 8, 48, 16, 56, 24];
  181. const WAKEUP_DES_E = [31, 0, 1, 2, 3, 4, 3, 4, 5, 6, 7, 8, 7, 8, 9, 10, 11, 12, 11, 12, 13, 14, 15, 16, 15, 16, 17, 18, 19, 20, 19, 20, 21, 22, 23, 24, 23, 24, 25, 26, 27, 28, 27, 28, 29, 30, 31, 0];
  182. const WAKEUP_DES_P = [15, 6, 19, 20, 28, 11, 27, 16, 0, 14, 22, 25, 4, 17, 30, 9, 1, 7, 23, 13, 31, 26, 2, 8, 18, 12, 29, 5, 21, 10, 3, 24];
  183. const WAKEUP_DES_PC1 = [56, 48, 40, 32, 24, 16, 8, 0, 57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 60, 52, 44, 36, 28, 20, 12, 4, 27, 19, 11, 3];
  184. const WAKEUP_DES_PC2 = [13, 16, 10, 23, 0, 4, 2, 27, 14, 5, 20, 9, 22, 18, 11, 3, 25, 7, 15, 6, 26, 19, 12, 1, 40, 51, 30, 36, 46, 54, 29, 39, 50, 44, 32, 46, 43, 48, 38, 55, 33, 52, 45, 41, 49, 35, 28, 31];
  185. const WAKEUP_DES_SHIFTS = [1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1];
  186. const WAKEUP_DES_SBOX = [
  187. [[14,4,13,1,2,15,11,8,3,10,6,12,5,9,0,7],[0,15,7,4,14,2,13,1,10,6,12,11,9,5,3,8],[4,1,14,8,13,6,2,11,15,12,9,7,3,10,5,0],[15,12,8,2,4,9,1,7,5,11,3,14,10,0,6,13]],
  188. [[15,1,8,14,6,11,3,4,9,7,2,13,12,0,5,10],[3,13,4,7,15,2,8,14,12,0,1,10,6,9,11,5],[0,14,7,11,10,4,13,1,5,8,12,6,9,3,2,15],[13,8,10,1,3,15,4,2,11,6,7,12,0,5,14,9]],
  189. [[10,0,9,14,6,3,15,5,1,13,12,7,11,4,2,8],[13,7,0,9,3,4,6,10,2,8,5,14,12,11,15,1],[13,6,4,9,8,15,3,0,11,1,2,12,5,10,14,7],[1,10,13,0,6,9,8,7,4,15,14,3,11,5,2,12]],
  190. [[7,13,14,3,0,6,9,10,1,2,8,5,11,12,4,15],[13,8,11,5,6,15,0,3,4,7,2,12,1,10,14,9],[10,6,9,0,12,11,7,13,15,1,3,14,5,2,8,4],[3,15,0,6,10,1,13,8,9,4,5,11,12,7,2,14]],
  191. [[2,12,4,1,7,10,11,6,8,5,3,15,13,0,14,9],[14,11,2,12,4,7,13,1,5,0,15,10,3,9,8,6],[4,2,1,11,10,13,7,8,15,9,12,5,6,3,0,14],[11,8,12,7,1,14,2,13,6,15,0,9,10,4,5,3]],
  192. [[12,1,10,15,9,2,6,8,0,13,3,4,14,7,5,11],[10,15,4,2,7,12,9,5,6,1,13,14,0,11,3,8],[9,14,15,5,2,8,12,3,7,0,4,10,1,13,11,6],[4,3,2,12,9,5,15,10,11,14,1,7,6,0,8,13]],
  193. [[4,11,2,14,15,0,8,13,3,12,9,7,5,10,6,1],[13,0,11,7,4,9,1,10,14,3,5,12,2,15,8,6],[1,4,11,13,12,3,7,14,10,15,6,8,0,5,9,2],[6,11,13,8,1,4,10,7,9,5,0,15,14,2,3,12]],
  194. [[13,2,8,4,6,15,11,1,10,9,3,14,5,0,12,7],[1,15,13,8,10,3,7,4,12,5,6,11,0,14,9,2],[7,11,4,1,9,12,14,2,0,6,10,13,15,3,5,8],[2,1,14,7,4,10,8,13,15,12,9,0,3,5,6,11]]
  195. ];
  196. function wakeupDesBitsFromBytes(bytes) {
  197. const output = new Array(bytes.length * 8);
  198. for (let index = 0; index < bytes.length; index += 1) {
  199. for (let bit = 0; bit < 8; bit += 1) output[index * 8 + bit] = (bytes[index] >> bit) & 1;
  200. }
  201. return output;
  202. }
  203. function wakeupDesBytesFromBits(bits) {
  204. const output = new Uint8Array(bits.length / 8);
  205. for (let index = 0; index < output.length; index += 1) {
  206. for (let bit = 0; bit < 8; bit += 1) output[index] |= (bits[index * 8 + bit] & 1) << bit;
  207. }
  208. return output;
  209. }
  210. function wakeupDesPermute(bits, table) {
  211. return table.map(index => bits[index] | 0);
  212. }
  213. function wakeupDesSubkeys(key) {
  214. const keyBytes = wakeupToBytes(key);
  215. if (keyBytes.length !== 8) throw new Error("WakeUP 私有 DES 密钥长度必须为 8 字节。");
  216. const bits = wakeupDesPermute(wakeupDesBitsFromBytes(keyBytes), WAKEUP_DES_PC1);
  217. let left = bits.slice(0, 28);
  218. let right = bits.slice(28);
  219. return WAKEUP_DES_SHIFTS.map(shift => {
  220. left = left.slice(shift).concat(left.slice(0, shift));
  221. right = right.slice(shift).concat(right.slice(0, shift));
  222. return wakeupDesPermute(left.concat(right), WAKEUP_DES_PC2);
  223. });
  224. }
  225. function wakeupDesFunction(right, subkey) {
  226. const expanded = wakeupDesPermute(right, WAKEUP_DES_E);
  227. const mixed = expanded.map((bit, index) => bit ^ subkey[index]);
  228. const output = [];
  229. for (let box = 0; box < 8; box += 1) {
  230. const block = mixed.slice(box * 6, box * 6 + 6);
  231. const row = block[0] * 2 + block[5];
  232. const column = block[1] * 8 + block[2] * 4 + block[3] * 2 + block[4];
  233. const value = WAKEUP_DES_SBOX[box][row][column];
  234. output.push((value >> 3) & 1, (value >> 2) & 1, (value >> 1) & 1, value & 1);
  235. }
  236. return wakeupDesPermute(output, WAKEUP_DES_P);
  237. }
  238. function wakeupDesBlock(block, subkeys) {
  239. const bits = wakeupDesPermute(wakeupDesBitsFromBytes(block), WAKEUP_DES_IP);
  240. let left = bits.slice(0, 32);
  241. let right = bits.slice(32);
  242. for (const subkey of subkeys) {
  243. const mixed = wakeupDesFunction(right, subkey);
  244. const nextRight = left.map((bit, index) => bit ^ mixed[index]);
  245. left = right;
  246. right = nextRight;
  247. }
  248. return wakeupDesBytesFromBits(wakeupDesPermute(right.concat(left), WAKEUP_DES_FP));
  249. }
  250. function wakeupConcatBytes(chunks) {
  251. const output = new Uint8Array(chunks.reduce((length, chunk) => length + chunk.length, 0));
  252. let offset = 0;
  253. chunks.forEach(chunk => {
  254. output.set(chunk, offset);
  255. offset += chunk.length;
  256. });
  257. return output;
  258. }
  259. function wakeupDesEncrypt(plain, key) {
  260. const source = wakeupToBytes(plain);
  261. const paddedLength = (source.length & ~7) + 8;
  262. const padded = new Uint8Array(paddedLength);
  263. padded.set(source);
  264. padded[paddedLength - 1] = paddedLength - source.length;
  265. const subkeys = wakeupDesSubkeys(key);
  266. const blocks = [];
  267. for (let offset = 0; offset < paddedLength; offset += 8) blocks.push(wakeupDesBlock(padded.subarray(offset, offset + 8), subkeys));
  268. return wakeupConcatBytes(blocks);
  269. }
  270. function wakeupDesDecrypt(cipher, key) {
  271. const source = wakeupToBytes(cipher);
  272. if (source.length % 8 !== 0) throw new Error("WakeUP 私有 DES 密文长度无效。");
  273. const subkeys = wakeupDesSubkeys(key).reverse();
  274. const blocks = [];
  275. for (let offset = 0; offset < source.length; offset += 8) blocks.push(wakeupDesBlock(source.subarray(offset, offset + 8), subkeys));
  276. const plain = wakeupConcatBytes(blocks);
  277. const padLength = plain[plain.length - 1];
  278. if (padLength > plain.length) throw new Error("WakeUP 私有 DES 填充无效。");
  279. return plain.subarray(0, plain.length - padLength);
  280. }
  281. function wakeupReverseNibble(value) {
  282. return ((value & 1) << 3) | ((value & 2) << 1) | ((value & 4) >> 1) | ((value & 8) >> 3);
  283. }
  284. function wakeupNativeHexEncode(bytes) {
  285. return Array.from(wakeupToBytes(bytes), byte => {
  286. const low = wakeupReverseNibble(byte & 0x0f).toString(16).padStart(2, "0");
  287. const high = wakeupReverseNibble((byte >> 4) & 0x0f).toString(16).padStart(2, "0");
  288. return low + high;
  289. }).join("");
  290. }
  291. function wakeupNativeHexDecode(text) {
  292. const source = String(text).slice(0, Math.floor(String(text).length / 4) * 4);
  293. const output = new Uint8Array(source.length / 4);
  294. for (let index = 0; index < source.length; index += 4) {
  295. const low = wakeupReverseNibble(parseInt(source[index + 1], 16));
  296. const high = wakeupReverseNibble(parseInt(source[index + 3], 16));
  297. output[index / 4] = low | (high << 4);
  298. }
  299. return output;
  300. }
  301. function wakeupRc4(data, key) {
  302. const keyBytes = wakeupToBytes(key);
  303. const state = new Uint8Array(256);
  304. for (let index = 0; index < 256; index += 1) state[index] = index;
  305. let swapIndex = 0;
  306. for (let index = 0; index < 256; index += 1) {
  307. swapIndex = (swapIndex + state[index] + keyBytes[index % keyBytes.length]) & 0xff;
  308. [state[index], state[swapIndex]] = [state[swapIndex], state[index]];
  309. }
  310. const input = wakeupToBytes(data);
  311. const output = new Uint8Array(input.length);
  312. let left = 0;
  313. let right = 0;
  314. for (let index = 0; index < input.length; index += 1) {
  315. left = (left + 1) & 0xff;
  316. right = (right + state[left]) & 0xff;
  317. [state[left], state[right]] = [state[right], state[left]];
  318. output[index] = input[index] ^ state[(state[left] + state[right]) & 0xff];
  319. }
  320. return output;
  321. }
  322. /** WakeUP v6.1.70 的设备标识、签名、反爬握手和加密请求实现。 */
  323. function wakeupCuidFromAndroidId(androidId) {
  324. return `${wakeupMd5Upper(`com.baidu${androidId || ""}`)}|0`;
  325. }
  326. function wakeupAdidFromAndroidId(androidId) {
  327. const prefix = wakeupMd5Hex(`alpha.beta${androidId || ""}`);
  328. const folded = BigInt(`0x${prefix.slice(0, 16)}`) ^ BigInt(`0x${prefix.slice(16)}`);
  329. const checksum = (((folded >> 32n) ^ folded) & 0xffffffffn).toString(16).padStart(8, "0");
  330. return prefix + checksum;
  331. }
  332. function wakeupGenerateRand10() {
  333. const alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  334. const bytes = new Uint8Array(10);
  335. if (!globalThis.crypto || !globalThis.crypto.getRandomValues) throw new Error("当前 WebView 不支持安全随机数生成。");
  336. globalThis.crypto.getRandomValues(bytes);
  337. return Array.from(bytes, byte => alphabet[byte % alphabet.length]).join("");
  338. }
  339. function wakeupCreateDevice() {
  340. const device = { ...WAKEUP_DEVICE_DEFAULTS };
  341. device.cuid = wakeupCuidFromAndroidId(device.androidId);
  342. device.adid = device.adid || wakeupAdidFromAndroidId(device.androidId);
  343. return device;
  344. }
  345. function wakeupMakeCommonParams(device) {
  346. return [["area", device.area], ["screensize", device.screensize], ["cuid", device.cuid], ["os", "android"],
  347. ["city", device.city], ["abis", device.abis], ["channel", WAKEUP_V6170.channel], ["appBit", device.appBit],
  348. ["vc", String(WAKEUP_V6170.versionCode)], ["deviceId", device.deviceId], ["token", WAKEUP_V6170.publicToken],
  349. ["adid", device.adid], ["province", device.province], ["pkgName", WAKEUP_V6170.packageName], ["appId", device.appId],
  350. ["download_type", device.downloadType], ["vcname", WAKEUP_V6170.versionName], ["sdk", String(device.sdk)],
  351. ["device", device.device], ["brand", device.brand], ["operatorid", device.operatorid]]
  352. .map(([key, value]) => [key, value == null ? "" : String(value)]);
  353. }
  354. function wakeupMakeSignA(cuid) {
  355. const rand10 = wakeupGenerateRand10();
  356. const plain = `${WAKEUP_V6170.magic}##${rand10}##${WAKEUP_V6170.signatureMd5}##${cuid}`;
  357. return { signA: wakeupNativeHexEncode(wakeupDesEncrypt(plain, WAKEUP_V6170.signAKey)), rand10 };
  358. }
  359. function wakeupTokenFromSignB(signB, rand10) {
  360. const plain = wakeupDesDecrypt(wakeupNativeHexDecode(signB), `${rand10.slice(0, 5)}#G4`);
  361. const text = wakeupBytesToLatin1(plain);
  362. if (text.length < 22 || text.slice(0, 10) !== rand10) throw new Error("WakeUP antispam token 校验失败。");
  363. return text.slice(12, 22);
  364. }
  365. function wakeupGetRc4Key(token) {
  366. const first = wakeupMd5Hex(WAKEUP_V6170.keySalt);
  367. const second = wakeupMd5Hex(String(WAKEUP_V6170.versionCode));
  368. const raw = wakeupMd5Hex(`[${token}]@`);
  369. const reversed = raw.slice(17).split("").reverse().join("") + raw.slice(15, 17) + raw.slice(0, 15).split("").reverse().join("");
  370. const chars = (first + second + reversed).split("");
  371. for (let index = 0; index < 3; index += 1) {
  372. const right = chars.length - 1 - index;
  373. [chars[index], chars[right]] = [chars[right], chars[index]];
  374. }
  375. const output = (chars.join("") + wakeupMd5Hex(chars.join(""))).split("");
  376. for (let index = 0; index < 60; index += 1) {
  377. [output[index], output[output.length - 1 - index]] = [output[output.length - 1 - index], output[index]];
  378. }
  379. return output.join("");
  380. }
  381. function wakeupGetSign(base64Params, token) {
  382. return wakeupMd5Hex(`${WAKEUP_V6170.magic}[${wakeupMd5Hex(token)}]@${base64Params}`);
  383. }
  384. function wakeupBuildShareRequest(code, token, device, commonParams) {
  385. const rc4Key = wakeupGetRc4Key(token);
  386. const dataValue = wakeupBytesToBase64(wakeupRc4(`key=${wakeupAndroidQuote(code)}`, rc4Key));
  387. const serverTime = Math.floor(Date.now() / 1000);
  388. const kakorr = Date.now();
  389. const signItems = [`data=${dataValue}`, ...commonParams.map(([key, value]) => `${key}=${value}`)];
  390. if (device.did) signItems.push(`did=${device.did}`);
  391. signItems.push(`nt=${device.nt}`, `_t_=${serverTime}`, `kakorrhaphiophobia=${kakorr}`);
  392. const sign = wakeupGetSign(wakeupBytesToBase64(new TextEncoder().encode(signItems.sort().join(""))), token);
  393. const extras = device.did ? [["did", device.did]] : [];
  394. const body = `&${wakeupFormEncode([["data", dataValue], ...commonParams, ...extras, ["nt", device.nt]])}&sign=${sign}&_t_=${serverTime}&kakorrhaphiophobia=${kakorr}`;
  395. return { rc4Key, body };
  396. }
  397. function wakeupExtractSignB(payload) {
  398. if (!payload || typeof payload !== "object") return "";
  399. let candidate = payload.data;
  400. if (candidate && typeof candidate === "object") candidate = candidate.data;
  401. if (typeof candidate !== "string" || !candidate) candidate = payload.result && typeof payload.result === "object" ? payload.result.data : null;
  402. return typeof candidate === "string" ? candidate : "";
  403. }
  404. async function wakeupPostForm(url, body, device) {
  405. const headers = { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", "na__zyb_source__": "wakeup", "zyb-cuid": device.cuid, "zyb-adid": device.adid };
  406. if (device.did) headers["zyb-did"] = device.did;
  407. const controller = typeof AbortController === "undefined" ? null : new AbortController();
  408. const timeout = controller ? setTimeout(() => controller.abort(), 15000) : null;
  409. try {
  410. const response = await fetch(url, { method: "POST", headers, body, signal: controller ? controller.signal : undefined });
  411. const text = await response.text();
  412. if (!response.ok) throw new Error(`WakeUP 服务请求失败(HTTP ${response.status})。`);
  413. return text;
  414. } finally {
  415. if (timeout) clearTimeout(timeout);
  416. }
  417. }
  418. /**
  419. * 执行 WakeUP 官方 v6.1.70 两段式请求,并返回解密后的课表分享数据。
  420. * 敏感口令、签名和 token 不写入日志,避免泄漏。
  421. */
  422. async function wakeupDecodeShareCode(code) {
  423. const device = wakeupCreateDevice();
  424. const commonParams = wakeupMakeCommonParams(device);
  425. const { signA, rand10 } = wakeupMakeSignA(device.cuid);
  426. const antispamBody = `${wakeupFormEncode([["data", signA], ...commonParams])}&`;
  427. const antispamText = await wakeupPostForm(`${WAKEUP_V6170.host}${WAKEUP_V6170.antispamPath}`, antispamBody, device);
  428. let antispamJson;
  429. try {
  430. antispamJson = JSON.parse(antispamText);
  431. } catch {
  432. throw new Error("WakeUP antispam 响应格式无效。");
  433. }
  434. const signB = wakeupExtractSignB(antispamJson);
  435. if (!signB) throw new Error("WakeUP antispam 响应未包含签名数据。");
  436. const token = wakeupTokenFromSignB(signB, rand10);
  437. const shareRequest = wakeupBuildShareRequest(code, token, device, commonParams);
  438. const shareText = await wakeupPostForm(`${WAKEUP_V6170.host}${WAKEUP_V6170.sharePath}`, shareRequest.body, device);
  439. let shareJson;
  440. try {
  441. shareJson = JSON.parse(shareText);
  442. } catch {
  443. throw new Error("WakeUP 课表响应格式无效。");
  444. }
  445. const encrypted = shareJson && typeof shareJson.data === "object" ? shareJson.data.data : shareJson && shareJson.data;
  446. if (typeof encrypted !== "string" || !encrypted) throw new Error("WakeUP 课表响应未包含加密数据。");
  447. let decrypted;
  448. try {
  449. decrypted = JSON.parse(wakeupBytesToUtf8(wakeupRc4(wakeupBase64ToBytes(encrypted), shareRequest.rc4Key)));
  450. } catch {
  451. throw new Error("WakeUP 课表响应解密失败。");
  452. }
  453. if (!decrypted || typeof decrypted.shareData !== "string") throw new Error("WakeUP 解密数据中未找到 shareData。");
  454. return decrypted.shareData;
  455. }
  456. /** 将 WakeUP 分享数据(多个换行分隔的 JSON 块)解析成各部分。 */
  457. function parseRawScheduleData(rawData) {
  458. AndroidBridge.showToast("正在解析原始数据...");
  459. const parts = rawData.trim().split("\n");
  460. if (parts.length < 5) throw new Error("数据格式不完整,预期至少包含 5 个部分。");
  461. return {
  462. baseConfig: JSON.parse(parts[0]),
  463. timeSlotsRaw: JSON.parse(parts[1]),
  464. uiConfig: JSON.parse(parts[2]),
  465. coursesRaw: JSON.parse(parts[3]),
  466. courseDetailRaw: JSON.parse(parts[4])
  467. };
  468. }
  469. function formatDateToYYYYMMDD(dateObj) {
  470. const year = dateObj.getFullYear();
  471. const month = String(dateObj.getMonth() + 1).padStart(2, "0");
  472. const day = String(dateObj.getDate()).padStart(2, "0");
  473. return `${year}-${month}-${day}`;
  474. }
  475. function convertToSemesterStartDate(rawDate) {
  476. if (!rawDate || String(rawDate).trim().length === 0) return null;
  477. const dateObj = new Date(String(rawDate).trim().replace(/\//g, "-"));
  478. if (isNaN(dateObj.getTime())) {
  479. console.warn(`WARN: 无法将原始日期值 "${rawDate}" 转换为有效日期。`);
  480. return null;
  481. }
  482. return formatDateToYYYYMMDD(dateObj);
  483. }
  484. /** 通过 WakeUP v6.1.70 官方渠道获取、解密、解析并转换课程表。 */
  485. async function fetchAndParseData(shareKey) {
  486. try {
  487. AndroidBridge.showToast("正在通过 WakeUP 官方渠道请求课表数据...");
  488. const parsedData = parseRawScheduleData(await wakeupDecodeShareCode(shareKey.trim()));
  489. let rawNodes = parsedData.uiConfig.nodes;
  490. if (!Array.isArray(rawNodes)) {
  491. if (typeof rawNodes === "number" && rawNodes > 0) {
  492. rawNodes = Array.from({ length: rawNodes }, (_, index) => index + 1);
  493. } else {
  494. console.warn(`WARN: uiConfig.nodes 数据无效 (${rawNodes}),已重置为空数组。`);
  495. rawNodes = [];
  496. }
  497. }
  498. const validNodes = new Set(rawNodes);
  499. const timeSlots = parsedData.timeSlotsRaw
  500. .filter(slot => slot.startTime !== "00:00" && slot.endTime !== "00:00")
  501. .filter(slot => validNodes.has(slot.node))
  502. .map(slot => ({ number: slot.node, startTime: slot.startTime, endTime: slot.endTime }));
  503. const courseConfig = {
  504. semesterStartDate: convertToSemesterStartDate(parsedData.uiConfig.startDate),
  505. semesterTotalWeeks: parsedData.uiConfig.maxWeek,
  506. defaultClassDuration: parsedData.baseConfig.courseLen,
  507. defaultBreakDuration: parsedData.baseConfig.theBreakLen
  508. };
  509. const courses = convertToCourseJsonModel(parsedData);
  510. AndroidBridge.showToast(`数据解析成功,共 ${courses.length} 门课程`);
  511. return { timeSlots, courseConfig, courses };
  512. } catch (error) {
  513. console.error("WakeUP 数据获取或解析失败:", error);
  514. AndroidBridge.showToast(`数据获取或解析失败: ${error.message}`);
  515. return null;
  516. }
  517. }
  518. /**
  519. * 将课程数据从原始结构转换为 CourseJsonModel 格式。
  520. * @param {object} parsedData 包含 coursesRaw 和 courseDetailRaw 的解析数据。
  521. * @returns {Array<object>} 符合 CourseJsonModel 结构的课程数组。
  522. */
  523. function convertToCourseJsonModel(parsedData) {
  524. const { coursesRaw, courseDetailRaw } = parsedData;
  525. const finalCourses = [];
  526. // 创建课程ID到课程信息的映射
  527. const courseMap = coursesRaw.reduce((map, course) => {
  528. map[course.id] = course;
  529. return map;
  530. }, {});
  531. // 遍历课程安排详情,构建最终的 CourseJsonModel
  532. courseDetailRaw.forEach(detail => {
  533. if (detail.id === undefined || detail.id === null) return;
  534. const courseInfo = courseMap[detail.id];
  535. if (!courseInfo) return;
  536. // 计算 weeks 数组
  537. const weeks = [];
  538. for (let i = detail.startWeek; i <= detail.endWeek; i++) {
  539. if (detail.type === 0 || // 每周
  540. (detail.type === 1 && i % 2 !== 0) || // 单周 (奇数周)
  541. (detail.type === 2 && i % 2 === 0)) { // 双周 (偶数周)
  542. weeks.push(i);
  543. }
  544. }
  545. // 转换 startSection 和 endSection
  546. const startSection = detail.startNode;
  547. const endSection = detail.startNode + detail.step - 1;
  548. // 构造 CourseJsonModel 对象
  549. const course = {
  550. "name": courseInfo.courseName,
  551. "teacher": detail.teacher || "",
  552. "position": detail.room || "",
  553. "day": detail.day,
  554. "startSection": startSection,
  555. "endSection": endSection,
  556. "weeks": weeks
  557. };
  558. finalCourses.push(course);
  559. });
  560. return finalCourses;
  561. }
  562. async function saveTimeSlots(timeSlots) {
  563. if (timeSlots.length === 0) {
  564. AndroidBridge.showToast("没有可导入的时间段数据。");
  565. return true;
  566. }
  567. try {
  568. console.log("正在导入时间段...");
  569. await window.AndroidBridgePromise.savePresetTimeSlots(JSON.stringify(timeSlots));
  570. AndroidBridge.showToast(`成功导入 ${timeSlots.length} 个时间段!`);
  571. return true;
  572. } catch (error) {
  573. console.error("导入时间段失败:", error);
  574. AndroidBridge.showToast("导入时间段失败: " + error.message);
  575. return false;
  576. }
  577. }
  578. async function saveConfig(configData) {
  579. try {
  580. console.log("正在导入课表配置...");
  581. await window.AndroidBridgePromise.saveCourseConfig(JSON.stringify(configData));
  582. AndroidBridge.showToast("课表配置(学期/时长)更新成功!");
  583. return true;
  584. } catch (error) {
  585. console.error("导入配置失败:", error);
  586. AndroidBridge.showToast("导入配置失败: " + error.message);
  587. return false;
  588. }
  589. }
  590. async function saveCourses(courses) {
  591. if (courses.length === 0) {
  592. AndroidBridge.showToast("没有课程数据需要导入。");
  593. return true;
  594. }
  595. try {
  596. console.log("正在导入课程数据...");
  597. await window.AndroidBridgePromise.saveImportedCourses(JSON.stringify(courses));
  598. AndroidBridge.showToast(`成功导入 ${courses.length} 门课程!`);
  599. return true;
  600. } catch (error) {
  601. console.error("导入课程失败:", error);
  602. AndroidBridge.showToast("导入课程失败: " + error.message);
  603. return false;
  604. }
  605. }
  606. async function runImportFlow() {
  607. console.log("Wakeup 课表分享导入流程启动...");
  608. AndroidBridge.showToast("课表导入流程即将开始...");
  609. // 获取用户输入
  610. const userInput = await window.AndroidBridgePromise.showPrompt(
  611. "输入课表分享口令",
  612. "可直接粘贴分享的整段文本,系统会自动提取 Key",
  613. "",
  614. "validateKey"
  615. );
  616. if (userInput === null) {
  617. AndroidBridge.showToast("导入已取消。");
  618. return;
  619. }
  620. // 提取口令(从「」内或文本特征中提取 32 位 Key)
  621. const shareKey = extractKeyFromText(userInput);
  622. // 网络请求和数据解析
  623. const parsed = await fetchAndParseData(shareKey);
  624. if (parsed === null) {
  625. return;
  626. }
  627. // 导入时间段
  628. const timeSlotResult = await saveTimeSlots(parsed.timeSlots);
  629. if (!timeSlotResult) {
  630. return;
  631. }
  632. // 导入配置
  633. const configResult = await saveConfig(parsed.courseConfig);
  634. if (!configResult) {
  635. return;
  636. }
  637. // 导入课程数据
  638. const courseSaveResult = await saveCourses(parsed.courses);
  639. if (!courseSaveResult) {
  640. return;
  641. }
  642. // 流程完全成功,发送结束信号
  643. AndroidBridge.showToast("所有任务已成功完成!");
  644. AndroidBridge.notifyTaskCompletion();
  645. }
  646. // 启动导入流程
  647. runImportFlow();