wubianFastGrab.js 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. /*
  2. 无边星链快速下单
  3. */
  4. const scriptName = `无边星链快速下单`;
  5. const magicJS = MagicJS(scriptName, "INFO");
  6. const WuBianConstKey = {
  7. // 基础数据
  8. UserInfo: 'WubianUserInfo',
  9. Token: 'WubianProToken',
  10. BrowserProxyUrl: 'WubianBrowserProxyUrl',
  11. TenantId: 'WubianTenantId',
  12. MarketAlbumListData: 'WubianMarketAlbumListData',
  13. AllMarketGroupListData: 'WubianAllMarketGroupListData',
  14. ActivityListData: 'WubianActivityListData',
  15. ActivityGoodsList: 'WubianActivityGoodsList',
  16. ActivityTaskCaptureEnabled: 'WubianActivityTaskCaptureEnabled',
  17. ActivityTagName: 'WubianActivityActivityTagName',
  18. ActivityIndexName: 'WubianActivityIndexName',
  19. ActivityId: 'WubianActivityId',
  20. FirstOrderCaptureEnabled: 'WubianFirstOrderCaptureEnabled',
  21. FirstArtListData: 'WubianFirstArtListData',
  22. FirstGoodsId: 'WubianFirstGoodsId',
  23. FirstGoodsName: 'WubianFirstGoodsName',
  24. CreateFirstOrderData: 'WubianCreateFirstOrderData',
  25. FirstGrabConcurrentMode: 'WubianFirstGrabConcurrentMode',
  26. FirstGrabRunsPerSecond: 'WubianFirstGrabRunsPerSecond',
  27. ConsignmentCaptureEnabled: 'WubianConsignmentCaptureEnabled',
  28. MyCollectListData: 'WubianMyCollectListData',
  29. ConsignmentArtName: 'WubianConsignmentArtName',
  30. ConsignmentArtId: 'WubianConsignmentArtId',
  31. ConsignmentArtPrice: 'WubianConsignmentArtPrice',
  32. ConsignmentArtAmount: 'WubianConsignmentArtAmount',
  33. FastBuyCaptureEnabled: 'WubianFastBuyCaptureEnabled',
  34. FastBuyQuickModeEnabled: 'WubianFastBuyQuickModeEnabled',
  35. FastBuyBatchModeEnabled: 'WubianFastBuyBatchModeEnabled',
  36. FastBuyArtName: 'WubianFastBuyArtName',
  37. FastBuyArtId: 'WubianFastBuyArtId',
  38. FastBuyArtPrice: 'WubianFastBuyArtPrice',
  39. FastBuyArtAmount: 'WubianFastBuyArtAmount',
  40. FastBuyArtInfo: 'WubianFastBuyArtInfo',
  41. };
  42. const gUserAgent = `Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Html5Plus/1.0 (Immersed/20) uni-app`;
  43. const gHost = `api.wubian.pro`;
  44. let gToken = magicJS.data.read(WuBianConstKey.Token, '');
  45. const gCommonHeaders = {
  46. 'Accept': `*/*`,
  47. 'Accept-Encoding': `gzip, deflate, br`,
  48. 'Connection': `keep-alive`,
  49. 'Content-Type': `application/json`,
  50. 'Cookie': `token=${gToken}`,
  51. 'Host': gHost,
  52. 'User-Agent': gUserAgent,
  53. 'CLIENT-TYPE': `APP`,
  54. 'token': gToken,
  55. 'Accept-Language': `zh-CN,zh-Hans;q=0.9`
  56. };
  57. let gRetBody;
  58. async function Main() {
  59. if (magicJS.isStrictRequest) {
  60. magicJS.checkRecordRequestBody();
  61. }
  62. if (magicJS.isRequest) {
  63. checkHandleRequest();
  64. } else {
  65. updateHeaders();
  66. await tryToBuy();
  67. }
  68. magicJS.notification.msg('');
  69. if (gRetBody) {
  70. magicJS.done({
  71. body: JSON.stringify(gRetBody)
  72. });
  73. } else {
  74. magicJS.done();
  75. }
  76. }
  77. function checkHandleRequest() {
  78. }
  79. function updateHeaders() {
  80. gToken = magicJS.data.read(WuBianConstKey.Token, '');
  81. gCommonHeaders['token'] = gToken;
  82. gCommonHeaders['cookie'] = `token=${gToken}`;
  83. }
  84. function getUserHashId() {
  85. let userInfo = magicJS.data.read(WuBianConstKey.UserInfo, null);
  86. if (userInfo) {
  87. return userInfo.hashId;
  88. }
  89. return '80n19034n1';
  90. }
  91. function getTenantId() {
  92. let tenantId = magicJS.data.read(WuBianConstKey.TenantId, '238bw8l9n5');
  93. return tenantId;
  94. }
  95. function getWillBuyArtName() {
  96. let artName = magicJS.data.read(WuBianConstKey.FastBuyArtName, '');
  97. return artName;
  98. }
  99. function getWillBuyArtId() {
  100. let artId = magicJS.data.read(WuBianConstKey.FastBuyArtId, '');
  101. return artId;
  102. }
  103. function getWillBuyArtPrice() {
  104. let amount = magicJS.data.read(WuBianConstKey.FastBuyArtPrice, 0);
  105. return amount;
  106. }
  107. function getWillBuyArtAmount() {
  108. let amount = magicJS.data.read(WuBianConstKey.FastBuyArtAmount, 1);
  109. return amount;
  110. }
  111. function isObjectEmpty(obj) {
  112. return Object.keys(obj).length === 0;
  113. }
  114. async function tryToBuy() {
  115. let willAmount = getWillBuyArtAmount();
  116. if (willAmount <= 0) {
  117. magicJS.notification.appendNotifyInfo(`没有设置产品需要购买的数量`);
  118. return;
  119. }
  120. let artInfo = await getWillBuyArtInfo();
  121. if (!artInfo) {
  122. magicJS.notification.appendNotifyInfo(`没有找到对应的产品信息`);
  123. return;
  124. }
  125. let willPrice = getWillBuyArtPrice();
  126. let isQuick = magicJS.data.read(WuBianConstKey.FastBuyQuickModeEnabled, false);
  127. if (isQuick) {
  128. let orderSn = null;
  129. let orderStatus = -1;
  130. let retOrder = null;
  131. let isBatch = magicJS.data.read(WuBianConstKey.FastBuyBatchModeEnabled, false);
  132. if (isBatch) {
  133. magicJS.logger.info(`开始尝试批量下单产品[${artInfo.title}],价格:${willPrice},数量:${willAmount}`);
  134. retOrder = await batchLockMarketOrder(artInfo.artId, willPrice, willAmount);
  135. } else {
  136. magicJS.logger.info(`开始尝试快捷下单产品[${artInfo.title}],无法设置价格,后台匹配价格,数量:1(待支付订单只可1笔)`);
  137. retOrder = await fastCreateMarketOrder(artInfo.artId);
  138. }
  139. if (retOrder && retOrder.code == 200) {
  140. orderSn = retOrder.data.orderSn;
  141. orderStatus = retOrder.data.status;
  142. if (retOrder.data.status == 1) {
  143. magicJS.logger.info(`创建订单成功,订单号:${retOrder.data.orderSn}`);
  144. } else if (retOrder.data.status == 1) {
  145. magicJS.logger.info(`存在待支付订单,请去支付,订单号:${retOrder.data.orderSn}`);
  146. }
  147. }
  148. if (orderStatus == 1) {
  149. let retPayMethod = await getPayMethodList(orderSn);
  150. if (retPayMethod && retPayMethod.code == 200) {
  151. // magicJS.logger.info(`${JSON.stringify(retPayMethod.data.payMethodList)}`);
  152. let retPayUrl = await getPayUrl(orderSn, 'YOP_WALLET_PAY');
  153. if (retPayUrl && retPayUrl.code == 200) {
  154. magicJS.logger.info(`支付链接:${retPayUrl.data}`);
  155. let jumpUrl = await openUrlByRemoteBrowser(retPayUrl.data);
  156. if (jumpUrl) {
  157. magicJS.notification.post(scriptName, "", `快捷订单创建成功,请自行浏览器打开链接完成支付`, jumpUrl);
  158. } else {
  159. magicJS.notification.appendNotifyInfo(`快捷订单创建成功,请自行到APP中完成支付`);
  160. }
  161. }
  162. }
  163. }
  164. } else {
  165. let goodsList = await getWillBuyGoodsList(artInfo);
  166. magicJS.logger.info(`开始尝试一般下单产品[${artInfo.title}],价格:${willPrice},数量:1(待支付订单只可1笔)`);
  167. for (let i = 0; i < goodsList.length; i++) {
  168. let goodsInfo = goodsList[i];
  169. let orderSn = null;
  170. let orderStatus = -1;
  171. let retGoodsDetail = await getConfirmGoodsInfo(artInfo.artId, goodsInfo.id);
  172. let retOrder = await createMarketOrder(artInfo.artId, goodsInfo.id, goodsInfo.price);
  173. if (retOrder && retOrder.code == 200) {
  174. orderSn = retOrder.data.orderSn;
  175. orderStatus = retOrder.data.status;
  176. if (retOrder.data.status == 1) {
  177. magicJS.logger.info(`创建订单成功,订单号:${retOrder.data.orderSn}`);
  178. } else if (retOrder.data.status == 1) {
  179. magicJS.logger.info(`存在待支付订单,请去支付,订单号:${retOrder.data.orderSn}`);
  180. }
  181. }
  182. if (orderStatus == 1) {
  183. let retPayMethod = await getPayMethodList(orderSn);
  184. if (retPayMethod && retPayMethod.code == 200) {
  185. // magicJS.logger.info(`${JSON.stringify(retPayMethod.data.payMethodList)}`);
  186. let retPayUrl = await getPayUrl(orderSn, 'YOP_WALLET_PAY');
  187. if (retPayUrl && retPayUrl.code == 200) {
  188. let jumpUrl = await openUrlByRemoteBrowser(retPayUrl.data);
  189. if (jumpUrl) {
  190. magicJS.notification.post(scriptName, "", `一般订单创建成功,请自行浏览器打开链接完成支付`, jumpUrl);
  191. } else {
  192. magicJS.notification.appendNotifyInfo(`一般订单创建成功,请自行到APP中完成支付`);
  193. }
  194. break;
  195. }
  196. }
  197. } else {
  198. break;
  199. }
  200. }
  201. }
  202. }
  203. async function getWillBuyArtInfo() {
  204. let artId = getWillBuyArtId();
  205. let artName = getWillBuyArtName();
  206. magicJS.logger.info(`artName=${artName}`);
  207. magicJS.logger.info(`artId=${artId}`);
  208. let artDataDict = await getMarketGroupListData();
  209. let artInfo = null;
  210. if (artId && artId.length > 0) {
  211. artInfo = artDataDict[artId];
  212. } else if (artName && artName.length > 0) {
  213. for (let artId in artDataDict) {
  214. if (artDataDict[artId].title.indexOf(artName) > -1) {
  215. artInfo = artDataDict[artId];
  216. break;
  217. }
  218. }
  219. }
  220. if (!artInfo) {
  221. artInfo = magicJS.data.read(WuBianConstKey.FastBuyArtInfo, null);
  222. }
  223. return artInfo;
  224. }
  225. async function getMarketGroupListData(noCache) {
  226. let dataDict = magicJS.data.read(WuBianConstKey.AllMarketGroupListData, {});
  227. if (isObjectEmpty(dataDict) || noCache) {
  228. // let groupHashs = ['ex74', 'nz', '6b', 'la'];// ex74=推荐 nz=神话 6b=诗词 la=材料
  229. let marketAlbumList = magicJS.data.read(WuBianConstKey.MarketAlbumListData, []);
  230. let tenantId = getTenantId();
  231. for (let albumInfo of marketAlbumList) {
  232. let hash = albumInfo.hashId;
  233. for (let i = 1; i <= 100; i++) {
  234. let retData = await queryMarketGroupList(tenantId, hash, i);
  235. if (retData && retData.code == 200) {
  236. let list = retData.data.list;
  237. for (let item of list) {
  238. dataDict[item.artId] = item;
  239. }
  240. if (retData.data.next === 0) {
  241. break;
  242. }
  243. }
  244. }
  245. }
  246. }
  247. return dataDict;
  248. }
  249. async function queryMarketGroupList(tenantId, groupHash, page) {
  250. const url = `https://api.wubian.pro/vmf/app/market/groupList`;
  251. const reqData = {
  252. tenantId: tenantId,
  253. groupHash: groupHash,// ex74=推荐 nz=神话 6b=诗词 la=材料
  254. orderField: 3,
  255. orderType: 1,
  256. type: 1,
  257. newArea: 0,
  258. searchCondition: '',
  259. page: page,
  260. };
  261. let options = {
  262. url: url,
  263. headers: gCommonHeaders,
  264. body: JSON.stringify(reqData),
  265. };
  266. let result = await magicJS.http.post(options).then(response => {
  267. try {
  268. let rspData = response.body;
  269. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  270. return rspData;
  271. } catch (e) {
  272. magicJS.logger.error(e);
  273. }
  274. }).catch(err => {
  275. const msg = `获取市场在售产品列表异常\n${JSON.stringify(err)}`;
  276. magicJS.logger.error(msg);
  277. });
  278. return result;
  279. }
  280. async function getWillBuyGoodsList(artInfo) {
  281. let artId = artInfo.artId;
  282. let artName = artInfo.title;
  283. let price = getWillBuyArtPrice();
  284. let amount = getWillBuyArtAmount();
  285. magicJS.logger.info(`artName=${artName}`);
  286. magicJS.logger.info(`artId=${artId}`);
  287. magicJS.logger.info(`price=${price}`);
  288. magicJS.logger.info(`amount=${amount}`);
  289. let artList = await querySomeMarketVerList(artId, price, amount);
  290. magicJS.logger.info(`找到匹配产品数量:${artList.length}`);
  291. return artList;
  292. }
  293. async function querySomeMarketVerList(artId, price, count) {
  294. let retList = [];
  295. for (let i = 1; i < 999; i++) {
  296. let isBreak = false;
  297. // 一页20条
  298. let ret = await queryMarketVerList(artId, i);
  299. if (ret && ret.code == 200) {
  300. magicJS.logger.info(`获取市场在售产品列表成功,当前在售数:${ret.data.total},当前页数:${i}`);
  301. const iData = ret.data;
  302. const itemList = iData.list;
  303. for (let item of itemList) {
  304. if (item.isLock == 0) {
  305. if (item.price <= price) {
  306. retList.push(item);
  307. } else {
  308. isBreak = true;
  309. break;
  310. }
  311. }
  312. }
  313. if (isBreak || iData.next == 0 || retList.length > count) {
  314. break;
  315. }
  316. }
  317. }
  318. return retList;
  319. }
  320. async function queryMarketVerList(artId, page) {
  321. const url = `https://api.wubian.pro/vmf/app/market/verList`;
  322. const reqData = {
  323. orderField: 1,
  324. orderType: 1,
  325. isConsignment: 1,
  326. artId: artId,
  327. page: page,
  328. };
  329. let options = {
  330. url: url,
  331. headers: gCommonHeaders,
  332. body: JSON.stringify(reqData),
  333. };
  334. let result = await magicJS.http.post(options).then(response => {
  335. try {
  336. let rspData = response.body;
  337. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  338. return rspData;
  339. } catch (e) {
  340. magicJS.logger.error(e);
  341. }
  342. }).catch(err => {
  343. const msg = `获取的产品在售列表数据异常\n${JSON.stringify(err)}`;
  344. magicJS.logger.error(msg);
  345. });
  346. return result;
  347. }
  348. async function getConfirmGoodsInfo(artId, goodsId) {
  349. const url = `https://api.wubian.pro/vmf/app/market/confirmGoodsInfo`;
  350. const reqData = {
  351. artId: artId,
  352. goodsId: goodsId,
  353. };
  354. let options = {
  355. url: url,
  356. headers: gCommonHeaders,
  357. body: JSON.stringify(reqData),
  358. };
  359. let result = await magicJS.http.post(options).then(response => {
  360. try {
  361. let rspData = response.body;
  362. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  363. return rspData;
  364. } catch (e) {
  365. magicJS.logger.error(e);
  366. }
  367. }).catch(err => {
  368. const msg = `获取下单产品信息异常\n${JSON.stringify(err)}`;
  369. magicJS.logger.error(msg);
  370. });
  371. return result;
  372. }
  373. async function createMarketOrder(artHashId, goodsHashId, price) {
  374. const url = `https://api.wubian.pro/vmf/app/order/createMarketOrder`;
  375. const reqData = {
  376. artHashId: artHashId,
  377. goodsHashId: goodsHashId,
  378. price: price,
  379. };
  380. let options = {
  381. url: url,
  382. headers: gCommonHeaders,
  383. body: JSON.stringify(reqData),
  384. };
  385. let result = await magicJS.http.post(options).then(response => {
  386. try {
  387. let rspData = response.body;
  388. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  389. return rspData;
  390. } catch (e) {
  391. magicJS.logger.error(e);
  392. }
  393. }).catch(err => {
  394. const msg = `请求普通下单异常\n${JSON.stringify(err)}`;
  395. magicJS.logger.error(msg);
  396. });
  397. return result;
  398. }
  399. async function fastCreateMarketOrder(artHashId) {
  400. const url = `https://api.wubian.pro/vmf/app/order/fastCreateMarketOrder`;
  401. const reqData = {
  402. artHashId: artHashId,
  403. };
  404. let options = {
  405. url: url,
  406. headers: gCommonHeaders,
  407. body: JSON.stringify(reqData),
  408. };
  409. let result = await magicJS.http.post(options).then(response => {
  410. try {
  411. let rspData = response.body;
  412. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  413. return rspData;
  414. } catch (e) {
  415. magicJS.logger.error(e);
  416. }
  417. }).catch(err => {
  418. const msg = `请求快捷下单异常\n${JSON.stringify(err)}`;
  419. magicJS.logger.error(msg);
  420. });
  421. return result;
  422. }
  423. async function batchLockMarketOrder(artHashId, maxPrice, num = 10, walletId = 3) {
  424. const url = `https://api.wubian.pro/vmf/app/order/batchLockMarketOrder`;
  425. const reqData = {
  426. artHashId: artHashId,
  427. maxPrice: String(maxPrice),
  428. num: num,
  429. walletId: walletId,
  430. };
  431. let options = {
  432. url: url,
  433. headers: gCommonHeaders,
  434. body: JSON.stringify(reqData),
  435. };
  436. let result = await magicJS.http.post(options).then(response => {
  437. try {
  438. let rspData = response.body;
  439. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  440. return rspData;
  441. } catch (e) {
  442. magicJS.logger.error(e);
  443. }
  444. }).catch(err => {
  445. const msg = `请求批量下单异常\n${JSON.stringify(err)}`;
  446. magicJS.logger.error(msg);
  447. });
  448. return result;
  449. }
  450. async function getPayMethodList(orderSn) {
  451. const url = `https://api.wubian.pro/vmf/app/pay/cashier`;
  452. const reqData = {
  453. orderSn: orderSn,
  454. };
  455. let options = {
  456. url: url,
  457. headers: gCommonHeaders,
  458. body: JSON.stringify(reqData),
  459. };
  460. let result = await magicJS.http.post(options).then(response => {
  461. try {
  462. let rspData = response.body;
  463. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  464. return rspData;
  465. } catch (e) {
  466. magicJS.logger.error(e);
  467. }
  468. }).catch(err => {
  469. const msg = `请求支付方式列表异常\n${JSON.stringify(err)}`;
  470. magicJS.logger.error(msg);
  471. });
  472. return result;
  473. }
  474. async function getPayUrl(orderSn, method) {
  475. const url = `https://api.wubian.pro/vmf/app/pay/getUrl`;
  476. const reqData = {
  477. orderSn: orderSn,
  478. method: method,
  479. };
  480. let options = {
  481. url: url,
  482. headers: gCommonHeaders,
  483. body: JSON.stringify(reqData),
  484. };
  485. let result = await magicJS.http.post(options).then(response => {
  486. try {
  487. let rspData = response.body;
  488. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  489. return rspData;
  490. } catch (e) {
  491. magicJS.logger.error(e);
  492. }
  493. }).catch(err => {
  494. const msg = `获取支付链接\n${JSON.stringify(err)}`;
  495. magicJS.logger.error(msg);
  496. });
  497. return result;
  498. }
  499. async function getUrlLocation(url) {
  500. let options = {
  501. url: url,
  502. headers: gCommonHeaders,
  503. body: ``,
  504. };
  505. let result = await magicJS.http.get(options).then(response => {
  506. try {
  507. let rspData = response.body;
  508. magicJS.logger.info(`rspData=${JSON.stringify(rspData)}`);
  509. let rwUrl = response.headers['Location'];
  510. return rwUrl;
  511. } catch (e) {
  512. magicJS.logger.error(e);
  513. }
  514. }).catch(err => {
  515. if (err.response) {
  516. if (err.response.statusCode == 302) {
  517. let rwUrl = err.response.headers['Location'];
  518. return rwUrl;
  519. } else {
  520. const msg = `请求支付链接重定向异常\n${JSON.stringify(err)}`;
  521. magicJS.logger.error(msg);
  522. }
  523. } else {
  524. const msg = `请求支付链接重定向异常\n${JSON.stringify(err)}`;
  525. magicJS.logger.error(msg);
  526. }
  527. });
  528. return result;
  529. }
  530. async function openUrlByRemoteBrowser(url) {
  531. let headers = gCommonHeaders;
  532. let data = {
  533. url: url,
  534. headers: headers,
  535. };
  536. let proxyUrl = magicJS.data.read(WuBianConstKey.BrowserProxyUrl, 'http://127.0.0.1:5000/proxy');
  537. let options = {
  538. url: proxyUrl,
  539. headers: headers,
  540. body: JSON.stringify(data),
  541. };
  542. let result = await magicJS.http.post(options).then(response => {
  543. try {
  544. // magicJS.logger.info(JSON.stringify(response));
  545. // const body = response.body;
  546. // magicJS.logger.info(body);
  547. // return body;
  548. } catch (e) {
  549. magicJS.logger.error(e);
  550. }
  551. return response;
  552. }).catch(err => {
  553. // const msg = `请求代理浏览器异常\n${JSON.stringify(err)}`;
  554. // magicJS.logger.error(msg);
  555. return err.response;
  556. });
  557. magicJS.logger.info(JSON.stringify(result));
  558. return result;
  559. }
  560. Main().catch((e) => magicJS.logger.log(`-\n ${e}`)).finally(() => magicJS.done());
  561. //---SyncByPyScript---MagicJS3-start
  562. function MagicJS(e = "MagicJS", t = "INFO") { const n = () => { const e = "undefined" != typeof $loon, t = "undefined" != typeof $task, r = "undefined" != typeof module, n = "undefined" != typeof $httpClient && !e, o = "undefined" != typeof $storm, i = "undefined" != typeof $environment && void 0 !== $environment["stash-build"]; var s = n || e || o || i; const a = "undefined" != typeof importModule; return { isLoon: e, isQuanX: t, isNode: r, isSurge: n, isStorm: o, isStash: i, isSurgeLike: s, isScriptable: a, get name() { return e ? "Loon" : t ? "QuantumultX" : r ? "NodeJS" : n ? "Surge" : a ? "Scriptable" : "unknown" }, get build() { return n ? $environment["surge-build"] : i ? $environment["stash-build"] : o ? $storm.buildVersion : void 0 }, get language() { if (n || i) return $environment.language }, get version() { return n ? $environment["surge-version"] : i ? $environment["stash-version"] : o ? $storm.appVersion : r ? process.version : void 0 }, get system() { return n ? $environment.system : r ? process.platform : void 0 }, get systemVersion() { if (o) return $storm.systemVersion }, get deviceName() { if (o) return $storm.deviceName } } }, o = (r, e = "INFO") => { let n = 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[n] < o[t.toUpperCase()] || console.log(`██[${r}][${t}]` + i[t.toUpperCase()] + e + "\n") }; return { getLevel: () => n, setLevel: e => { n = e }, sniffer: (...e) => { e = e.join(t); s(e, "SNIFFER") }, log: (...e) => { e = e.join(t); console.log(`██[${r}]` + 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 r; this._startTime = Date.now(), this.version = "3.0.0", this.scriptName = e, this.env = n(), 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"), r = this.data.read("magic_bark_url"), t && this.logger.setLevel(t.toUpperCase()), r) && this.notification.setBark(r), 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 r = this.env, n = $request.path; let e = this.scriptName + "#" + n.replace("/", "_"); e = e.replace("?", "#"), r.isQuanX && $prefs.setValueForKey(t, e), (r.isLoon || r.isSurge) && $persistentStore.write(t, e), r.isNode && require("fs").writeFileSync(e + ".json", t, { flag: "w" }, e => console.log(e)) } } } getRequestBody() { var e = this.env, t = $request.path; let r = this.scriptName + "#" + t.replace("/", "_"); if (r = r.replace("?", "#"), e.isSurge || e.isLoon) return $persistentStore.read(r); if (e.isQuanX) return $prefs.valueForKey(r); if (e.isNode) { t = r + ".json", e = require("fs"); if (!e.existsSync(t)) return JSON.parse(e.readFileSync(t)) } } getResponseBody() { if ($response) return $response.body } parseCookies(e, t = !1) { let r = {}; return t ? e && e.split(";").forEach(function (e) { e = e.split("="); r[e.shift().trim()] = decodeURIComponent(e.join("=")) }) : e && e.split(";").forEach(function (e) { e = e.split("="); r[e.shift().trim()] = e.join("=") }), r } serializeCookies(e, t = !1) { var r = []; if (t) for (var n in e) { var o = e[n], n = n + "=" + encodeURIComponent(o); r.push(n) } else for (var i in e) { var s = e[i], i = i + "=" + s; r.push(i) } return r.join("; ") } parseSetCookies(e) { var t = e.split(/,\s*/).map(e => { var e = e.trim().split(/;\s*(?=[^=]+=[^;]*)/), t = e[0].split("=").map(e => e.trim()); const r = { name: t[0], value: t[1] }; return e.slice(1).forEach(e => { var [e, t] = e.split("=").map(e => e.trim()); r[e] = t || !0 }), r }), r = []; let n = 0; for (; n < t.length;) { var o, i = t[n]; r.push(i), i.Expires ? ((o = t[n + 1]) && (i.Expires = i.Expires + "," + o.name), n += 2) : n += 1 } return r } objToQueryStr(t, r) { let n = ""; for (const o in t) { let e = t[o]; null != e && "" !== e && ("object" == typeof e ? e = JSON.stringify(e) : r && (e = encodeURIComponent(e)), n += `${o}=${e}&`) } return n = n.substring(0, n.length - 1) } parseQueryStr(e) { var t = {}, r = (e = -1 < e.indexOf("?") ? e.split("?")[1] : e).split("&"); for (let e = 0; e < r.length; e++) { var n = r[e].split("="); t[n[0]] = n[1] } return t } deepClone(e, t) { for (var r in t = t || {}, e) "object" == typeof e[r] ? (t[r] = e[r].constructor === Array ? [] : {}, this.deepClone(e[r], t[r])) : t[r] = e[r]; return t } formatDate(e, t) { var r, n = { "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 (r in /(y+)/.test(t) && (t = t.replace(RegExp.$1, (e.getFullYear() + "").substr(4 - RegExp.$1.length))), n) new RegExp("(" + r + ")").test(t) && (t = t.replace(RegExp.$1, 1 == RegExp.$1.length ? n[r] : ("00" + n[r]).substr(("" + n[r]).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, r, n, o, i, s) { return a = a.replace(new RegExp(t + "(\\d{" + r.length + "})" + o), function (e, t) { return l[n] = 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 } getBaseDoneHeaders(e = {}) { return Object.assign({ "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Methods": "POST,GET,OPTIONS,PUT,DELETE", "Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept" }, e) } getHtmlDoneHeaders() { return this.getBaseDoneHeaders({ "Content-Type": "text/html;charset=UTF-8" }) } getJsonDoneHeaders() { return this.getBaseDoneHeaders({ "Content-Type": "text/json; charset=utf-8", Connection: "keep-alive" }) } doWxpusherSend(e) { var t = this.getJsonDoneHeaders(), t = (t.Host = "wxpusher.zjiecode.com", t["Content-Type"] = "application/json;charset=UTF-8", { url: "https://wxpusher.zjiecode.com/api/send/message", headers: t, body: JSON.stringify(e) }); return this.http.post(t) } fastWxpusherSend(e, t = "", r = "") { return this.doWxpusherSend({ appToken: "AT_7wDWqSoT8xpJCQqJtHpshKhw7kXc0XCW", content: e, summary: t, contentType: 1, topicIds: [], uids: ["UID_6P4B00X6Zv8U2oKC0I2R09emxtqq"], url: r, verifyPay: !1, verifyPayType: 0 }) } isEmpty(e) { return void 0 === e || null == e || "" == e || "null" == e || "undefined" == e || 0 === e.length } base64Encode(e) { var t, r, n, o = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; let i, s, a; for (a = e.length, s = 0, i = ""; s < a;) { if (t = 255 & e.charCodeAt(s++), s == a) { i = (i += o.charAt(t >> 2)) + o.charAt((3 & t) << 4) + "=="; break } if (r = e.charCodeAt(s++), s == a) { i = (i = (i += o.charAt(t >> 2)) + o.charAt((3 & t) << 4 | (240 & r) >> 4)) + o.charAt((15 & r) << 2) + "="; break } n = e.charCodeAt(s++), i = (i = (i = (i += o.charAt(t >> 2)) + o.charAt((3 & t) << 4 | (240 & r) >> 4)) + o.charAt((15 & r) << 2 | (192 & n) >> 6)) + o.charAt(63 & n) } return i } base64Decode(e) { var t = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; if (/([^\s]+[^0-9a-zA-Z\+\/\=]|[^0-9a-zA-Z\+\/\=]\s+)/.test(e)) throw new Error("Invalid base64 input"); var r, n, o, i, s, a, l = e.replace(/\s/g, ""); let u = "", c = 0; for (; c < l.length;)o = t.indexOf(l.charAt(c++)), r = (15 & (i = t.indexOf(l.charAt(c++)))) << 4 | (s = t.indexOf(l.charAt(c++))) >> 2, n = (3 & s) << 6 | (a = t.indexOf(l.charAt(c++))), u += String.fromCharCode(o << 2 | i >> 4), 64 !== s && (u += String.fromCharCode(r)), 64 !== a && (u += String.fromCharCode(n)); return u = this.utf8Decode(u) } utf8Decode(t) { let e = [], r = 0, n = 0, o = 0; for (t = t.replace(/\r\n/g, "\n"); r < t.length;) { n = 255 & t.charCodeAt(r), o = 0, o = n <= 191 ? (n &= 127, 1) : n <= 223 ? (n &= 31, 2) : n <= 239 ? (n &= 15, 3) : (n &= 7, 4); for (let e = 1; e < o; ++e)n = n << 6 | 63 & t.charCodeAt(e + r); 4 === o ? (n -= 65536, e.push(String.fromCharCode(55296 | n >> 10 & 1023)), e.push(String.fromCharCode(56320 | 1023 & n))) : e.push(String.fromCharCode(n)), r += o } return e.join("") } parseJwt(e) { try { var t = e.split("."), r = t[0].replace(/-/g, "+").replace(/_/g, "/"), n = this.base64Decode(r).replace(/\0/g, ""), o = JSON.parse(n), i = t[1].replace(/-/g, "+").replace(/_/g, "/"), s = this.base64Decode(i).replace(/\0/g, ""); return { header: o, payload: JSON.parse(s), signature: t[2] } } catch (e) { return this.log(e), null } } 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, p) { var e; let g; d.isNode && (e = require("axios"), g = e.create()); class t { constructor(e = !0) { this.handlers = [], this.isRequest = e } use(e, t, r) { return "function" == typeof e && p.debug("Register fulfilled " + e.name), "function" == typeof t && p.debug("Register rejected " + t.name), this.handlers.push({ fulfilled: e, rejected: t, synchronous: !(!r || "boolean" != typeof r.synchronous) && r.synchronous, runWhen: r ? r.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 r = { ...e }; return r.params && !d.isNode && (e = Object.keys(r.params).map(e => { var t = encodeURIComponent(e); return r.url = r.url.replace(new RegExp(e + "=[^&]*", "ig"), ""), r.url = r.url.replace(new RegExp(t + "=[^&]*", "ig"), ""), t + "=" + encodeURIComponent(r.params[e]) }).join("&"), r.url.indexOf("?") < 0 && (r.url += "?"), /(&|\?)$/g.test(r.url) || (r.url += "&"), r.url += e, delete r.params, p.debug("Params to QueryString: " + r.url)), r } const h = (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 y = (e, t = null) => { if (e && 400 <= e.status) return p.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), p.debug(`HTTP ${e.method.toUpperCase()}:` + "\n" + JSON.stringify(e)), e } function E(t) { try { t = t && h(t), p.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 = y(t); return e ? Promise.reject(e) : t } catch (e) { return p.error(e), t } } const r = (e, r) => { let n; r = ((e, t) => { let r = "object" == typeof t ? { headers: {}, ...t } : { url: t, headers: {} }; return r.method || (r.method = e), !0 === (r = f(r)).rewrite && (d.isSurge ? (r.headers["X-Surge-Skip-Scripting"] = !1, delete r.rewrite) : d.isQuanX && (r.hints = !1, delete r.rewrite)), d.isSurgeLike ? (t = r.headers["content-type"] || r.headers["Content-Type"], "GET" !== r.method && t && 0 <= t.indexOf("application/json") && r.body instanceof Array && (r.body = JSON.stringify(r.body), p.debug("Convert Array object to String: " + r.body))) : d.isQuanX ? (r.hasOwnProperty("body") && "string" != typeof r.body && (r.body = JSON.stringify(r.body)), r.method = e) : d.isNode && ("POST" === e || "PUT" === e || "PATCH" === e || "DELETE" === e ? r.data = r.data || r.body : "GET" === e && (r.params = r.params || r.body), delete r.body), r })(e.toUpperCase(), r), n = d.isNode ? g : d.isSurgeLike ? i => new Promise((n, o) => { $httpClient[e.toLowerCase()](i, (e, t, r) => { e ? (e = { name: e.name || e, message: e.message || e, stack: e.stack || e, config: i, response: h(t) }, o(e)) : (t.config = i, t.body = r, n(t)) }) }) : n => new Promise((r, t) => { $task.fetch(n).then(e => { e = h(e, n); var t = y(e, n); if (t) return Promise.reject(t); r(e) }).catch(e => { e = { name: e.message || e.error, message: e.message || e.error, stack: e.error, config: n, response: e.response ? h(e.response) : null }; t(e) }) }); let o; var t = r; 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) { p.error(`Failed to register interceptors: ${e}.`) } var i = [N, void 0], s = [E, void 0]; if (S) { for (p.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 && p.debug("Executing request fulfilled " + a.name), r = a(r) } catch (e) { "function" == typeof l && p.debug("Executing request rejected " + l.name), l(e); break } } try { o = (!d.isNode && r.timeout ? c : n)(r) } catch (e) { return Promise.reject(e) } for (Array.prototype.unshift.apply(b, s); b.length;)o = o.then(b.shift(), b.shift()); return o } { p.debug("Interceptors are executed in asynchronous mode"); let t = [n, 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(r); t.length;)try { let e = t.shift(); var u = t.shift(); "function" == typeof (e = !d.isNode && r.timeout && e === n ? c : e) && p.debug("Executing request fulfilled " + e.name), "function" == typeof u && p.debug("Executing request rejected " + u.name), o = o.then(e, u) } catch (e) { p.error("request exception: " + e) } return o } function c(r) { try { var e = new Promise((e, t) => { setTimeout(() => { var e = { message: `timeout of ${r.timeout}ms exceeded.`, config: r }; t(e) }, r.timeout) }); return Promise.race([n(r), e]) } catch (e) { p.error(`Request Timeout exception: ${e}.`) } } }; return { request: r, interceptors: m, convertHeadersToLowerCase: r => Object.keys(r).reduce((e, t) => (e[t.toLowerCase()] = r[t], e), {}), convertHeadersToCamelCase: r => Object.keys(r).reduce((e, t) => { return e[t.split("-").map(e => e[0].toUpperCase() + e.slice(1)).join("-")] = r[t], e }, {}), modifyResponse: h, get: e => r("GET", e), post: e => r("POST", e), put: e => r("PUT", e), patch: e => r("PATCH", e), delete: e => r("DELETE", e), head: e => r("HEAD", e), options: e => r("OPTIONS", e) } } function MagicData(d, p) { let g = { fs: void 0, data: {} }; if (d.isNode) { g.fs = require("fs"); try { g.fs.accessSync("./magic.json", g.fs.constants.R_OK | g.fs.constants.W_OK) } catch (e) { g.fs.writeFileSync("./magic.json", "{}", { encoding: "utf8" }) } g.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, r, n) => { if (r) try { e = !0 === (e = "string" == typeof e ? JSON.parse(e) : e).magic_session ? e[r] : null } catch { e = null } if ("string" == typeof e && "null" !== e) try { e = JSON.parse(e) } catch { } return null == (e = !1 === n && 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 r = typeof (e = JSON.parse(t)); ("object" != r || e instanceof Array || "bool" == r || null === e) && (e = {}) } catch { } return e } }, u = (e, t = null, r = "", n = !1, o = null) => { let i = ""; return i = o || d.isNode ? ((e, t = null, r = "", n = !1, o = null) => { o = o || g.data; return val = o && void 0 !== o[e] && null !== o[e] ? o[e] : r ? {} : null, val = l(val, t, r, n) })(e, t, r, n, o) : (d.isSurgeLike ? i = $persistentStore.read(e) : d.isQuanX && (i = $prefs.valueForKey(e)), l(i, t, r, n)), p.debug(`READ DATA [${e}]${r ? `[${r}]` : ""} <${typeof i}>` + "\n" + JSON.stringify(i)), i }, c = (e, t, r = "", n = 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 (n || d.isNode ? o = ([i, s, a = "", l = null] = [e, t, r, n], c = l || g.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) : r ? (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[r] = t) : o = t, o && "object" == typeof o && (o = JSON.stringify(o, null, 4)), p.debug(`WRITE DATA [${e}]${r ? `[${r}]` : ""} <${typeof t}>` + "\n" + JSON.stringify(t)), !n) { if (d.isSurgeLike) return $persistentStore.write(o, e); if (d.isQuanX) return $prefs.setValueForKey(o, e); if (d.isNode) try { g.fs.writeFileSync("./magic.json", o) } catch (e) { return p.error(e), !1 } } return !0 }; return { read: u, write: c, del: (e, t = "", r = null) => { let n = {}; if (r || d.isNode) n = (o = e, i = t, s = r || g.data, s = f(s), i ? (delete (obj = f(s[o]))[i], s[o] = obj) : delete s[o], s), r ? r = n : g.fs.writeFileSync("./magic.json", JSON.stringify(n, null, 4)); else if (t) { d.isSurgeLike ? n = $persistentStore.read(e) : d.isQuanX && (n = $prefs.valueForKey(e)), delete (n = f(n))[t]; i = JSON.stringify(n, 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; p.debug(`DELETE KEY [${e}]` + (t ? `[${t}]` : "")) }, update: (e, t, r, n = s, o = null) => { var i; return t = a(t), !0 !== n(u(e, null, r, !1, o), t) && (i = c(e, t, r, o), e = u(e, null, r, !1, o), n === s && "object" == typeof e ? i : n(t, e)) }, allSessions: (e, t = null) => { let r = {}; t = u(e, null, null, !0, t); return !0 === (t = f(t)).magic_session && delete (r = { ...t }).magic_session, p.debug(`READ ALL SESSIONS [${e}] <${typeof r}>` + "\n" + JSON.stringify(r, null, 4)), r }, allSessionNames: (e, t = null) => { let r = []; t = u(e, null, null, !0, t), t = f(t); return r = !0 !== t.magic_session ? [] : Object.keys(t).filter(e => "magic_session" !== e), p.debug(`READ ALL SESSIONS [${e}] <${typeof r}>` + "\n" + JSON.stringify(r, null, 4)), r }, defaultValueComparator: s, convertToObject: f } } function MagicNotification(i, o, s, a) { let l = null, u = null, c = []; function d(e = i, t = "", r = "", n = "") { n = (t => { try { let e = {}; var r; 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 && (r = t["open-url"] || t.openUrl, e = r ? { url: r } : {})), e } catch (e) { s.error("通知选项转换失败" + e) } return t })(n), 1 === arguments.length && (e = i, t = "", r = arguments[0]), s.notify("\ntitle:" + e + "\nsubTitle:" + t + "\nbody:" + r + "\noptions:" + ("object" == typeof n ? JSON.stringify(n) : n)), o.isSurge ? $notification.post(e, t, r, n) : o.isLoon ? n ? $notification.post(e, t, r, n) : $notification.post(e, t, r) : o.isQuanX && $notify(e, t, r, n), l && u && p(e, t, r) } function p(e = i, t = "", r = "", n) { 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" + r : r, device_key: u } }; a.post(e).catch(e => { s.error("Bark notify error: " + e) }) } return { post: d, debug: function (e = i, t = "", r = "", n = "") { "DEBUG" === s.getLevel() && (1 === arguments.length && (e = i, t = "", r = arguments[0]), this.post(e, t, r, n)) }, bark: p, 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, r, n) { var o = {}; r && (o["open-url"] = r), n && (o["media-url"] = n), (t = t && 0 != t.length ? t : Array.isArray(c) ? c.join("\n") : c) && 0 < t.length && d(i, "", t, o) } } } function MagicUtils(n, u) { const e = (e, t = "yyyy-MM-dd hh:mm:ss") => { var r, n = { "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 (r in /(y+)/.test(t) && (t = t.replace(RegExp.$1, (e.getFullYear() + "").substr(4 - RegExp.$1.length))), n) new RegExp("(" + r + ")").test(t) && (t = t.replace(RegExp.$1, 1 === RegExp.$1.length ? n[r] : ("00" + n[r]).substr(("" + n[r]).length))); return t }; return { retry: (i, s = 5, a = 0, l = null) => (...e) => new Promise((r, n) => { function o(...t) { Promise.resolve().then(() => i.apply(this, t)).then(e => { "function" == typeof l ? Promise.resolve().then(() => l(e)).then(() => { r(e) }).catch(e => { 1 <= s ? 0 < a ? setTimeout(() => o.apply(this, t), a) : o.apply(this, t) : n(e), s-- }) : r(e) }).catch(e => { u.error(e), 1 <= s && 0 < a ? setTimeout(() => o.apply(this, t), a) : 1 <= s ? o.apply(this, t) : n(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 r; n.isNode ? (r = require("assert"), t ? r(e, t) : r(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", p = MagicHttp(e, o); async function r() { 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 p.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 p.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 g(e) { let t = []; return await p.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 n(n = null, e = "", t) { let o = []; return await p.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 (n) { var t = []; for (const r of e) r.name === n && o.push(r); 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 r = ""; return await p.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)); r = e.body.data }).catch(e => { throw new Error("Error reading data from QingLong Panel.\n" + (e.message || e)) }), r } async function h(e, t = "", r = "") { let n = !1; return await p.put({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t, content: r } }).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 } return p.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), p.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 }), p.interceptors.request.use(async function (e) { return (t = t || a.read("magic_qltoken", "")) || await r(), e.headers.authorization = "Bearer " + t, e }, void 0, { runWhen: e => e.url.indexOf("api/user/login") < 0 && e.url.indexOf("open/auth/token") < 0 }), p.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 }), p.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), p.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 r(), e.config.refreshToken = !0, o.info("Call the previous method again"), await p.request(e.config.method, e.config)) : Promise.reject(e) } catch (e) { return Promise.reject(e) } }), { url: i || a.read("magic_qlurl"), init: (e, t, r, n, o) => { i = e, l = t, u = r, s = n, c = o }, getToken: r, setEnv: async function (t, r, n = null) { if (i = i || a.read("magic_qlurl"), null === n) { var e = await g([{ name: t, value: r }]); if (e && 1 === e.length) return e[0] } else await p.put({ url: "/api/envs", headers: { "content-type": "application/json" }, body: { name: t, value: r, id: n } }).then(e => { if (200 === e.body.code) return o.debug(`QINGLONG UPDATE ENV ${t} <${typeof r}> (${n})` + "\n" + JSON.stringify(r)), !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: g, getEnv: async function (e) { let t = null; for (const r of await n()) if (r.id === e) { t = r; break } return t }, getEnvs: n, delEnvs: async function (t) { return p.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 r = !1; return await p.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), r = !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)) }), r }, enableEnvs: async function (t) { let r = !1; return await p.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), r = !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)) }), r }, addScript: async function (e, t = "", r = "") { let n = !1; return await p.post({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t, content: r } }).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 }, getScript: f, editScript: h, delScript: async function (e, t = "") { let r = !1; return await p.delete({ url: "/api/scripts", headers: { "content-type": "application/json" }, body: { filename: e, path: t } }).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 }, write: async function (e, t, r = "") { var n = await f(d, ""), o = a.convertToObject(n), e = a.write(e, t, r, o), n = JSON.stringify(o, null, 4); return await h(d, "", n) && e }, read: async function (e, t, r = "", n = !1) { var o = await f(d, ""), o = a.convertToObject(o); return a.read(e, t, r, n, o) }, del: async function (e, t = "") { var r = await f(d, ""), n = a.convertToObject(r), e = a.del(e, t, n), r = JSON.stringify(n, null, 4), t = await h(d, "", r); return e && t }, update: async function (e, t, r, n = a.defaultValueComparator) { var o = await f(d, ""), i = a.convertToObject(o), e = a.update(e, t, r, n, i); let s = !1; return !0 === e && (o = JSON.stringify(i, null, 4), s = await h(d, "", o)), e && s }, batchWrite: async function (...e) { var t, r = await f(d, ""), n = a.convertToObject(r); for (t of e) a.write(t[0], t[1], void 0 !== t[2] ? t[2] : "", n); return r = JSON.stringify(n, null, 4), h(d, "", r) }, batchRead: async function (...e) { var t, r = await f(d, ""), n = a.convertToObject(r), 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], n); o.push(i) } return o }, batchUpdate: async function (...e) { var t, r = await f(d, ""), n = a.convertToObject(r); for (t of e) a.update(t[0], t[1], void 0 !== t[2] ? t[2] : "", void 0 !== t[3] ? t.comparator : a.defaultValueComparator, n); return r = JSON.stringify(n, null, 4), h(d, "", r) }, batchDel: async function (...e) { var t, r = await f(d, ""), n = a.convertToObject(r); for (t of e) a.del(t[0], void 0 !== t[1] ? t[1] : "", n); return r = JSON.stringify(n, null, 4), h(d, "", r) }, 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) } } }
  563. //---SyncByPyScript---MagicJS3-end
  564. //---SyncByPyScript---w_md5-start
  565. function hex_md5(r, n) { function a(r, n) { return r << n | r >>> 32 - n } function i(r, n) { var t = 2147483648 & r, e = 2147483648 & n, o = 1073741824 & r, u = 1073741824 & n, r = (1073741823 & r) + (1073741823 & n); return o & u ? 2147483648 ^ r ^ t ^ e : o | u ? 1073741824 & r ? 3221225472 ^ r ^ t ^ e : 1073741824 ^ r ^ t ^ e : r ^ t ^ e } function t(r, n, t, e, o, u, f) { return r = i(r, i(i(n & t | ~n & e, o), f)), i(a(r, u), n) } function e(r, n, t, e, o, u, f) { return r = i(r, i(i(n & e | t & ~e, o), f)), i(a(r, u), n) } function o(r, n, t, e, o, u, f) { return r = i(r, i(i(n ^ t ^ e, o), f)), i(a(r, u), n) } function u(r, n, t, e, o, u, f) { return r = i(r, i(i(t ^ (n | ~e), o), f)), i(a(r, u), n) } function f(r) { for (var n = "", t = "", e = 0; e <= 3; e++)n += (t = "0" + (r >>> 8 * e & 255).toString(16)).substr(t.length - 2, 2); return n } Array(); for (var h, c, d, C, m = function (r) { for (var n, t = r.length, e = 16 * (1 + ((e = t + 8) - e % 64) / 64), o = Array(e - 1), u = 0, f = 0; f < t;)u = f % 4 * 8, o[n = (f - f % 4) / 4] = o[n] | r.charCodeAt(f) << u, f++; return o[n = (f - f % 4) / 4] = o[n] | 128 << (u = f % 4 * 8), o[e - 2] = t << 3, o[e - 1] = t >>> 29, o }(r = function (r) { r = r.replace(/\r\n/g, "\n"); for (var n = "", t = 0; t < r.length; t++) { var e = r.charCodeAt(t); e < 128 ? n += String.fromCharCode(e) : n = 127 < e && e < 2048 ? (n += String.fromCharCode(e >> 6 | 192)) + String.fromCharCode(63 & e | 128) : (n = (n += String.fromCharCode(e >> 12 | 224)) + String.fromCharCode(e >> 6 & 63 | 128)) + String.fromCharCode(63 & e | 128) } return n }(r)), _ = 1732584193, g = 4023233417, p = 2562383102, x = 271733878, v = 0; v < m.length; v += 16)_ = t(h = _, c = g, d = p, C = x, m[v + 0], 7, 3614090360), x = t(x, _, g, p, m[v + 1], 12, 3905402710), p = t(p, x, _, g, m[v + 2], 17, 606105819), g = t(g, p, x, _, m[v + 3], 22, 3250441966), _ = t(_, g, p, x, m[v + 4], 7, 4118548399), x = t(x, _, g, p, m[v + 5], 12, 1200080426), p = t(p, x, _, g, m[v + 6], 17, 2821735955), g = t(g, p, x, _, m[v + 7], 22, 4249261313), _ = t(_, g, p, x, m[v + 8], 7, 1770035416), x = t(x, _, g, p, m[v + 9], 12, 2336552879), p = t(p, x, _, g, m[v + 10], 17, 4294925233), g = t(g, p, x, _, m[v + 11], 22, 2304563134), _ = t(_, g, p, x, m[v + 12], 7, 1804603682), x = t(x, _, g, p, m[v + 13], 12, 4254626195), p = t(p, x, _, g, m[v + 14], 17, 2792965006), _ = e(_, g = t(g, p, x, _, m[v + 15], 22, 1236535329), p, x, m[v + 1], 5, 4129170786), x = e(x, _, g, p, m[v + 6], 9, 3225465664), p = e(p, x, _, g, m[v + 11], 14, 643717713), g = e(g, p, x, _, m[v + 0], 20, 3921069994), _ = e(_, g, p, x, m[v + 5], 5, 3593408605), x = e(x, _, g, p, m[v + 10], 9, 38016083), p = e(p, x, _, g, m[v + 15], 14, 3634488961), g = e(g, p, x, _, m[v + 4], 20, 3889429448), _ = e(_, g, p, x, m[v + 9], 5, 568446438), x = e(x, _, g, p, m[v + 14], 9, 3275163606), p = e(p, x, _, g, m[v + 3], 14, 4107603335), g = e(g, p, x, _, m[v + 8], 20, 1163531501), _ = e(_, g, p, x, m[v + 13], 5, 2850285829), x = e(x, _, g, p, m[v + 2], 9, 4243563512), p = e(p, x, _, g, m[v + 7], 14, 1735328473), _ = o(_, g = e(g, p, x, _, m[v + 12], 20, 2368359562), p, x, m[v + 5], 4, 4294588738), x = o(x, _, g, p, m[v + 8], 11, 2272392833), p = o(p, x, _, g, m[v + 11], 16, 1839030562), g = o(g, p, x, _, m[v + 14], 23, 4259657740), _ = o(_, g, p, x, m[v + 1], 4, 2763975236), x = o(x, _, g, p, m[v + 4], 11, 1272893353), p = o(p, x, _, g, m[v + 7], 16, 4139469664), g = o(g, p, x, _, m[v + 10], 23, 3200236656), _ = o(_, g, p, x, m[v + 13], 4, 681279174), x = o(x, _, g, p, m[v + 0], 11, 3936430074), p = o(p, x, _, g, m[v + 3], 16, 3572445317), g = o(g, p, x, _, m[v + 6], 23, 76029189), _ = o(_, g, p, x, m[v + 9], 4, 3654602809), x = o(x, _, g, p, m[v + 12], 11, 3873151461), p = o(p, x, _, g, m[v + 15], 16, 530742520), _ = u(_, g = o(g, p, x, _, m[v + 2], 23, 3299628645), p, x, m[v + 0], 6, 4096336452), x = u(x, _, g, p, m[v + 7], 10, 1126891415), p = u(p, x, _, g, m[v + 14], 15, 2878612391), g = u(g, p, x, _, m[v + 5], 21, 4237533241), _ = u(_, g, p, x, m[v + 12], 6, 1700485571), x = u(x, _, g, p, m[v + 3], 10, 2399980690), p = u(p, x, _, g, m[v + 10], 15, 4293915773), g = u(g, p, x, _, m[v + 1], 21, 2240044497), _ = u(_, g, p, x, m[v + 8], 6, 1873313359), x = u(x, _, g, p, m[v + 15], 10, 4264355552), p = u(p, x, _, g, m[v + 6], 15, 2734768916), g = u(g, p, x, _, m[v + 13], 21, 1309151649), _ = u(_, g, p, x, m[v + 4], 6, 4149444226), x = u(x, _, g, p, m[v + 11], 10, 3174756917), p = u(p, x, _, g, m[v + 2], 15, 718787259), g = u(g, p, x, _, m[v + 9], 21, 3951481745), _ = i(_, h), g = i(g, c), p = i(p, d), x = i(x, C); return (32 == n ? f(_) + f(g) + f(p) + f(x) : f(g) + f(p)).toLowerCase() } function createWMd5() { var r = { hex_md5_16: function (r) { return hex_md5(r, 16) }, hex_md5_16Upper: function (r) { return hex_md5(r, 16).toUpperCase() }, hex_md5_32: function (r) { return hex_md5(r, 32) }, hex_md5_32Upper: function (r) { return hex_md5(r, 32).toUpperCase() } }; return r }
  566. //---SyncByPyScript---w_md5-end