pksExpertHelper.js 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. const scriptName = `168专家推荐`;
  2. const magicJS = MagicJS(scriptName, "INFO");
  3. let gLotteryCode = 10058;
  4. let gExpertsRecommendToken = `jGu36jgpJJYPh6AsOGQydYj8GEKxUnvw`;
  5. let gExpertsRecommendHost = `n3iiz7z5p.168fxo67.com`;
  6. const gExpertsRecommendHeaders = {
  7. 'Cookie': `__nxquid=xFcoBcm0I0z0zfRnkzrBrh0Z+z0ppg==0022`,
  8. 'Accept': `*/*`,
  9. 'Connection': `keep-alive`,
  10. 'Accept-Encoding': `gzip, deflate, br`,
  11. 'Host': gExpertsRecommendHost,
  12. 'User-Agent': `CaiPiao/2.1.64 (iPhone; iOS 16.6.1; Scale/3.00)`,
  13. 'Accept-Language': `zh-Hans-CN;q=1`,
  14. 'token': gExpertsRecommendToken
  15. };
  16. const formatNow = () => {
  17. return magicJS.formatDate(new Date(), 'yyyy-MM-dd');
  18. }
  19. let gRetBody;
  20. async function Main() {
  21. if (magicJS.isRequest) {
  22. checkHandleRequest();
  23. } else {
  24. gLotteryCode = magicJS.data.read('168_PksPlanLotteryCode', 10058);
  25. gExpertsRecommendHost = magicJS.data.read('168_PksExpertsPlanAPIHost', 'n3iiz7z5p.168fxo67.com');
  26. gExpertsRecommendToken = magicJS.data.read('168_PksExpertsPlanToken', 'jGu36jgpJJYPh6AsOGQydYj8GEKxUnvw');
  27. gExpertsRecommendHeaders.Host = gExpertsRecommendHost;
  28. gExpertsRecommendHeaders.token = gExpertsRecommendToken;
  29. let expertsResult = await tryPickExpert();
  30. }
  31. magicJS.notification.msg('');
  32. if (gRetBody) {
  33. magicJS.done({
  34. body: JSON.stringify(gRetBody)
  35. });
  36. } else {
  37. magicJS.done();
  38. }
  39. }
  40. function checkHandleRequest() {
  41. handleHeaders();
  42. const request = magicJS.request;
  43. const url = request.url;
  44. const path = request.path;
  45. magicJS.log(`请求url=${url}#${request.method}`);
  46. let reqBody = magicJS.getRequestBody();
  47. magicJS.log(`请求body=${reqBody}`);
  48. if ($request && $request.method != 'OPTIONS') {
  49. switch (path) {
  50. case '/v1/html/buy_plan/buy_plan.html`':
  51. break;
  52. default:
  53. if (path.indexOf('/pks/getLotteryPksInfo.do') > -1) {
  54. }
  55. break;
  56. }
  57. }
  58. }
  59. async function tryPickExpert() {
  60. let groupCode = 1;
  61. let ranking = magicJS.data.read('168_PksExpertRecommendRanking', 1);
  62. let recommendList = await getExpertsRecommendList(gLotteryCode, groupCode, ranking);
  63. if (!recommendList) {
  64. return;
  65. }
  66. let expectList = [];
  67. for (let i = 0; i < recommendList.length; i++) {
  68. const item = recommendList[i];
  69. const recommendCount = item.recommendCount;
  70. if (recommendCount <= 5) {
  71. expectList.push(item);
  72. }
  73. }
  74. let expectItem = null;
  75. let winningProbability = 90;
  76. let tmpData = [];
  77. for (let i = 0; i < expectList.length; i++) {
  78. const item = expectList[i];
  79. const prValue = parseInt(item.winningProbability);
  80. if (prValue >= winningProbability) {
  81. let planDetail = await getExpertsRecommendDetail(item.userId, gLotteryCode, groupCode, ranking);
  82. let factor = calcExpertPickFactor(planDetail);
  83. tmpData.push([factor, item]);
  84. }
  85. }
  86. if (tmpData.length == 0) {
  87. return;
  88. }
  89. tmpData.sort((a, b) => {
  90. if (a[0] == b[0]) {
  91. return 0;
  92. } else if (a[0] < b[0]) {
  93. return 1;
  94. } else {
  95. return -1;
  96. }
  97. });
  98. expectItem = tmpData[0][1];
  99. if (!expectItem) {
  100. return;
  101. }
  102. magicJS.data.write('168_PksExpertUserName', expectItem.userName);
  103. let tipsMsg = `挑选当前最优专家[${expectItem.userName}] 准确率:${expectItem.winningProbability}`;
  104. magicJS.logger.info(tipsMsg);
  105. magicJS.notification.appendNotifyInfo(tipsMsg);
  106. }
  107. function calcExpertItemFactor(expertItem) {
  108. let factor = 0;
  109. // 追一期中的局数
  110. let firstNum = expertItem.firstNum;
  111. // 追二期中的局数
  112. let secondNum = expertItem.secondNum;
  113. // 追三期中的局数
  114. let thirdNum = expertItem.thirdNum;
  115. // 连续中的局数
  116. let continuousWin = expertItem.continuousWin;
  117. // 最大连中的局数
  118. let maxContinuousWin = expertItem.maxContinuousWin;
  119. // 最大连错的局数
  120. let maxContinuousError = expertItem.maxContinuousError;
  121. // 最近100局错的局数
  122. let errorNum = expertItem.errorNum;
  123. // 最近100局的胜率
  124. let winningProbability = parseInt(expertItem.winningProbability);
  125. let scoreWinningProbability = winningProbability / 100 * 50;
  126. let scoreMaxContinuousError = maxContinuousError / 100 * 50;
  127. let scoreSecondNum = secondNum / 100 * 50;
  128. let scoreFirstNum = firstNum / 100 * 20;
  129. let scoreThirdNum = thirdNum / 100 * 20;
  130. let scoreContinuousWin = continuousWin / 100 * 20;
  131. let scoreMaxContinuousWin = maxContinuousWin / 100 * 10;
  132. let totalScore = scoreWinningProbability + scoreMaxContinuousError + scoreSecondNum + scoreFirstNum + scoreThirdNum + scoreContinuousWin + scoreMaxContinuousWin;
  133. factor = totalScore;
  134. return factor;
  135. }
  136. function calcExpertPickFactor(planDetail) {
  137. let expertItem = planDetail.head;
  138. let factor = calcExpertItemFactor(expertItem);
  139. if (planDetail.list) {
  140. let list = planDetail.list;
  141. let recContWrongCount = 0;
  142. let recWrongCostTurn = 0;
  143. for (let i = 1; i < list.length; i++) {
  144. const item = list[i];
  145. if (item.result == '错') {
  146. recContWrongCount += 1;
  147. recWrongCostTurn += item.rank;
  148. } else {
  149. break;
  150. }
  151. }
  152. let recContRightCount = 0;
  153. let recRightCostTurn = 0;
  154. for (let i = 1; i < list.length; i++) {
  155. const item = list[i];
  156. if (item.result == '中') {
  157. recContRightCount += 1;
  158. recRightCostTurn += item.rank;
  159. } else {
  160. break;
  161. }
  162. }
  163. let rightCount = 0;
  164. let wrongCount = 0;
  165. let count = Math.min(list.length, 10);
  166. for (let i = 1; i < count; i++) {
  167. const item = list[i];
  168. if (item.result == '中') {
  169. rightCount += 1;
  170. } else {
  171. wrongCount += 1;
  172. }
  173. }
  174. factor = factor + 60 * 1 / recContRightCount + 30 * recContWrongCount / 6 + 30 * 1 / rightCount + 30 * wrongCount / count;
  175. }
  176. return factor;
  177. }
  178. async function getExpertsRecommendList(lotCode, groupCode = 1, ranking = 1, field = 'winningProbability') {
  179. /**
  180. * type
  181. * 0=定码
  182. * 1=杀码
  183. * 2=大小
  184. * 3=单收
  185. * 4=龙虎
  186. */
  187. /**
  188. * field
  189. * winningProbability=准确率
  190. * continuousWin=当前连中
  191. */
  192. const reqData = {
  193. lotCode: lotCode,
  194. groupCode: groupCode,
  195. ranking: ranking,
  196. field: field,
  197. type: 0,
  198. sort: 'desc',
  199. s: '168noadv',
  200. };
  201. const queryStr = magicJS.objToQueryStr(reqData);
  202. const url = `https://${gExpertsRecommendHost}/expertsRecommend/list.do?${queryStr}`;
  203. magicJS.logger.info(url);
  204. const myRequest = {
  205. url: url,
  206. headers: gExpertsRecommendHeaders,
  207. body: ``
  208. };
  209. let result = await magicJS.http.get(myRequest).then(response => {
  210. try {
  211. const body = response.body;
  212. // magicJS.logger.info(JSON.stringify(body));
  213. let rspData;
  214. if (typeof body === "string") {
  215. return {
  216. errorCode: -1,
  217. message: '操作失败',
  218. result: null,
  219. };
  220. } else if (typeof body === "object") {
  221. rspData = body;
  222. }
  223. return rspData;
  224. } catch (e) {
  225. magicJS.logger.error(e);
  226. }
  227. }).catch(err => {
  228. const msg = `请求发生异常\n${JSON.stringify(err)}`;
  229. magicJS.logger.error(msg);
  230. });
  231. if (!result) {
  232. return;
  233. }
  234. if (result.errorCode != 0 || result.result == void 0) {
  235. return;
  236. }
  237. if (result.result.businessCode != 0) {
  238. return;
  239. }
  240. return result.result.data;
  241. }
  242. async function getExpertsRecommendDetail(userId, lotCode, groupCode = 1, ranking = 1) {
  243. const reqData = {
  244. userId: userId,
  245. lotCode: lotCode,
  246. groupCode: groupCode,
  247. ranking: ranking,
  248. type: 0,
  249. sort: 'desc',
  250. s: '168noadv',
  251. };
  252. const queryStr = magicJS.objToQueryStr(reqData);
  253. const url = `https://${gExpertsRecommendHost}/expertsRecommend/detail.do?${queryStr}`;
  254. magicJS.logger.info(url);
  255. const myRequest = {
  256. url: url,
  257. headers: gExpertsRecommendHeaders,
  258. body: ``
  259. };
  260. let result = await magicJS.http.get(myRequest).then(response => {
  261. try {
  262. const body = response.body;
  263. // magicJS.logger.info(JSON.stringify(body));
  264. let rspData;
  265. if (typeof body === "string") {
  266. return {
  267. errorCode: -1,
  268. message: '操作失败',
  269. result: null,
  270. };
  271. } else if (typeof body === "object") {
  272. rspData = body;
  273. }
  274. return rspData;
  275. } catch (e) {
  276. magicJS.logger.error(e);
  277. }
  278. }).catch(err => {
  279. const msg = `请求发生异常\n${JSON.stringify(err)}`;
  280. magicJS.logger.error(msg);
  281. });
  282. if (!result) {
  283. return;
  284. }
  285. if (result.errorCode != 0 || result.result == void 0) {
  286. return;
  287. }
  288. if (result.result.businessCode != 0) {
  289. return;
  290. }
  291. return result.result.data;
  292. }
  293. Main().catch((e) => magicJS.logger.log(`-\n ${e}`)).finally(() => magicJS.done());
  294. //---SyncByPyScript---MagicJS3-start
  295. function MagicJS(e = "MagicJS", t = "INFO") { const r = () => { const e = "undefined" != typeof $loon, t = "undefined" != typeof $task, n = "undefined" != typeof module, r = "undefined" != typeof $httpClient && !e, o = "undefined" != typeof $storm, i = "undefined" != typeof $environment && void 0 !== $environment["stash-build"]; var s = r || e || o || i; const a = "undefined" != typeof importModule; return { isLoon: e, isQuanX: t, isNode: n, isSurge: r, isStorm: o, isStash: i, isSurgeLike: s, isScriptable: a, get name() { return e ? "Loon" : t ? "QuantumultX" : n ? "NodeJS" : r ? "Surge" : a ? "Scriptable" : "unknown" }, get build() { return r ? $environment["surge-build"] : i ? $environment["stash-build"] : o ? $storm.buildVersion : void 0 }, get language() { if (r || i) return $environment.language }, get version() { return r ? $environment["surge-version"] : i ? $environment["stash-version"] : o ? $storm.appVersion : n ? process.version : void 0 }, get system() { return r ? $environment.system : n ? process.platform : void 0 }, get systemVersion() { if (o) return $storm.systemVersion }, get deviceName() { if (o) return $storm.deviceName } } }, o = (n, e = "INFO") => { let r = e, t = "\n"; const o = { SNIFFER: 6, DEBUG: 5, INFO: 4, NOTIFY: 3, WARNING: 2, ERROR: 1, CRITICAL: 0, NONE: -1 }, i = { SNIFFER: "", DEBUG: "", INFO: "", NOTIFY: "", WARNING: "❗ ", ERROR: "❌ ", CRITICAL: "❌ ", NONE: "" }, s = (e, t = "INFO") => { o[r] < o[t.toUpperCase()] || console.log(`██[${n}][${t}]` + i[t.toUpperCase()] + e + "\n") }; return { getLevel: () => r, setLevel: e => { r = e }, sniffer: (...e) => { e = e.join(t); s(e, "SNIFFER") }, log: (...e) => { e = e.join(t); console.log(`██[${n}]` + e + "\n") }, debug: (...e) => { e = e.join(t); s(e, "DEBUG") }, info: (...e) => { e = e.join(t); s(e, "INFO") }, notify: (...e) => { e = e.join(t); s(e, "NOTIFY") }, warning: (...e) => { e = e.join(t); s(e, "WARNING") }, error: (...e) => { e = e.join(t); s(e, "ERROR") }, retry: (...e) => { e = e.join(t); s(e, "RETRY") } } }; return new class { constructor(e, t) { var n; this._startTime = Date.now(), this.version = "3.0.0", this.scriptName = e, this.env = r(), this.logger = o(e, t), this.http = "function" == typeof MagicHttp ? MagicHttp(this.env, this.logger) : void 0, this.data = "function" == typeof MagicData ? MagicData(this.env, this.logger) : void 0, this.notification = "function" == typeof MagicNotification ? MagicNotification(this.scriptName, this.env, this.logger, this.http) : void 0, this.utils = "function" == typeof MagicUtils ? MagicUtils(this.env, this.logger) : void 0, this.qinglong = "function" == typeof MagicQingLong ? MagicQingLong(this.env, this.data, this.logger) : void 0, void 0 !== this.data && (t = this.data.read("magic_loglevel"), n = this.data.read("magic_bark_url"), t && this.logger.setLevel(t.toUpperCase()), n) && this.notification.setBark(n), this.logger.info(e + ", 开始执行!") } get isRequest() { return "undefined" != typeof $request } get isStrictRequest() { return "undefined" != typeof $request && "undefined" == typeof $response } get isResponse() { return "undefined" != typeof $response } get isDebug() { return "DEBUG" === this.logger.level } get request() { return "undefined" != typeof $request ? $request : void 0 } get response() { if ("undefined" != typeof $response) return $response.hasOwnProperty("status") && ($response.statusCode = $response.status), $response.hasOwnProperty("statusCode") && ($response.status = $response.statusCode), $response } log(...e) { this.logger.log(e) } toStr(e, t = null) { try { return JSON.stringify(e) } catch { return t } } toObj(e, t = null) { try { return JSON.parse(e) } catch { return t } } checkRecordRequestBody() { if (this.isRequest) { var t = $request.body; if (t) { var n = this.env, r = $request.path; let e = this.scriptName + "#" + r.replace("/", "_"); e = e.replace("?", "#"), n.isQuanX && $prefs.setValueForKey(t, e), (n.isLoon || n.isSurge) && $persistentStore.write(t, e), n.isNode && require("fs").writeFileSync(e + ".json", t, { flag: "w" }, e => console.log(e)) } } } getRequestBody() { var e = this.env, t = $request.path; let n = this.scriptName + "#" + t.replace("/", "_"); if (n = n.replace("?", "#"), e.isSurge || e.isLoon) return $persistentStore.read(n); if (e.isQuanX) return $prefs.valueForKey(n); if (e.isNode) { t = n + ".json", e = require("fs"); if (!e.existsSync(t)) return JSON.parse(e.readFileSync(t)) } } getResponseBody() { if ($response) return $response.body } parseCookies(e) { let t = {}; return e && e.split(";").forEach(function (e) { e = e.split("="); t[e.shift().trim()] = decodeURI(e.join("=")) }), t } serializeCookies(e) { var t, n = []; for (t in e) { var r = e[t], r = encodeURIComponent(t) + "=" + encodeURIComponent(r); n.push(r) } return n.join("; ") } parseSetCookies(e) { const o = ["Expires", "Max-Age", "Domain", "Path", "HttpOnly", "SameSite"]; e = e.split(";"); let i = null; const s = {}, a = []; return e.forEach(e => { var t, e = e.trim(); let n = null, r = !0; if (e.includes("=") ? (t = e.split("="), n = t[0].trim(), r = t[1].trim()) : n = e, o.includes(n)) s[i] && (s[i][n] = r, s[i].attribs[n] = r); else { i = n; let t = {}; i.includes(",") && i.split(",").forEach(e => { e = e.trim(); o.includes(e) ? t[e] = !0 : i = e }), s[i] = { name: i, value: r, attribs: t }, a.push(s[i]) } }), a } objToQueryStr(t, n) { let r = ""; for (const o in t) { let e = t[o]; null != e && "" !== e && ("object" == typeof e ? e = JSON.stringify(e) : n && (e = encodeURIComponent(e)), r += `${o}=${e}&`) } return r = r.substring(0, r.length - 1) } parseQueryStr(e) { var t = {}, n = (e = -1 < e.indexOf("?") ? e.split("?")[1] : e).split("&"); for (let e = 0; e < n.length; e++) { var r = n[e].split("="); t[r[0]] = r[1] } return t } deepClone(e, t) { for (var n in t = t || {}, e) "object" == typeof e[n] ? (t[n] = e[n].constructor === Array ? [] : {}, this.deepClone(e[n], t[n])) : t[n] = e[n]; return t } formatDate(e, t) { var n, r = { "M+": e.getMonth() + 1, "d+": e.getDate(), "H+": e.getHours(), "m+": e.getMinutes(), "s+": e.getSeconds(), "q+": Math.floor((e.getMonth() + 3) / 3), S: e.getMilliseconds() }; for (n in /(y+)/.test(t) && (t = t.replace(RegExp.$1, (e.getFullYear() + "").substr(4 - RegExp.$1.length))), r) new RegExp("(" + n + ")").test(t) && (t = t.replace(RegExp.$1, 1 == RegExp.$1.length ? r[n] : ("00" + r[n]).substr(("" + r[n]).length))); return t } parseDate(a, e) { let l = { y: 0, M: 1, d: 0, H: 0, h: 0, m: 0, s: 0, S: 0 }; (e = e || "yyyy-MM-dd").replace(/([^yMdHmsS]*?)(([yMdHmsS])\3*)([^yMdHmsS]*?)/g, function (e, t, n, r, o, i, s) { return a = a.replace(new RegExp(t + "(\\d{" + n.length + "})" + o), function (e, t) { return l[r] = parseInt(t), "" }), "" }), l.M--; e = new Date(l.y, l.M, l.d, l.H, l.m, l.s); return 0 !== l.S && e.setMilliseconds(l.S), e } costTime() { var e = this.scriptName + "执行完毕!", t = (this._endTime = (new Date).getTime(), this._endTime - this._startTime); this.logger.info(e + `耗时【${t / 1e3}】秒`) } done = (e = {}) => { this.costTime(), "undefined" != typeof $done && $done(e) } }(e, t) } function MagicHttp(d, g) { var e; let p; d.isNode && (e = require("axios"), p = e.create()); class t { constructor(e = !0) { this.handlers = [], this.isRequest = e } use(e, t, n) { return "function" == typeof e && g.debug("Register fulfilled " + e.name), "function" == typeof t && g.debug("Register rejected " + t.name), this.handlers.push({ fulfilled: e, rejected: t, synchronous: !(!n || "boolean" != typeof n.synchronous) && n.synchronous, runWhen: n ? n.runWhen : null }), this.handlers.length - 1 } eject(e) { this.handlers[e] && (this.handlers[e] = null) } forEach(t) { this.handlers.forEach(e => { null !== e && t(e) }) } } function f(e) { let n = { ...e }; return n.params && !d.isNode && (e = Object.keys(n.params).map(e => { var t = encodeURIComponent(e); return n.url = n.url.replace(new RegExp(e + "=[^&]*", "ig"), ""), n.url = n.url.replace(new RegExp(t + "=[^&]*", "ig"), ""), t + "=" + encodeURIComponent(n.params[e]) }).join("&"), n.url.indexOf("?") < 0 && (n.url += "?"), /(&|\?)$/g.test(n.url) || (n.url += "&"), n.url += e, delete n.params, g.debug("Params to QueryString: " + n.url)), n } const y = (e, t = null) => { if (e) { t = { ...e, config: e.config || t, status: e.statusCode || e.status, body: e.body || e.data, headers: e.headers || e.header }; if ("string" == typeof t.body) try { t.body = JSON.parse(t.body) } catch { } return delete t.data, t } return e }; const h = (e, t = null) => { if (e && 400 <= e.status) return g.debug("Raise exception when status code is " + e.status), { name: "RequestException", message: "Request failed with status code " + e.status, config: t || e.config, response: e } }, m = { request: new t, response: new t(!1) }; let v = [], b = [], S = !0; function N(e) { return e = f(e), g.debug(`HTTP ${e.method.toUpperCase()}:` + "\n" + JSON.stringify(e)), e } function E(t) { try { t = t && y(t), g.sniffer(`HTTP ${t.config.method.toUpperCase()}:` + "\n" + JSON.stringify(t.config) + "\nSTATUS CODE:\n" + t.status + "\nRESPONSE:\n" + ("object" == typeof t.body ? JSON.stringify(t.body) : t.body)); var e = h(t); return e ? Promise.reject(e) : t } catch (e) { return g.error(e), t } } const n = (e, n) => { let r; n = ((e, t) => { let n = "object" == typeof t ? { headers: {}, ...t } : { url: t, headers: {} }; return n.method || (n.method = e), !0 === (n = f(n)).rewrite && (d.isSurge ? (n.headers["X-Surge-Skip-Scripting"] = !1, delete n.rewrite) : d.isQuanX && (n.hints = !1, delete n.rewrite)), d.isSurgeLike ? (t = n.headers["content-type"] || n.headers["Content-Type"], "GET" !== n.method && t && 0 <= t.indexOf("application/json") && n.body instanceof Array && (n.body = JSON.stringify(n.body), g.debug("Convert Array object to String: " + n.body))) : d.isQuanX ? (n.hasOwnProperty("body") && "string" != typeof n.body && (n.body = JSON.stringify(n.body)), n.method = e) : d.isNode && ("POST" === e || "PUT" === e || "PATCH" === e || "DELETE" === e ? n.data = n.data || n.body : "GET" === e && (n.params = n.params || n.body), delete n.body), n })(e.toUpperCase(), n), r = d.isNode ? p : d.isSurgeLike ? i => new Promise((r, o) => { $httpClient[e.toLowerCase()](i, (e, t, n) => { e ? (e = { name: e.name || e, message: e.message || e, stack: e.stack || e, config: i, response: y(t) }, o(e)) : (t.config = i, t.body = n, r(t)) }) }) : r => new Promise((n, t) => { $task.fetch(r).then(e => { e = y(e, r); var t = h(e, r); if (t) return Promise.reject(t); n(e) }).catch(e => { e = { name: e.message || e.error, message: e.message || e.error, stack: e.error, config: r, response: e.response ? y(e.response) : null }; t(e) }) }); let o; var t = n; try { v = [], b = [], m.request.forEach(e => { "function" == typeof e.runWhen && !1 === e.runWhen(t) || (S = S && e.synchronous, v.unshift(e.fulfilled, e.rejected)) }), m.response.forEach(e => { b.push(e.fulfilled, e.rejected) }) } catch (e) { g.error(`Failed to register interceptors: ${e}.`) } var i = [N, void 0], s = [E, void 0]; if (S) { for (g.debug("Interceptors are executed in synchronous mode"), Array.prototype.unshift.apply(v, i), v = v.concat([N, void 0]); v.length;) { var a = v.shift(), l = v.shift(); try { "function" == typeof a && g.debug("Executing request fulfilled " + a.name), n = a(n) } catch (e) { "function" == typeof l && g.debug("Executing request rejected " + l.name), l(e); break } } try { o = (!d.isNode && n.timeout ? c : r)(n) } catch (e) { return Promise.reject(e) } for (Array.prototype.unshift.apply(b, s); b.length;)o = o.then(b.shift(), b.shift()); return o } { g.debug("Interceptors are executed in asynchronous mode"); let t = [r, void 0]; for (Array.prototype.unshift.apply(t, i), Array.prototype.unshift.apply(t, v), t = (t = t.concat(s)).concat(b), o = Promise.resolve(n); t.length;)try { let e = t.shift(); var u = t.shift(); "function" == typeof (e = !d.isNode && n.timeout && e === r ? c : e) && g.debug("Executing request fulfilled " + e.name), "function" == typeof u && g.debug("Executing request rejected " + u.name), o = o.then(e, u) } catch (e) { g.error("request exception: " + e) } return o } function c(n) { try { var e = new Promise((e, t) => { setTimeout(() => { var e = { message: `timeout of ${n.timeout}ms exceeded.`, config: n }; t(e) }, n.timeout) }); return Promise.race([r(n), e]) } catch (e) { g.error(`Request Timeout exception: ${e}.`) } } }; return { request: n, interceptors: m, convertHeadersToLowerCase: n => Object.keys(n).reduce((e, t) => (e[t.toLowerCase()] = n[t], e), {}), convertHeadersToCamelCase: n => Object.keys(n).reduce((e, t) => { return e[t.split("-").map(e => e[0].toUpperCase() + e.slice(1)).join("-")] = n[t], e }, {}), modifyResponse: y, get: e => n("GET", e), post: e => n("POST", e), put: e => n("PUT", e), patch: e => n("PATCH", e), delete: e => n("DELETE", e), head: e => n("HEAD", e), options: e => n("OPTIONS", e) } } function MagicData(d, g) { let p = { fs: void 0, data: {} }; if (d.isNode) { p.fs = require("fs"); try { p.fs.accessSync("./magic.json", p.fs.constants.R_OK | p.fs.constants.W_OK) } catch (e) { p.fs.writeFileSync("./magic.json", "{}", { encoding: "utf8" }) } p.data = require("./magic.json") } const s = (e, t) => "object" != typeof t && e === t, a = e => "true" === e || "false" !== e && (void 0 === e ? null : e), l = (e, t, n, r) => { if (n) try { e = !0 === (e = "string" == typeof e ? JSON.parse(e) : e).magic_session ? e[n] : null } catch { e = null } if ("string" == typeof e && "null" !== e) try { e = JSON.parse(e) } catch { } return null == (e = !1 === r && e && !0 === e.magic_session ? null : e) && null != t && (e = t), e = a(e) }, f = t => { if ("string" != typeof t) return t instanceof Array || null == t || t != t || "boolean" == typeof t ? {} : t; { let e = {}; try { var n = typeof (e = JSON.parse(t)); ("object" != n || e instanceof Array || "bool" == n || null === e) && (e = {}) } catch { } return e } }, u = (e, t = null, n = "", r = !1, o = null) => { let i = ""; return i = o || d.isNode ? ((e, t = null, n = "", r = !1, o = null) => { o = o || p.data; return val = o && void 0 !== o[e] && null !== o[e] ? o[e] : n ? {} : null, val = l(val, t, n, r) })(e, t, n, r, o) : (d.isSurgeLike ? i = $persistentStore.read(e) : d.isQuanX && (i = $prefs.valueForKey(e)), l(i, t, n, r)), g.debug(`READ DATA [${e}]${n ? `[${n}]` : ""} <${typeof i}>` + "\n" + JSON.stringify(i)), i }, c = (e, t, n = "", r = null) => { if (void 0 === t || t != t) return !1; d.isNode || "boolean" != typeof t && "number" != typeof t || (t = String(t)); let o = ""; var i, s, a, l, u, c; if (r || d.isNode ? o = ([i, s, a = "", l = null] = [e, t, n, r], c = l || p.data, c = f(c), a ? ((u = f(c[i])).magic_session = !0, u[a] = s, c[i] = u) : c[i] = s, null !== l && (l = c), c) : n ? (d.isSurgeLike ? o = $persistentStore.read(e) ? $persistentStore.read(e) : o : d.isQuanX && (o = $prefs.valueForKey(e) ? $prefs.valueForKey(e) : o), (o = f(o)).magic_session = !0, o[n] = t) : o = t, o && "object" == typeof o && (o = JSON.stringify(o, null, 4)), g.debug(`WRITE DATA [${e}]${n ? `[${n}]` : ""} <${typeof t}>` + "\n" + JSON.stringify(t)), !r) { if (d.isSurgeLike) return $persistentStore.write(o, e); if (d.isQuanX) return $prefs.setValueForKey(o, e); if (d.isNode) try { p.fs.writeFileSync("./magic.json", o) } catch (e) { return g.error(e), !1 } } return !0 }; return { read: u, write: c, del: (e, t = "", n = null) => { let r = {}; if (n || d.isNode) r = (o = e, i = t, s = n || p.data, s = f(s), i ? (delete (obj = f(s[o]))[i], s[o] = obj) : delete s[o], s), n ? n = r : p.fs.writeFileSync("./magic.json", JSON.stringify(r, null, 4)); else if (t) { d.isSurgeLike ? r = $persistentStore.read(e) : d.isQuanX && (r = $prefs.valueForKey(e)), delete (r = f(r))[t]; i = JSON.stringify(r, null, 4); c(e, i) } else { if (d.isStorm) return $persistentStore.remove(e); if (d.isSurgeLike) return $persistentStore.write(null, e); if (d.isQuanX) return $prefs.removeValueForKey(e) } var o, i, s; g.debug(`DELETE KEY [${e}]` + (t ? `[${t}]` : "")) }, update: (e, t, n, r = s, o = null) => { var i; return t = a(t), !0 !== r(u(e, null, n, !1, o), t) && (i = c(e, t, n, o), e = u(e, null, n, !1, o), r === s && "object" == typeof e ? i : r(t, e)) }, allSessions: (e, t = null) => { let n = {}; t = u(e, null, null, !0, t); return !0 === (t = f(t)).magic_session && delete (n = { ...t }).magic_session, g.debug(`READ ALL SESSIONS [${e}] <${typeof n}>` + "\n" + JSON.stringify(n, null, 4)), n }, allSessionNames: (e, t = null) => { let n = []; t = u(e, null, null, !0, t), t = f(t); return n = !0 !== t.magic_session ? [] : Object.keys(t).filter(e => "magic_session" !== e), g.debug(`READ ALL SESSIONS [${e}] <${typeof n}>` + "\n" + JSON.stringify(n, null, 4)), n }, defaultValueComparator: s, convertToObject: f } } function MagicNotification(i, o, s, a) { let l = null, u = null, c = []; function d(e = i, t = "", n = "", r = "") { r = (t => { try { let e = {}; var n; return "string" == typeof t ? 0 < t.length && (o.isLoon ? e = { openUrl: t } : o.isQuanX ? e = { "open-url": t } : o.isSurge && (e = { url: t })) : "object" == typeof t && (o.isLoon ? (e.openUrl = t["open-url"] || "", e.mediaUrl = t["media-url"] || "") : o.isQuanX ? e = t["open-url"] || t["media-url"] ? t : {} : o.isSurge && (n = t["open-url"] || t.openUrl, e = n ? { url: n } : {})), e } catch (e) { s.error("通知选项转换失败" + e) } return t })(r), 1 === arguments.length && (e = i, t = "", n = arguments[0]), s.notify("\ntitle:" + e + "\nsubTitle:" + t + "\nbody:" + n + "\noptions:" + ("object" == typeof r ? JSON.stringify(r) : r)), o.isSurge ? $notification.post(e, t, n, r) : o.isLoon ? r ? $notification.post(e, t, n, r) : $notification.post(e, t, n) : o.isQuanX && $notify(e, t, n, r), l && u && g(e, t, n) } function g(e = i, t = "", n = "", r) { if (void 0 === a || void 0 === a.post) throw "Bark notification needs to import MagicHttp module."; e = { url: l, headers: { "content-type": "application/json; charset=utf-8" }, body: { title: e, body: t ? t + "\n" + n : n, device_key: u } }; a.post(e).catch(e => { s.error("Bark notify error: " + e) }) } return { post: d, debug: function (e = i, t = "", n = "", r = "") { "DEBUG" === s.getLevel() && (1 === arguments.length && (e = i, t = "", n = arguments[0]), this.post(e, t, n, r)) }, bark: g, setBark: e => { try { var t = e.replace(/\/+$/g, ""); l = /^https?:\/\/([^/]*)/.exec(t)[0] + "/push", u = /\/([^\/]+)\/?$/.exec(t)[1] } catch (e) { s.error(`Bark url error: ${e}.`) } }, appendNotifyInfo: function (e, t) { 1 == t ? c = e : c.push(e) }, prependNotifyInfo: function (e) { c.splice(0, 0, e) }, msg: function (e, t, n, r) { var o = {}; n && (o["open-url"] = n), r && (o["media-url"] = r), (t = t && 0 != t.length ? t : Array.isArray(c) ? c.join("\n") : c) && 0 < t.length && d(i, "", t, o) } } } function MagicUtils(r, u) { const e = (e, t = "yyyy-MM-dd hh:mm:ss") => { var n, r = { "M+": e.getMonth() + 1, "d+": e.getDate(), "h+": e.getHours(), "m+": e.getMinutes(), "s+": e.getSeconds(), "q+": Math.floor((e.getMonth() + 3) / 3), S: e.getMilliseconds() }; for (n in /(y+)/.test(t) && (t = t.replace(RegExp.$1, (e.getFullYear() + "").substr(4 - RegExp.$1.length))), r) new RegExp("(" + n + ")").test(t) && (t = t.replace(RegExp.$1, 1 === RegExp.$1.length ? r[n] : ("00" + r[n]).substr(("" + r[n]).length))); return t }; return { retry: (i, s = 5, a = 0, l = null) => (...e) => new Promise((n, r) => { function o(...t) { Promise.resolve().then(() => i.apply(this, t)).then(e => { "function" == typeof l ? Promise.resolve().then(() => l(e)).then(() => { n(e) }).catch(e => { 1 <= s ? 0 < a ? setTimeout(() => o.apply(this, t), a) : o.apply(this, t) : r(e), s-- }) : n(e) }).catch(e => { u.error(e), 1 <= s && 0 < a ? setTimeout(() => o.apply(this, t), a) : 1 <= s ? o.apply(this, t) : r(e), s-- }) } o.apply(this, e) }), formatTime: e, now: () => e(new Date, "yyyy-MM-dd hh:mm:ss"), today: () => e(new Date, "yyyy-MM-dd"), sleep: t => new Promise(e => setTimeout(e, t)), assert: (e, t = null) => { var n; r.isNode ? (n = require("assert"), t ? n(e, t) : n(e)) : !0 !== e && u.error("AssertionError: " + (t || "The expression evaluated to a falsy value.")) } } } function MagicQingLong(e, a, o) { let i = "", s = "", l = "", u = "", c = "", t = ""; const d = "magic.json", g = MagicHttp(e, o); async function n() { return l = l || a.read("magic_qlclient"), u = u || a.read("magic_qlsecrt"), s = s || a.read("magic_qlname"), c = c || a.read("magic_qlpwd"), i && l && u ? (o.info("Get token from QingLong Panel"), await g.get({ url: "/open/auth/token", headers: { "content-type": "application/json" }, params: { client_id: l, client_secret: u } }).then(e => { if (!(0 < Object.keys(e.body).length && e.body.data && e.body.data.token)) throw new Error("Get QingLong Panel token failed."); o.info("Successfully logged in to QingLong Panel"), t = e.body.data.token, a.write("magic_qltoken", t) }).catch(e => { o.error("Error logging in to QingLong Panel.\n" + (e.message || e)) })) : i && s && c && await g.post({ url: "/api/user/login", headers: { "content-type": "application/json" }, body: { username: s, password: c } }).then(e => { o.info("Successfully logged in to QingLong Panel"), t = e.body.data.token, a.write("magic_qltoken", t) }).catch(e => { o.error("Error logging in to QingLong Panel.\n" + (e.message || e)) }), t } async function p(e) { let t = []; return await g.post({ url: "/api/envs", headers: { "content-type": "application/json" }, body: e }).then(e => { 200 === e.body.code ? e.body.data.forEach(e => { o.debug(`QINGLONG ADD ENV ${e.name} <${typeof e.value}> (${e.id})` + "\n" + JSON.stringify(e)), t.push(e.id) }) : o.error("Error adding environments variable from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error adding environments variable from QingLong Panel.\n" + (e.message || e)) }), t } async function r(r = null, e = "", t) { let o = []; return await g.get({ url: "/api/envs", headers: { "content-type": "application/json" }, params: { searchValue: e } }).then(e => { if (200 !== e.body.code) throw new Error("Error reading environment variable from QingLong Panel.\n" + JSON.stringify(e)); e = e.body.data; if (r) { var t = []; for (const n of e) n.name === r && o.push(n); o = t } o = e }).catch(e => { throw new Error("Error reading environments variable from QingLong Panel.\n" + (e.message || e)) }), o } async function f(e, t = "") { let n = ""; return await g.get({ url: "/api/scripts/" + e, params: { path: t } }).then(e => { if (200 !== e.body.code) throw new Error("Error reading data from QingLong Panel.\n" + JSON.stringify(e)); n = e.body.data }).catch(e => { throw new Error("Error reading data from QingLong Panel.\n" + (e.message || e)) }), n } async function y(e, t = "", n = "") { let r = !1; return await g.put({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t, content: n } }).then(e => { 200 === e.body.code ? r = !0 : o.error("Error reading data from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error reading data from QingLong Panel.\n" + (e.message || e)) }), r } return g.interceptors.request.use(function (e) { return i = i || a.read("magic_qlurl"), e.url.indexOf(i) < 0 && (e.url = "" + i + e.url), { ...e, timeout: 3e3 } }, void 0), g.interceptors.request.use(function (e) { return (l = l || a.read("magic_qlclient")) && (e.url = e.url.replace("/api/", "/open/")), e }, void 0, { runWhen: e => e.url.indexOf("api/user/login") < 0 && e.url.indexOf("open/auth/token") < 0 }), g.interceptors.request.use(async function (e) { return (t = t || a.read("magic_qltoken", "")) || await n(), e.headers.authorization = "Bearer " + t, e }, void 0, { runWhen: e => e.url.indexOf("api/user/login") < 0 && e.url.indexOf("open/auth/token") < 0 }), g.interceptors.request.use(function (e) { return e.params = { ...e.params, t: Date.now() }, e }, void 0, { runWhen: e => e.url.indexOf("open/auth/token") < 0 }), g.interceptors.request.use(function (e) { return i = i || a.read("magic_qlurl"), t = t || a.read("magic_qltoken"), o.debug("QingLong url: " + i + "\nQingLong token: " + t), e }, void 0), g.interceptors.response.use(void 0, async function (e) { try { var t = e.message || e.error || JSON.stringify(e); return (0 <= t.indexOf("NSURLErrorDomain") && 0 <= t.indexOf("-1012") || e.response && 401 === e.response.status) && e.config && !0 !== e.config.refreshToken ? (o.warning("QingLong Panel token has expired"), o.info("Refreshing the QingLong Panel token"), await n(), e.config.refreshToken = !0, o.info("Call the previous method again"), await g.request(e.config.method, e.config)) : Promise.reject(e) } catch (e) { return Promise.reject(e) } }), { url: i || a.read("magic_qlurl"), init: (e, t, n, r, o) => { i = e, l = t, u = n, s = r, c = o }, getToken: n, setEnv: async function (t, n, r = null) { if (i = i || a.read("magic_qlurl"), null === r) { var e = await p([{ name: t, value: n }]); if (e && 1 === e.length) return e[0] } else await g.put({ url: "/api/envs", headers: { "content-type": "application/json" }, body: { name: t, value: n, id: r } }).then(e => { if (200 === e.body.code) return o.debug(`QINGLONG UPDATE ENV ${t} <${typeof n}> (${r})` + "\n" + JSON.stringify(n)), !0; o.error("Error adding environment variable from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => (o.error("Error adding environment variable from QingLong Panel.\n" + (e.message || e)), !1)) }, setEnvs: p, getEnv: async function (e) { let t = null; for (const n of await r()) if (n.id === e) { t = n; break } return t }, getEnvs: r, delEnvs: async function (t) { return g.delete({ url: "/api/envs", headers: { accept: "application/json", "accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", connection: "keep-alive", "content-type": "application/json;charset=UTF-8", "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30" }, body: t }).then(e => 200 === e.body.code ? (o.debug("QINGLONG DELETE ENV IDS: " + t), !0) : (o.error("Error deleting environments variable from QingLong Panel.\n" + JSON.stringify(e)), !1)).catch(e => { o.error("Error deleting environments variable from QingLong Panel.\n" + (e.message || e)) }) }, disableEnvs: async function (t) { let n = !1; return await g.put({ url: "/api/envs/disable", headers: { accept: "application/json", "accept-Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", connection: "keep-alive", "content-type": "application/json;charset=UTF-8", "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30" }, body: t }).then(e => { 200 === e.body.code ? (o.debug("QINGLONG DISABLED ENV IDS: " + t), n = !0) : o.error("Error disabling environments variable from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error disabling environments variable from QingLong Panel.\n" + (e.message || e)) }), n }, enableEnvs: async function (t) { let n = !1; return await g.put({ url: "/api/envs/enable", headers: { accept: "application/json", "accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", connection: "keep-alive", "content-type": "application/json;charset=UTF-8", "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30" }, body: t }).then(e => { 200 === e.body.code ? (o.debug("QINGLONG ENABLED ENV IDS: " + t), n = !0) : o.error("Error enabling environments variable from Qilong panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error enabling environments variable from Qilong panel.\n" + (e.message || e)) }), n }, addScript: async function (e, t = "", n = "") { let r = !1; return await g.post({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t, content: n } }).then(e => { 200 === e.body.code ? r = !0 : o.error("Error reading data from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error reading data from QingLong Panel.\n" + (e.message || e)) }), r }, getScript: f, editScript: y, delScript: async function (e, t = "") { let n = !1; return await g.delete({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t } }).then(e => { 200 === e.body.code ? n = !0 : o.error("Error reading data from QingLong Panel.\n" + JSON.stringify(e)) }).catch(e => { o.error("Error reading data from QingLong Panel.\n" + (e.message || e)) }), n }, write: async function (e, t, n = "") { var r = await f(d, ""), o = a.convertToObject(r), e = a.write(e, t, n, o), r = JSON.stringify(o, null, 4); return await y(d, "", r) && e }, read: async function (e, t, n = "", r = !1) { var o = await f(d, ""), o = a.convertToObject(o); return a.read(e, t, n, r, o) }, del: async function (e, t = "") { var n = await f(d, ""), r = a.convertToObject(n), e = a.del(e, t, r), n = JSON.stringify(r, null, 4), t = await y(d, "", n); return e && t }, update: async function (e, t, n, r = a.defaultValueComparator) { var o = await f(d, ""), i = a.convertToObject(o), e = a.update(e, t, n, r, i); let s = !1; return !0 === e && (o = JSON.stringify(i, null, 4), s = await y(d, "", o)), e && s }, batchWrite: async function (...e) { var t, n = await f(d, ""), r = a.convertToObject(n); for (t of e) a.write(t[0], t[1], void 0 !== t[2] ? t[2] : "", r); return n = JSON.stringify(r, null, 4), y(d, "", n) }, batchRead: async function (...e) { var t, n = await f(d, ""), r = a.convertToObject(n), o = []; for (t of e) { var i = a.read(t[0], t[1], void 0 !== t[2] ? t[2] : "", "boolean" == typeof t[3] && t[3], r); o.push(i) } return o }, batchUpdate: async function (...e) { var t, n = await f(d, ""), r = a.convertToObject(n); for (t of e) a.update(t[0], t[1], void 0 !== t[2] ? t[2] : "", void 0 !== t[3] ? t.comparator : a.defaultValueComparator, r); return n = JSON.stringify(r, null, 4), y(d, "", n) }, batchDel: async function (...e) { var t, n = await f(d, ""), r = a.convertToObject(n); for (t of e) a.del(t[0], void 0 !== t[1] ? t[1] : "", r); return n = JSON.stringify(r, null, 4), y(d, "", n) }, allSessions: async function (e) { var t = await f(d, ""), t = a.convertToObject(t); return a.allSessions(e, t) }, allSessionNames: async function (e) { var t = await f(d, ""), t = a.convertToObject(t); return a.allSessionNames(e, t) } } }
  296. //---SyncByPyScript---MagicJS3-end