ofpayGrab.js 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. const lk = new ToolKit(`爱购8.8`, `OfpayGrab`);
  2. const OfPayConstKey = {
  3. phone: 'lkOfPayPhone',
  4. uuid: 'lkOfPayUUID',
  5. token: 'lkOfPayAuthorization',
  6. cookie: 'lkOfPayCookie',
  7. marketId: 'lkOfPayMarketId',
  8. eventVisitorId: 'lkOfPayEventVisitorId',
  9. marketItemsData: 'lkOfPayMarketItemsData',
  10. marketBuyList: 'lkOfPayMarketBuyList',
  11. awardDiscountPrice: 'lkOfPayDiscountPrice',
  12. }
  13. let ofpayUserAgent = `Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 F-OFST elife_moblie_ios fullversion:6.0.2 BSComponentVersion:5.4 WorkStationChannel:0 isBreak:0 ICBCiPhoneBSNew 6.0.2 iphone os wkwebview:true`;
  14. let ofpayUUID = lk.getVal(OfPayConstKey.uuid,'');
  15. // jwt登录身份验证 24小时过期
  16. let ofpayAuthorization = lk.getVal(OfPayConstKey.token, '');
  17. let ofpayCookie = lk.getVal(OfPayConstKey.cookie,'');
  18. const CommonHost = 'market-web.ofpay.com';
  19. const GCommonHeads = {
  20. 'Host': CommonHost,
  21. 'UUID': ofpayUUID,
  22. 'Accept': `*/*`,
  23. 'Sec-Fetch-Site': 'same-origin',
  24. 'Origin': `https://www.gandart.com`,
  25. 'Accept-Language': 'zh-CN,zh-Hans;q=0.9',
  26. 'Accept-Encoding': `gzip, deflate, br`,
  27. 'Sec-Fetch-Mode': 'cors',
  28. 'Content-Type': `application/json; charset=utf-8`,
  29. 'Connection': `keep-alive`,
  30. 'Host': `api2.gandart.com`,
  31. 'User-Agent': ofpayUserAgent,
  32. 'Referer': `https://www.gandart.com/`,
  33. 'Accept-Language': `zh-CN,zh-Hans;q=0.9`,
  34. 'Authorization': ofpayAuthorization,
  35. 'Cookie': ofpayCookie,
  36. 'Sec-Fetch-Dest': 'empty',
  37. 'Referer': 'https://market-web.ofpay.com/h5/union/standard/interactiveIGoChoose/index',
  38. };
  39. let marketId = lk.getVal(OfPayConstKey.marketId);
  40. let eventVisitorId = lk.getVal(OfPayConstKey.eventVisitorId);
  41. let awardWantDiscountDict = null;
  42. if (!lk.isExecComm) {
  43. if (!lk.isRequest()) {
  44. all();
  45. }
  46. }
  47. async function all() {
  48. let hasNeedSendNotify = true;
  49. if(!checkParamsExists()){
  50. lk.appendNotifyInfo(`❌缺少必要参数,请登录app采集`);
  51. }else{
  52. if(lk.isEmpty(marketId) || lk.isEmpty(eventVisitorId)){
  53. lk.appendNotifyInfo(`❌缺少次要参数,请登录app采集`);
  54. } else {
  55. let cateItems = await getMarketItems(marketId, eventVisitorId);
  56. if(cateItems){
  57. let cateCount = cateItems.length;
  58. let allBuyList = getWillMarketBuyListAll();
  59. // lk.log("#############allBuyList#############");
  60. // lk.log(JSON.stringify(allBuyList));
  61. let allRetList = [];
  62. for (let i = 0; i < cateCount; i++) {
  63. const buyList = allBuyList[i];
  64. if(!buyList){
  65. continue;
  66. }
  67. const activityData = cateItems[i];
  68. const buyRetList = await checkToBuyAll(buyList, activityData);
  69. allRetList = allRetList.concat(buyRetList);
  70. }
  71. let dismsg = '';
  72. for(let i = 0; i < allRetList.length; i++){
  73. const oneRet = allRetList[i];
  74. dismsg += `${oneRet.prizeName}${oneRet.prizeDesc}#¥${oneRet.price}\n`;
  75. }
  76. if(dismsg.length > 0){
  77. lk.appendNotifyInfo(`🎉下单成功:\n${dismsg}`);
  78. }
  79. }
  80. }
  81. }
  82. if (hasNeedSendNotify) {
  83. lk.msg(``);
  84. };
  85. lk.done();
  86. }
  87. function checkParamsExists(){
  88. if(lk.isEmpty(ofpayUUID)){
  89. return false;
  90. }
  91. if(lk.isEmpty(ofpayAuthorization)){
  92. return false;
  93. }
  94. if(lk.isEmpty(ofpayCookie)){
  95. return false;
  96. }
  97. return true;
  98. }
  99. function getWillMarketBuyListAll() {
  100. let key = `${OfPayConstKey.marketBuyList}`;
  101. let defVal = '星巴克|霸王茶姬|百果园|京东E卡|滴滴快车';
  102. let nameArr = [];
  103. let nameStr = lk.getVal(key, defVal);
  104. if (!lk.isEmpty(nameStr)) {
  105. let segments = nameStr.trim().split('|');
  106. nameArr = [];
  107. for (let vstr of segments) {
  108. if(lk.isEmpty(vstr)){
  109. nameArr.push(null);
  110. } else {
  111. const vlist = vstr.trim().split(',');
  112. nameArr.push(vlist);
  113. }
  114. }
  115. } else {
  116. nameArr = [];
  117. }
  118. return nameArr;
  119. }
  120. async function checkToBuyAll(buyList, activityData){
  121. const subActivityId = activityData.subActivityId;
  122. const awardList = activityData.awardList;
  123. let retList = [];
  124. for(let i=0; i < buyList.length; i++){
  125. const oneRet = await checkToBuyOne(subActivityId, buyList[i], awardList);
  126. if(oneRet){
  127. retList.push(oneRet);
  128. }
  129. }
  130. return retList;
  131. }
  132. async function checkToBuyOne(subActivityId, itemName, awardList){
  133. let oneRet = null;
  134. for(let i=0; i < awardList.length; i++){
  135. const awardData = awardList[i];
  136. if(awardData.prizeName.indexOf(itemName) > -1){
  137. if(awardData.remainStock > 0){
  138. oneRet = await itemBuy(subActivityId, awardData, 'choose');
  139. }
  140. break;
  141. }
  142. }
  143. return oneRet;
  144. }
  145. async function itemBuy(subActivityId, awardData, cateActType){
  146. const activityId = awardData.activityId;
  147. const prizeName = awardData.prizeName;
  148. let actDataList = await getActivityItems(marketId, activityId, eventVisitorId);
  149. let theActData = await getActivityData(activityId, eventVisitorId);
  150. for(let i=0; i < actDataList.length; i++){
  151. const actData = actDataList[i];
  152. // 'choose' 'subChoose' 'subPre' 'subShare'
  153. const actType = actData.type;
  154. if(actType == cateActType){
  155. const awardList = actData.awardList;
  156. const newAwardIem = checkPickItem(prizeName, awardList);
  157. if(newAwardIem){
  158. awardData = newAwardIem;
  159. break;
  160. }
  161. }
  162. }
  163. getDesDecodeInfo(activityId, eventVisitorId);
  164. const gameAccount = lk.getVal(OfPayConstKey.phone);
  165. const thirdInfo = JSON.parse(awardData.thirdInfo);
  166. const awardId = awardData.awardId;
  167. const awardPrice = parseFloat(awardData.price);
  168. const awardFaceValue = parseFloat(thirdInfo.faceValue);
  169. awardData.faceValue = awardFaceValue;
  170. const discountPrice = getAwardExpectedDiscount(awardFaceValue, prizeName);
  171. lk.log(`商品${prizeName}(面值:${awardFaceValue}),当前售价:${awardPrice}\n#${awardId}`);
  172. if(awardPrice <= discountPrice){
  173. // let payInfo = await getPayInfo(subActivityId, awardId, '', '', gameAccount, eventVisitorId);
  174. // let payRet = await pay(subActivityId, eventVisitorId);
  175. // if(payRet){
  176. // return awardData;
  177. // }
  178. return awardData;
  179. } else {
  180. }
  181. return null;
  182. }
  183. function getAwardExpectedDiscount(price, prizeName){
  184. if(!awardWantDiscountDict){
  185. awardWantDiscountDict = {};
  186. let defVal = '星巴克#20.80|霸王茶姬#10.80|百果园#10.80|京东E卡#10.80|滴滴快车#10.80';
  187. let discountStr = lk.getVal(OfPayConstKey.awardDiscountPrice,defVal);
  188. if (!lk.isEmpty(discountStr)) {
  189. let segments = discountStr.trim().split('|');
  190. for (let vstr of segments) {
  191. if(!lk.isEmpty(vstr)){
  192. const vlist = vstr.trim().split('#');
  193. const key = vlist[0];
  194. if(vlist[1]){
  195. const price = Number(vlist[1].trim());
  196. awardWantDiscountDict[key] = price;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. if(awardWantDiscountDict[prizeName] != void 0){
  203. return awardWantDiscountDict[prizeName];
  204. }
  205. return price-8.8;
  206. }
  207. function checkPickItem(prizeName, awardList){
  208. for(let i=0; i < awardList.length; i++){
  209. const awardData = awardList[i];
  210. const onePrizeName = awardData.prizeName;
  211. if(onePrizeName.indexOf('忽略') == -1 && onePrizeName.indexOf(prizeName) > -1){
  212. return awardData;
  213. }
  214. }
  215. }
  216. async function getMarketItems(marketId, eventVisitorId){
  217. return new Promise((resolve, _reject) => {
  218. try {
  219. const headers = GCommonHeads;
  220. headers.Host = 'market-web.ofpay.com';
  221. const body = ``;
  222. const url = `https://${CommonHost}/h5/union/api/interactiveIGoChoose/indexConfigRebuild?marketId=${marketId}&eventVisitorId=${eventVisitorId}`;
  223. let options = {
  224. url: url,
  225. headers: headers,
  226. body: body
  227. };
  228. lk.log(`请求市场商品列表数据`);
  229. lk.get(options, async (error, _response, data) => {
  230. let ret;
  231. try {
  232. if (error) {
  233. lk.log(`请求市场商品列表发生错误`);
  234. lk.execFail();
  235. } else {
  236. let info = JSON.parse(data);
  237. if (info.code == 'success') {
  238. lk.log(`请求市场商品列表数据成功`);
  239. ret = info.data;
  240. } else {
  241. lk.log(`请求市场商品列表数据成功,响应:${data}`);
  242. }
  243. }
  244. } catch (e) {
  245. lk.log(`请求市场商品列表发生错误`);
  246. lk.logErr(e);
  247. lk.execFail();
  248. } finally {
  249. resolve(ret);
  250. }
  251. });
  252. } catch (e) {
  253. lk.log(`请求市场商品列表发生错误`);
  254. lk.logErr(e);
  255. resolve();
  256. }
  257. });
  258. }
  259. async function getActivityItems(marketId, activityId, eventVisitorId){
  260. return new Promise((resolve, _reject) => {
  261. try {
  262. const headers = GCommonHeads;
  263. headers.Host = 'market-web.ofpay.com';
  264. const body = ``;
  265. const url = `https://${CommonHost}/h5/union/interactiveIGoChoose/marketIndexRebuild?marketId=${marketId}&activityId=${activityId}&eventVisitorId=${eventVisitorId}`;
  266. let options = {
  267. url: url,
  268. headers: headers,
  269. body: body
  270. };
  271. lk.log(`请求活动商品列表数据`);
  272. lk.get(options, async (error, _response, data) => {
  273. let ret;
  274. try {
  275. if (error) {
  276. lk.log(`请求活动商品列表发生错误`);
  277. lk.execFail();
  278. } else {
  279. let info = JSON.parse(data);
  280. if (info.code == 'success') {
  281. lk.log(`请求活动商品列表数据成功`);
  282. ret = info.data;
  283. } else {
  284. lk.log(`请求活动商品列表数据失败,响应:${data}`);
  285. }
  286. }
  287. } catch (e) {
  288. lk.log(`请求活动商品列表发生错误`);
  289. lk.logErr(e);
  290. lk.execFail();
  291. } finally {
  292. resolve(ret);
  293. }
  294. });
  295. } catch (e) {
  296. lk.log(`请求活动商品列表发生错误`);
  297. lk.logErr(e);
  298. resolve();
  299. }
  300. });
  301. }
  302. async function getActivityData(activityId, eventVisitorId){
  303. return new Promise((resolve, _reject) => {
  304. try {
  305. const headers = GCommonHeads;
  306. headers.Host = 'market-web.ofpay.com';
  307. const body = ``;
  308. const url = `https://${CommonHost}/h5/api/mobile/activity/data?activityNo=${activityId}&eventVisitorId=${eventVisitorId}`;
  309. let options = {
  310. url: url,
  311. headers: headers,
  312. body: body
  313. };
  314. lk.log(`请求活动状态数据`);
  315. lk.get(options, async (error, _response, data) => {
  316. let ret;
  317. try {
  318. if (error) {
  319. lk.log(`请求活动状态发生错误`);
  320. lk.execFail();
  321. } else {
  322. let info = JSON.parse(data);
  323. if (info.code == 'success') {
  324. lk.log(`请求活动状态数据成功`);
  325. ret = info.data;
  326. } else {
  327. lk.log(`请求活动状态数据失败,响应:${data}`);
  328. }
  329. }
  330. } catch (e) {
  331. lk.log(`请求活动状态发生错误`);
  332. lk.logErr(e);
  333. lk.execFail();
  334. } finally {
  335. resolve(ret);
  336. }
  337. });
  338. } catch (e) {
  339. lk.log(`请求活动状态发生错误`);
  340. lk.logErr(e);
  341. resolve();
  342. }
  343. });
  344. }
  345. async function getDesDecodeInfo(activityId, eventVisitorId){
  346. return new Promise((resolve, _reject) => {
  347. try {
  348. const headers = GCommonHeads;
  349. headers.Host = 'market-web.ofpay.com';
  350. const body = ``;
  351. const url = `https://${CommonHost}/h5/union/api/interactiveIGoChoose/getDesDecodeInfo?activityNo=${activityId}&eventVisitorId=${eventVisitorId}`;
  352. let options = {
  353. url: url,
  354. headers: headers,
  355. body: body
  356. };
  357. lk.log(`请求活动描述数据`);
  358. lk.get(options, async (error, _response, data) => {
  359. let ret;
  360. try {
  361. if (error) {
  362. lk.log(`请求活动描述发生错误`);
  363. lk.execFail();
  364. } else {
  365. let info = JSON.parse(data);
  366. lk.log(`请求活动描述数据成功`);
  367. lk.log(data);
  368. ret = info;
  369. }
  370. } catch (e) {
  371. lk.log(`请求活动描述发生错误`);
  372. lk.logErr(e);
  373. lk.execFail();
  374. } finally {
  375. resolve(ret);
  376. }
  377. });
  378. } catch (e) {
  379. lk.log(`请求活动描述发生错误`);
  380. lk.logErr(e);
  381. resolve();
  382. }
  383. });
  384. }
  385. async function getPayInfo(subActivityId, awardId, goodsId, invitationCode, gameAccount, eventVisitorId){
  386. return new Promise((resolve, _reject) => {
  387. try {
  388. const headers = GCommonHeads;
  389. headers.Host = 'market-web.ofpay.com';
  390. const body = ``;
  391. const url = `https://${CommonHost}/h5/union/api/draw/interactiveIGoChoose/${subActivityId}?awardId=${awardId}&goodsId=${goodsId}&invitationCode=${invitationCode}&gameAccount=${gameAccount}&eventVisitorId=${eventVisitorId}`;
  392. let options = {
  393. url: url,
  394. headers: headers,
  395. body: body
  396. };
  397. lk.log(`请求商品预支付数据`);
  398. lk.get(options, async (error, _response, data) => {
  399. let ret;
  400. try {
  401. if (error) {
  402. lk.log(`请求商品预支付数据发生错误`);
  403. lk.execFail();
  404. } else {
  405. let info = JSON.parse(data);
  406. if (info.pay) {
  407. lk.log(`请求商品预支付数据成功`);
  408. lk.log(data);
  409. ret = info;
  410. } else {
  411. lk.log(`请求商品预支付数据失败,响应:${data}`);
  412. }
  413. }
  414. } catch (e) {
  415. lk.log(`请求商品预支付数据发生错误`);
  416. lk.logErr(e);
  417. lk.execFail();
  418. } finally {
  419. resolve(ret);
  420. }
  421. });
  422. } catch (e) {
  423. lk.log(`请求商品预支付数据发生错误`);
  424. lk.logErr(e);
  425. resolve();
  426. }
  427. });
  428. }
  429. async function pay(subActivityId, eventVisitorId){
  430. return new Promise((resolve, _reject) => {
  431. try {
  432. const headers = GCommonHeads;
  433. headers.Host = 'market-web.ofpay.com';
  434. const body = ``;
  435. const url = `https://${CommonHost}/h5/api/mobile/activity/pay/${subActivityId}?eventVisitorId=${eventVisitorId}`;
  436. let options = {
  437. url: url,
  438. headers: headers,
  439. body: body
  440. };
  441. lk.log(`请求下单信息`);
  442. lk.get(options, async (error, _response, data) => {
  443. let ret;
  444. try {
  445. if (error) {
  446. lk.log(`请求下单发生错误`);
  447. lk.execFail();
  448. } else {
  449. let info = JSON.parse(data);
  450. if (info.code == 'success') {
  451. lk.log(`请求下单成功`);
  452. lk.log(data);
  453. ret = info;
  454. } else {
  455. lk.log(`请求下单失败,响应:${data}`);
  456. }
  457. }
  458. } catch (e) {
  459. lk.log(`请求下单发生错误`);
  460. lk.logErr(e);
  461. lk.execFail();
  462. } finally {
  463. resolve(ret);
  464. }
  465. });
  466. } catch (e) {
  467. lk.log(`请求下单发生错误`);
  468. lk.logErr(e);
  469. resolve();
  470. }
  471. });
  472. }
  473. //---SyncByPyScript---ToolKit-start
  474. function ToolKit(t,s,e){return new class{constructor(t,s,e){this.tgEscapeCharMapping={"&":"&","#":"#"},this.userAgent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15",this.prefix="lk",this.name=t,this.id=s,this.data=null,this.dataFile=this.getRealPath(""+this.prefix+this.id+".dat"),this.boxJsJsonFile=this.getRealPath(""+this.prefix+this.id+".boxjs.json"),this.options=e,this.isExecComm=!1,this.isEnableLog=this.getVal(this.prefix+"IsEnableLog"+this.id),this.isEnableLog=!!this.isEmpty(this.isEnableLog)||JSON.parse(this.isEnableLog),this.isNotifyOnlyFail=this.getVal(this.prefix+"NotifyOnlyFail"+this.id),this.isNotifyOnlyFail=!this.isEmpty(this.isNotifyOnlyFail)&&JSON.parse(this.isNotifyOnlyFail),this.isEnableTgNotify=this.getVal(this.prefix+"IsEnableTgNotify"+this.id),this.isEnableTgNotify=!this.isEmpty(this.isEnableTgNotify)&&JSON.parse(this.isEnableTgNotify),this.tgNotifyUrl=this.getVal(this.prefix+"TgNotifyUrl"+this.id),this.isEnableTgNotify=this.isEnableTgNotify&&!this.isEmpty(this.tgNotifyUrl),this.costTotalStringKey=this.prefix+"CostTotalString"+this.id,this.costTotalString=this.getVal(this.costTotalStringKey),this.costTotalString=this.isEmpty(this.costTotalString)?"0,0":this.costTotalString.replace('"',""),this.costTotalMs=this.costTotalString.split(",")[0],this.execCount=this.costTotalString.split(",")[1],this.costTotalMs=this.isEmpty(this.costTotalMs)?0:parseInt(this.costTotalMs),this.execCount=this.isEmpty(this.execCount)?0:parseInt(this.execCount),this.logSeparator="\n██",this.now=new Date,this.startTime=this.now.getTime(),this.node=this.isNode()?{request:require("request")}:null,this.execStatus=!0,this.notifyInfo=[],this.log(this.name+", 开始执行!"),this.initCache(),this.checkRecordRequestBody(),this.execComm()}checkRecordRequestBody(){if(this.isRequest()){var s=$request.body;if(s){var e=$request.path;let t=this.id+"#"+e.replace("/","_");t=t.replace("?","#"),this.isQuanX()&&$prefs.setValueForKey(s,t),(this.isLoon()||this.isSurge())&&$persistentStore.write(s,t),this.isNode()&&this.node.fs.writeFileSync(t+".json",s,{flag:"w"},t=>console.log(t))}}}getRequestBody(){var t=$request.path;let s=this.id+"#"+t.replace("/","_");if(s=s.replace("?","#"),this.isSurge()||this.isLoon())return $persistentStore.read(s);if(this.isQuanX())return $prefs.valueForKey(s);if(this.isNode()){t=s+".json";if(!this.node.fs.existsSync(t))return JSON.parse(this.node.fs.readFileSync(t))}}initCache(){var t,s=this.getPersistKey();this.isQuanX()&&(this.cache=JSON.parse($prefs.valueForKey(s)||"{}")),(this.isLoon()||this.isSurge())&&(this.cache=JSON.parse($persistentStore.read(s)||"{}")),this.isNode()&&(this.node.fs.existsSync(t="root.json")||this.node.fs.writeFileSync(t,JSON.stringify({}),{flag:"wx"},t=>console.log(t)),this.root={},this.node.fs.existsSync(t=s+".json")?this.cache=JSON.parse(this.node.fs.readFileSync(s+".json")):(this.node.fs.writeFileSync(t,JSON.stringify({}),{flag:"wx"},t=>console.log(t)),this.cache={}))}getPersistKey(){return this.id+"#privateCache"}persistCache(){var t=this.getPersistKey(),s=JSON.stringify(this.cache,null,2);this.isQuanX()&&$prefs.setValueForKey(s,t),(this.isLoon()||this.isSurge())&&$persistentStore.write(s,t),this.isNode()&&(this.node.fs.writeFileSync(t+".json",s,{flag:"w"},t=>console.log(t)),this.node.fs.writeFileSync("root.json",JSON.stringify(this.root,null,2),{flag:"w"},t=>console.log(t)))}write(t,s){if(this.log("SET "+s),-1!==s.indexOf("#")){if(s=s.substr(1),isSurge||this.isLoon())return $persistentStore.write(t,s);if(this.isQuanX())return $prefs.setValueForKey(t,s);this.isNode()&&(this.root[s]=t)}else this.cache[s]=t;this.persistCache()}read(t){return this.log("READ "+t),-1!==t.indexOf("#")?(t=t.substr(1),this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?this.root[t]:void 0):this.cache[t]}delete(t){if(this.log("DELETE "+t),-1!==t.indexOf("#")){if(t=t.substr(1),this.isSurge()||this.isLoon())return $persistentStore.write(null,t);if(this.isQuanX())return $prefs.removeValueForKey(t);this.isNode()&&delete this.root[t]}else delete this.cache[t];this.persistCache()}getRealPath(t){var s;return this.isNode()?((s=process.argv.slice(1,2)[0].split("/"))[s.length-1]=t,s.join("/")):t}getUrlHost(t){return t.slice(0,t.indexOf("/",8))}getUrlPath(t){var s=t.lastIndexOf("/")===t.length-1?-1:void 0;return t.slice(t.indexOf("/",8),s)}async execComm(){if(this.isNode()){this.comm=process.argv.slice(1);let t=!1;"p"==this.comm[1]&&(this.isExecComm=!0,this.log(`开始执行指令【${this.comm[1]}】=> 发送到手机测试脚本!`),this.isEmpty(this.options)||this.isEmpty(this.options.httpApi)?(this.log("未设置options,使用默认值"),this.isEmpty(this.options)&&(this.options={}),this.options.httpApi="[email protected]:6166"):/.*?@.*?:[0-9]+/.test(this.options.httpApi)||(t=!0,this.log("❌httpApi格式错误!格式:[email protected]:6166"),this.done()),t||this.callApi(this.comm[2]))}}callApi(t){let i=this.comm[0],s=(this.log(`获取【${i}】内容传给手机`),"");this.fs=this.fs||require("fs"),this.path=this.path||require("path");var e=this.path.resolve(i),r=this.path.resolve(process.cwd(),i),o=this.fs.existsSync(e),h=!o&&this.fs.existsSync(r);if(o||h){h=o?e:r;try{s=this.fs.readFileSync(h)}catch(t){s=""}}else s="";o={url:`http://${this.options.httpApi.split("@")[1]}/v1/scripting/evaluate`,headers:{"X-Key":""+this.options.httpApi.split("@")[0]},body:{script_text:""+s,mock_type:"cron",timeout:!this.isEmpty(t)&&5<t?t:5},json:!0};this.post(o,(t,s,e)=>{this.log(`已将脚本【${i}】发给手机!`),this.done()})}getCallerFileNameAndLine(){let s;try{throw Error("")}catch(t){s=t}var t=s.stack.split("\n")[1];return this.path=this.path||require("path"),`[${t.substring(t.lastIndexOf(this.path.sep)+1,t.lastIndexOf(":"))}]`}getFunName(t){t=t.toString();return t=(t=t.substr("function ".length)).substr(0,t.indexOf("("))}boxJsJsonBuilder(s,r){if(this.isNode()){let i="/Users/lowking/Desktop/Scripts/lowking.boxjs.json";if(r&&r.hasOwnProperty("target_boxjs_json_path")&&(i=r.target_boxjs_json_path),this.fs.existsSync(i))if(this.isJsonObject(s)&&this.isJsonObject(r)){this.log("using node");var o=["settings","keys"],h="https://raw.githubusercontent.com/Orz-3";let e={},t="#lk{script_url}";if(r&&r.hasOwnProperty("script_url")&&(t=this.isEmpty(r.script_url)?"#lk{script_url}":r.script_url),e.id=""+this.prefix+this.id,e.name=this.name,e.desc_html=`⚠️使用说明</br>详情【<a href='${t}?raw=true'><font class='red--text'>点我查看</font></a>】`,e.icons=[h+`/mini/master/Alpha/${this.id.toLocaleLowerCase()}.png`,h+`/mini/master/Color/${this.id.toLocaleLowerCase()}.png`],e.keys=[],e.settings=[{id:this.prefix+"IsEnableLog"+this.id,name:"开启/关闭日志",val:!0,type:"boolean",desc:"默认开启"},{id:this.prefix+"NotifyOnlyFail"+this.id,name:"只当执行失败才通知",val:!1,type:"boolean",desc:"默认关闭"},{id:this.prefix+"IsEnableTgNotify"+this.id,name:"开启/关闭Telegram通知",val:!1,type:"boolean",desc:"默认关闭"},{id:this.prefix+"TgNotifyUrl"+this.id,name:"Telegram通知地址",val:"",type:"text",desc:"Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="}],e.author="#lk{author}",e.repo="#lk{repo}",e.script=t+"?raw=true",!this.isEmpty(s))for(var n in o){var a=o[n];if(!this.isEmpty(s[a])){if("settings"===a)for(let t=0;t<s[a].length;t++){var l=s[a][t];for(let t=0;t<e.settings.length;t++){var p=e.settings[t];l.id===p.id&&e.settings.splice(t,1)}}e[a]=e[a].concat(s[a])}delete s[a]}if(Object.assign(e,s),this.isNode()){this.fs=this.fs||require("fs"),this.path=this.path||require("path");var h=this.path.resolve(this.boxJsJsonFile),u=this.path.resolve(process.cwd(),this.boxJsJsonFile),c=this.fs.existsSync(h),f=!c&&this.fs.existsSync(u),d=JSON.stringify(e,null,"\t"),c=(!c&&f?this.fs.writeFileSync(u,d):this.fs.writeFileSync(h,d),JSON.parse(this.fs.readFileSync(i)));if(c.hasOwnProperty("apps")&&Array.isArray(c.apps)&&0<c.apps.length){f=c.apps,u=f.indexOf(f.filter(t=>t.id==e.id)[0]);0<=u?c.apps[u]=e:c.apps.push(e);let s=JSON.stringify(c,null,2);if(!this.isEmpty(r))for(const m in r){let t="";r.hasOwnProperty(m)?t=r[m]:"author"===m?t="@lowking":"repo"===m&&(t="https://github.com/lowking/Scripts"),s=s.replace(`#lk{${m}}`,t)}for(var g,y=/(?:#lk\{)(.+?)(?=\})/,S=(null!==y.exec(s)&&this.log("生成BoxJs还有未配置的参数,请参考https://github.com/lowking/Scripts/blob/master/util/example/ToolKitDemo.js#L17-L18传入参数:\n"),new Set);null!==(g=y.exec(s));)S.add(g[1]),s=s.replace(`#lk{${g[1]}}`,"");S.forEach(t=>{console.log(t+" ")}),this.fs.writeFileSync(i,s)}}}else this.log("构建BoxJsJson传入参数格式错误,请传入json对象")}}isJsonObject(t){return"object"==typeof t&&"[object object]"==Object.prototype.toString.call(t).toLowerCase()&&!t.length}appendNotifyInfo(t,s){1==s?this.notifyInfo=t:this.notifyInfo.push(t)}prependNotifyInfo(t){this.notifyInfo.splice(0,0,t)}execFail(){this.execStatus=!1}isRequest(){return"undefined"!=typeof $request}isSurge(){return"undefined"!=typeof $httpClient}isQuanX(){return"undefined"!=typeof $task}isLoon(){return"undefined"!=typeof $loon}isJSBox(){return"undefined"!=typeof $app&&"undefined"!=typeof $http}isStash(){return"undefined"!=typeof $environment&&$environment["stash-version"]}isNode(){return"function"==typeof require&&!this.isJSBox()}async sleep(s){return new Promise(t=>setTimeout(t,s))}async wait(s){return new Promise(t=>setTimeout(t,s))}async delay(s){return new Promise(t=>setTimeout(t,s))}log(t){this.isEnableLog&&console.log(""+this.logSeparator+t)}logErr(t){this.execStatus=!0,this.isEnableLog&&(console.log(""+this.logSeparator+this.name+"执行异常:"),console.log(t),console.log("\n"+t.message))}msg(t,s,e,i){if((this.isRequest()||!this.isNotifyOnlyFail||!this.execStatus)&&(this.isEmpty(s)&&(s=Array.isArray(this.notifyInfo)?this.notifyInfo.join("\n"):this.notifyInfo),!this.isEmpty(s)))if(this.isEnableTgNotify){for(var r in this.log(this.name+"Tg通知开始"),this.tgEscapeCharMapping)this.tgEscapeCharMapping.hasOwnProperty(r)&&(s=s.replace(r,this.tgEscapeCharMapping[r]));this.get({url:encodeURI(this.tgNotifyUrl+"📌"+this.name+"\n"+s)},(t,s,e)=>{this.log("Tg通知完毕")})}else{var o={},h=!this.isEmpty(e),n=!this.isEmpty(i);this.isQuanX()&&(h&&(o["open-url"]=e),n&&(o["media-url"]=i),$notify(this.name,t,s,o)),(this.isSurge()||this.isStash())&&(h&&(o.url=e),$notification.post(this.name,t,s,o)),this.isNode()&&this.log("⭐️"+this.name+"\n"+t+"\n"+s),this.isJSBox()&&$push.schedule({title:this.name,body:t?t+"\n"+s:s})}}pushWxMsg(t,s,e,i=()=>{}){s={appToken:"AT_rTc93GQYIdMU8XLRnoJaSea8WkfhSzhX",content:s,summary:t,contentType:1,topicIds:[],uids:["UID_6P4B00X6Zv8U2oKC0I2R09emxtqq"],url:"",verifyPay:!1},e&&(s.url=e),t=this.getJsonDoneHeaders(),t.Host="wxpusher.zjiecode.com",t["Content-Type"]="application/json;charset=UTF-8",e={url:"https://wxpusher.zjiecode.com/api/send/message",headers:t,body:JSON.stringify(s)};this.post(e,i)}getVal(t,s=""){let e;return(e=this.isSurge()||this.isLoon()||this.isStash()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loadData(),process.env[t]||this.data[t]):this.data&&this.data[t]||null)||s}setVal(t,s){return this.isSurge()||this.isLoon()||this.isStash()?$persistentStore.write(s,t):this.isQuanX()?$prefs.setValueForKey(s,t):this.isNode()?(this.data=this.loadData(),this.data[t]=s,this.writeData(),!0):this.data&&this.data[t]||null}loadData(){if(!this.isNode())return{};this.fs=this.fs||require("fs"),this.path=this.path||require("path");var t=this.path.resolve(this.dataFile),s=this.path.resolve(process.cwd(),this.dataFile),e=this.fs.existsSync(t),i=!e&&this.fs.existsSync(s);if(!e&&!i)return{};i=e?t:s;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}writeData(){var t,s,e,i,r;this.isNode()&&(this.fs=this.fs||require("fs"),this.path=this.path||require("path"),t=this.path.resolve(this.dataFile),s=this.path.resolve(process.cwd(),this.dataFile),i=!(e=this.fs.existsSync(t))&&this.fs.existsSync(s),r=JSON.stringify(this.data),!e&&i?this.fs.writeFileSync(s,r):this.fs.writeFileSync(t,r))}adapterStatus(t){return t&&(t.status?t.statusCode=t.status:t.statusCode&&(t.status=t.statusCode)),t}get(t,i=()=>{}){this.isQuanX()&&((t="string"==typeof t?{url:t}:t).method="GET",$task.fetch(t).then(t=>{i(null,this.adapterStatus(t),t.body)},t=>i(t.error,null,null))),(this.isSurge()||this.isLoon()||this.isStash())&&$httpClient.get(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)}),this.isNode()&&this.node.request(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)}),this.isJSBox()&&((t="string"==typeof t?{url:t}:t).header=t.headers,t.handler=function(t){let s=t.error,e=(s=s&&JSON.stringify(t.error),t.data);"object"==typeof e&&(e=JSON.stringify(t.data)),i(s,this.adapterStatus(t.response),e)},$http.get(t))}post(t,i=()=>{}){this.isQuanX()&&((t="string"==typeof t?{url:t}:t).method="POST",$task.fetch(t).then(t=>{i(null,this.adapterStatus(t),t.body)},t=>i(t.error,null,null))),(this.isSurge()||this.isLoon()||this.isStash())&&$httpClient.post(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)}),this.isNode()&&this.node.request.post(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)}),this.isJSBox()&&((t="string"==typeof t?{url:t}:t).header=t.headers,t.handler=function(t){let s=t.error,e=(s=s&&JSON.stringify(t.error),t.data);"object"==typeof e&&(e=JSON.stringify(t.data)),i(s,this.adapterStatus(t.response),e)},$http.post(t))}put(t,i=()=>{}){this.isQuanX()&&((t="string"==typeof t?{url:t}:t).method="PUT",$task.fetch(t).then(t=>{i(null,this.adapterStatus(t),t.body)},t=>i(t.error,null,null))),(this.isSurge()||this.isLoon()||this.isStash())&&(t.method="PUT",$httpClient.put(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)})),this.isNode()&&(t.method="PUT",this.node.request.put(t,(t,s,e)=>{i(t,this.adapterStatus(s),e)})),this.isJSBox()&&((t="string"==typeof t?{url:t}:t).header=t.headers,t.handler=function(t){let s=t.error,e=(s=s&&JSON.stringify(t.error),t.data);"object"==typeof e&&(e=JSON.stringify(t.data)),i(s,this.adapterStatus(t.response),e)},$http.post(t))}costTime(){let t=this.name+"执行完毕!";this.isNode()&&this.isExecComm&&(t=`指令【${this.comm[1]}】执行完毕!`);var s=(new Date).getTime()-this.startTime,e=s/1e3;this.execCount++,this.costTotalMs+=s,this.log(`${t}耗时【${e}】秒\n总共执行【${this.execCount}】次,平均耗时【${(this.costTotalMs/this.execCount/1e3).toFixed(4)}】秒`),this.setVal(this.costTotalStringKey,JSON.stringify(this.costTotalMs+","+this.execCount))}done(t={}){this.costTime(),(this.isSurge()||this.isQuanX()||this.isLoon()||this.isStash())&&$done(t)}getRequestUrl(){return $request.url}getResponseBody(){if($response)return $response.body}isGetCookie(t){return!("OPTIONS"==$request.method||!this.getRequestUrl().match(t))}isEmpty(t){return void 0===t||null==t||""==t||"null"==t||"undefined"==t||0===t.length}randomString(s){s=s||32;var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890",i=e.length,r="";for(let t=0;t<s;t++)r+=e.charAt(Math.floor(Math.random()*i));return r}autoComplete(s,t,e,i,r,o,h,n,a,l){if((s+="").length<r)for(;s.length<r;)0==o?s+=i:s=i+s;if(h){let t="";for(var p=0;p<n;p++)t+=l;s=s.substring(0,a)+t+s.substring(n+a)}return this.toDBC(s=t+s+e)}customReplace(t,s,e,i){try{for(var r in this.isEmpty(e)&&(e="#{"),this.isEmpty(i)&&(i="}"),s)t=t.replace(""+e+r+i,s[r])}catch(t){this.logErr(t)}return t}toDBC(t){for(var s="",e=0;e<t.length;e++)32==t.charCodeAt(e)?s+=String.fromCharCode(12288):t.charCodeAt(e)<127&&(s+=String.fromCharCode(t.charCodeAt(e)+65248));return s}hash(t){let s=0,e,i;for(e=0;e<t.length;e++)i=t.charCodeAt(e),s=(s<<5)-s+i,s|=0;return String(s)}formatDate(t,s){var e,i={"M+":t.getMonth()+1,"d+":t.getDate(),"H+":t.getHours(),"m+":t.getMinutes(),"s+":t.getSeconds(),"q+":Math.floor((t.getMonth()+3)/3),S:t.getMilliseconds()};for(e in/(y+)/.test(s)&&(s=s.replace(RegExp.$1,(t.getFullYear()+"").substr(4-RegExp.$1.length))),i)new RegExp("("+e+")").test(s)&&(s=s.replace(RegExp.$1,1==RegExp.$1.length?i[e]:("00"+i[e]).substr((""+i[e]).length)));return s}objToQueryStr(s,e){let i="";for(const r in s){let t=s[r];null!=t&&""!==t&&("object"==typeof t?t=JSON.stringify(t):e&&(t=encodeURIComponent(t)),i+=`${r}=${t}&`)}return i=i.substring(0,i.length-1)}parseQueryStr(t){var s={},e=(t=-1<t.indexOf("?")?t.split("?")[1]:t).split("&");for(let t=0;t<e.length;t++){var i=e[t].split("=");s[i[0]]=i[1]}return s}deepClone(t,s){for(var e in s=s||{},t)"object"==typeof t[e]?(s[e]=t[e].constructor===Array?[]:{},this.deepClone(t[e],s[e])):s[e]=t[e];return s}getBaseDoneHeaders(t={}){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"},t)}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"})}}(t,s,e)}
  475. //---SyncByPyScript---ToolKit-end