chavy.boxjs.js 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. const $ = new Env('BoxJs')
  2. // 为 eval 准备的上下文环境
  3. const $eval_env = {}
  4. $.version = '0.12.9'
  5. $.versionType = 'beta'
  6. // 发出的请求需要需要 Surge、QuanX 的 rewrite
  7. $.isNeedRewrite = true
  8. /**
  9. * ===================================
  10. * 持久化属性: BoxJs 自有的数据结构
  11. * ===================================
  12. */
  13. // 存储`用户偏好`
  14. $.KEY_usercfgs = 'chavy_boxjs_userCfgs'
  15. // 存储`应用会话`
  16. $.KEY_sessions = 'chavy_boxjs_sessions'
  17. // 存储`页面缓存`
  18. $.KEY_web_cache = 'chavy_boxjs_web_cache'
  19. // 存储`应用订阅缓存`
  20. $.KEY_app_subCaches = 'chavy_boxjs_app_subCaches'
  21. // 存储`全局备份` (弃用, 改用 `chavy_boxjs_backups`)
  22. $.KEY_globalBaks = 'chavy_boxjs_globalBaks'
  23. // 存储`备份索引`
  24. $.KEY_backups = 'chavy_boxjs_backups'
  25. // 存储`当前会话` (配合切换会话, 记录当前切换到哪个会话)
  26. $.KEY_cursessions = 'chavy_boxjs_cur_sessions'
  27. /**
  28. * ===================================
  29. * 持久化属性: BoxJs 公开的数据结构
  30. * ===================================
  31. */
  32. // 存储用户访问`BoxJs`时使用的域名
  33. $.KEY_boxjs_host = 'boxjs_host'
  34. // 请求响应体 (返回至页面的结果)
  35. $.json = $.name // `接口`类请求的响应体
  36. $.html = $.name // `页面`类请求的响应体
  37. // 页面源码地址
  38. $.web = `https://cdn.jsdelivr.net/gh/chavyleung/scripts@${
  39. $.version
  40. }/box/chavy.boxjs.html?_=${new Date().getTime()}`
  41. // 版本说明地址 (Release Note)
  42. $.ver = `https://raw.githubusercontent.com/chavyleung/scripts/master/box/release/box.release.json`
  43. !(async () => {
  44. // 勿扰模式
  45. $.isMute = [true, 'true'].includes($.getdata('@chavy_boxjs_userCfgs.isMute'))
  46. // 请求路径
  47. $.path = getPath($request.url)
  48. // 请求类型: GET
  49. $.isGet = $request.method === 'GET'
  50. // 请求类型: POST
  51. $.isPost = $request.method === 'POST'
  52. // 请求类型: OPTIONS
  53. $.isOptions = $request.method === 'OPTIONS'
  54. // 请求类型: page、api、query
  55. $.type = 'page'
  56. // 查询请求: /query/xxx
  57. $.isQuery = $.isGet && /^\/query\/.*?/.test($.path)
  58. // 接口请求: /api/xxx
  59. $.isApi = $.isPost && /^\/api\/.*?/.test($.path)
  60. // 页面请求: /xxx
  61. $.isPage = $.isGet && !$.isQuery && !$.isApi
  62. // 升级用户数据
  63. upgradeUserData()
  64. // 升级备份数据
  65. upgradeGlobalBaks()
  66. // 处理预检请求
  67. if ($.isOptions) {
  68. $.type = 'options'
  69. await handleOptions()
  70. }
  71. // 处理`页面`请求
  72. else if ($.isPage) {
  73. $.type = 'page'
  74. await handlePage()
  75. }
  76. // 处理`查询`请求
  77. else if ($.isQuery) {
  78. $.type = 'query'
  79. await handleQuery()
  80. }
  81. // 处理`接口`请求
  82. else if ($.isApi) {
  83. $.type = 'api'
  84. await handleApi()
  85. }
  86. })()
  87. .catch((e) => $.logErr(e))
  88. .finally(() => doneBox())
  89. /**
  90. * http://boxjs.com/ => `http://boxjs.com`
  91. * http://boxjs.com/app/jd => `http://boxjs.com`
  92. */
  93. function getHost(url) {
  94. return url.slice(0, url.indexOf('/', 8))
  95. }
  96. /**
  97. * http://boxjs.com/ => ``
  98. * http://boxjs.com/api/getdata => `/api/getdata`
  99. */
  100. function getPath(url) {
  101. // 如果以`/`结尾, 去掉最后一个`/`
  102. const end = url.lastIndexOf('/') === url.length - 1 ? -1 : undefined
  103. // slice第二个参数传 undefined 会直接截到最后
  104. // indexOf第二个参数用来跳过前面的 "https://"
  105. return url.slice(url.indexOf('/', 8), end)
  106. }
  107. /**
  108. * ===================================
  109. * 处理前端请求
  110. * ===================================
  111. */
  112. /**
  113. * 处理`页面`请求
  114. */
  115. async function handlePage() {
  116. // 获取 BoxJs 数据
  117. const boxdata = getBoxData()
  118. boxdata.syscfgs.isDebugMode = false
  119. console.log(`[WARN] handlePage: $.web = : ${$.web}`)
  120. // 调试模式: 是否每次都获取新的页面
  121. const isDebugWeb = [true, 'true'].includes(
  122. $.getdata('@chavy_boxjs_userCfgs.isDebugWeb')
  123. ) || true;
  124. let debugger_web = $.getdata('@chavy_boxjs_userCfgs.debugger_web');
  125. debugger_web = "http://git.jojo21.cf/shawenguan/Quantumult-X/raw/master/Scripts/box/chavy.boxjs.html";
  126. const cache = $.getjson($.KEY_web_cache, null)
  127. // 如果没有开启调试模式,且当前版本与缓存版本一致,且直接取缓存
  128. if (!isDebugWeb && cache && cache.version === $.version) {
  129. $.html = cache.cache
  130. }
  131. // 如果开启了调试模式,并指定了 `debugger_web` 则从指定的地址获取页面
  132. else {
  133. if (isDebugWeb && debugger_web) {
  134. // 调试地址后面拼时间缀, 避免 GET 缓存
  135. const isQueryUrl = debugger_web.includes('?')
  136. $.web = `${debugger_web}${
  137. isQueryUrl ? '&' : '?'
  138. }_=${new Date().getTime()}`
  139. boxdata.syscfgs.isDebugMode = true
  140. console.log(`[WARN] 调试模式: $.web = : ${$.web}`)
  141. }
  142. // 如果调用这个方法来获取缓存, 且标记为`非调试模式`
  143. const getcache = () => {
  144. console.log(`[ERROR] 调试模式: 正在使用缓存的页面!`)
  145. boxdata.syscfgs.isDebugMode = false
  146. return $.getjson($.KEY_web_cache).cache
  147. }
  148. await $.http.get($.web).then(
  149. (resp) => {
  150. if (/<title>BoxJs<\/title>/.test(resp.body)) {
  151. // 返回页面源码, 并马上存储到持久化仓库
  152. $.html = resp.body
  153. const cache = { version: $.version, cache: $.html }
  154. $.setjson(cache, $.KEY_web_cache)
  155. } else {
  156. // 如果返回的页面源码不是预期的, 则从持久化仓库中获取
  157. $.html = getcache()
  158. }
  159. },
  160. // 如果获取页面源码失败, 则从持久化仓库中获取
  161. () => ($.html = getcache())
  162. )
  163. }
  164. // 根据偏好设置, 替换首屏颜色 (如果是`auto`则交由页面自适应)
  165. const theme = $.getdata('@chavy_boxjs_userCfgs.theme')
  166. if (theme === 'light') {
  167. $.html = $.html.replace('#121212', '#fff')
  168. } else if (theme === 'dark') {
  169. $.html = $.html.replace('#fff', '#121212')
  170. }
  171. /**
  172. * 后端渲染数据, 感谢 https://t.me/eslint 提供帮助
  173. *
  174. * 如果直接渲染到 box: null 会出现双向绑定问题
  175. * 所以先渲染到 `boxServerData: null` 再由前端 `this.box = this.boxServerData` 实现双向绑定
  176. */
  177. $.html = $.html.replace(
  178. 'boxServerData: null',
  179. 'boxServerData:' + JSON.stringify(boxdata)
  180. )
  181. // 调试模式支持 vue Devtools (只有在同时开启调试模式和指定了调试地址才生效)
  182. // vue.min.js 生效时, 会导致 @click="window.open()" 报 "window" is not defined 错误
  183. if (isDebugWeb && debugger_web) {
  184. $.html = $.html.replace('vue.min.js', 'vue.js')
  185. }
  186. }
  187. /**
  188. * 处理`查询`请求
  189. */
  190. async function handleQuery() {
  191. const [, query] = $.path.split('/query')
  192. if (/^\/boxdata/.test(query)) {
  193. $.json = getBoxData()
  194. } else if (/^\/baks/.test(query)) {
  195. const [, backupId] = query.split('/baks/')
  196. $.json = $.getjson(backupId)
  197. } else if (/^\/versions$/.test(query)) {
  198. await getVersions(true)
  199. } else if (/^\/data/.test(query)) {
  200. // TODO 记录每次查询的 key 至 usercfgs.viewkeys
  201. const [, dataKey] = query.split('/data/')
  202. $.json = {
  203. key: dataKey,
  204. val: $.getdata(dataKey)
  205. }
  206. }
  207. }
  208. /**
  209. * 处理 API 请求
  210. */
  211. async function handleApi() {
  212. const [, api] = $.path.split('/api')
  213. console.log("handleApi:"+api);
  214. if (api === '/save') {
  215. await apiSave()
  216. } else if (api === '/addAppSub') {
  217. await apiAddAppSub()
  218. } else if (api === '/reloadAppSub') {
  219. await apiReloadAppSub()
  220. } else if (api === '/delGlobalBak') {
  221. await apiDelGlobalBak()
  222. } else if (api === '/updateGlobalBak') {
  223. await apiUpdateGlobalBak()
  224. } else if (api === '/saveGlobalBak') {
  225. await apiSaveGlobalBak()
  226. } else if (api === '/impGlobalBak') {
  227. await apiImpGlobalBak()
  228. } else if (api === '/revertGlobalBak') {
  229. await apiRevertGlobalBak()
  230. } else if (api === '/runScript') {
  231. await apiRunScript()
  232. } else if (api === '/saveData') {
  233. await apiSaveData()
  234. }
  235. }
  236. async function handleOptions() {}
  237. /**
  238. * ===================================
  239. * 获取基础数据
  240. * ===================================
  241. */
  242. function getBoxData() {
  243. const datas = {}
  244. const usercfgs = getUserCfgs()
  245. const sessions = getAppSessions()
  246. const curSessions = getCurSessions()
  247. const sysapps = getSystemApps()
  248. const syscfgs = getSystemCfgs()
  249. const appSubCaches = getAppSubCaches()
  250. const globalbaks = getGlobalBaks()
  251. // 把 `内置应用`和`订阅应用` 里需要持久化属性放到`datas`
  252. sysapps.forEach((app) => Object.assign(datas, getAppDatas(app)))
  253. usercfgs.appsubs.forEach((sub) => {
  254. const subcache = appSubCaches[sub.url]
  255. if (subcache && subcache.apps && Array.isArray(subcache.apps)) {
  256. subcache.apps.forEach((app) => Object.assign(datas, getAppDatas(app)))
  257. }
  258. })
  259. const box = {
  260. datas,
  261. usercfgs,
  262. sessions,
  263. curSessions,
  264. sysapps,
  265. syscfgs,
  266. appSubCaches,
  267. globalbaks
  268. }
  269. return box
  270. }
  271. /**
  272. * 获取系统配置
  273. */
  274. function getSystemCfgs() {
  275. // prettier-ignore
  276. return {
  277. env: $.isStash() ? 'Stash' : $.isShadowrocket() ? 'Shadowrocket' : $.isLoon() ? 'Loon' : $.isQuanX() ? 'QuanX' : $.isSurge() ? 'Surge' : 'Node',
  278. version: $.version,
  279. versionType: $.versionType,
  280. envs: [
  281. { id: 'Surge', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/surge.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/surge.png'] },
  282. { id: 'QuanX', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/quanX.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/quantumultx.png'] },
  283. { id: 'Loon', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/loon.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/loon.png'] },
  284. { id: 'Shadowrocket', icons: ['https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/shadowrocket.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/shadowrocket.png'] },
  285. { id: 'Stash', icons: ['https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/stash.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/stash.png'] }
  286. ],
  287. chavy: { id: 'ChavyLeung', icon: 'https://avatars3.githubusercontent.com/u/29748519', repo: 'https://github.com/chavyleung/scripts' },
  288. senku: { id: 'GideonSenku', icon: 'https://avatars1.githubusercontent.com/u/39037656', repo: 'https://github.com/GideonSenku' },
  289. id77: { id: 'id77', icon: 'https://avatars0.githubusercontent.com/u/9592236', repo: 'https://github.com/id77' },
  290. orz3: { id: 'Orz-3', icon: 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/Orz-3.png', repo: 'https://github.com/Orz-3/' },
  291. boxjs: { id: 'BoxJs', show: false, icon: 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/box.png', icons: ['https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/box.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/box.png'], repo: 'https://github.com/chavyleung/scripts' },
  292. defaultIcons: ['https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/appstore.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/appstore.png']
  293. }
  294. }
  295. /**
  296. * 获取内置应用
  297. */
  298. function getSystemApps() {
  299. // prettier-ignore
  300. const sysapps = [
  301. {
  302. id: 'BoxSetting',
  303. name: '偏好设置',
  304. descs: ['可手动执行一些抹掉数据的脚本', '可设置明暗两种主题下的主色调', '可设置壁纸清单'],
  305. keys: [
  306. '@chavy_boxjs_userCfgs.httpapi',
  307. '@chavy_boxjs_userCfgs.bgimg',
  308. '@chavy_boxjs_userCfgs.http_backend',
  309. '@chavy_boxjs_userCfgs.color_dark_primary',
  310. '@chavy_boxjs_userCfgs.color_light_primary'
  311. ],
  312. settings: [
  313. { id: '@chavy_boxjs_userCfgs.httpapis', name: 'HTTP-API (Surge)', val: '', type: 'textarea', placeholder: ',[email protected]:6166', autoGrow: true, rows: 2, persistentHint:true, desc: '示例: ,[email protected]:6166! 注意: 以逗号开头, 逗号分隔多个地址, 可加回车' },
  314. { id: '@chavy_boxjs_userCfgs.httpapi_timeout', name: 'HTTP-API Timeout (Surge)', val: 20, type: 'number', persistentHint:true, desc: '如果脚本作者指定了超时时间, 会优先使用脚本指定的超时时间.' },
  315. { id: '@chavy_boxjs_userCfgs.http_backend', name: 'HTTP Backend (Quantumult X)', val: '', type: 'text',placeholder: 'http://127.0.0.1:9999', persistentHint:true, desc: '示例: http://127.0.0.1:9999 ! 注意: 必须是以 http 开头的完整路径, 不能是 / 结尾' },
  316. { id: '@chavy_boxjs_userCfgs.bgimgs', name: '背景图片清单', val: '无,\n跟随系统,跟随系统\nlight,http://api.btstu.cn/sjbz/zsy.php\ndark,https://uploadbeta.com/api/pictures/random\n妹子,http://api.btstu.cn/sjbz/zsy.php', type: 'textarea', placeholder: '无,{回车} 跟随系统,跟随系统{回车} light,图片地址{回车} dark,图片地址{回车} 妹子,图片地址', persistentHint:true, autoGrow: true, rows: 2, desc: '逗号分隔名字和链接, 回车分隔多个地址' },
  317. { id: '@chavy_boxjs_userCfgs.bgimg', name: '背景图片', val: '', type: 'text', placeholder: 'http://api.btstu.cn/sjbz/zsy.php', persistentHint:true, desc: '输入背景图标的在线链接' },
  318. { id: '@chavy_boxjs_userCfgs.changeBgImgEnterDefault', name: '手势进入壁纸模式默认背景图片', val: '', type: 'text', placeholder: '填写上面背景图片清单的值', persistentHint:true, desc: '' },
  319. { id: '@chavy_boxjs_userCfgs.changeBgImgOutDefault', name: '手势退出壁纸模式默认背景图片', val: '', type: 'text', placeholder: '填写上面背景图片清单的值', persistentHint:true, desc: '' },
  320. { id: '@chavy_boxjs_userCfgs.color_light_primary', name: '明亮色调', canvas: true, val: '#F7BB0E', type: 'colorpicker', desc: '' },
  321. { id: '@chavy_boxjs_userCfgs.color_dark_primary', name: '暗黑色调', canvas: true, val: '#2196F3', type: 'colorpicker', desc: '' }
  322. ],
  323. scripts: [
  324. {
  325. name: "抹掉:所有缓存",
  326. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.caches.js"
  327. },
  328. {
  329. name: "抹掉:收藏应用",
  330. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.favapps.js"
  331. },
  332. {
  333. name: "抹掉:用户偏好",
  334. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.js"
  335. },
  336. {
  337. name: "抹掉:所有会话",
  338. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.sessions.js"
  339. },
  340. {
  341. name: "抹掉:所有备份",
  342. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.baks.js"
  343. },
  344. {
  345. name: "抹掉:BoxJs (注意备份)",
  346. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.boxjs.js"
  347. }
  348. ],
  349. author: '@chavyleung',
  350. repo: 'https://github.com/chavyleung/scripts/blob/master/box/switcher/box.switcher.js',
  351. icons: [
  352. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSetting.mini.png',
  353. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSetting.png'
  354. ]
  355. },
  356. {
  357. id: 'BoxSwitcher',
  358. name: '会话切换',
  359. desc: '打开静默运行后, 切换会话将不再发出系统通知 \n注: 不影响日志记录',
  360. keys: [],
  361. settings: [{ id: 'CFG_BoxSwitcher_isSilent', name: '静默运行', val: false, type: 'boolean', desc: '切换会话时不发出系统通知!' }],
  362. author: '@chavyleung',
  363. repo: 'https://github.com/chavyleung/scripts/blob/master/box/switcher/box.switcher.js',
  364. icons: [
  365. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSwitcher.mini.png',
  366. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSwitcher.png'
  367. ],
  368. script: 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/switcher/box.switcher.js'
  369. },
  370. {
  371. "id": "BoxGist",
  372. "name": "Gist备份",
  373. "keys": ["@gist.token", "@gist.username"],
  374. "author": "@dompling",
  375. "repo": "https://github.com/dompling/Script/tree/master/gist",
  376. "icons": [
  377. "https://raw.githubusercontent.com/Former-Years/icon/master/github-bf.png",
  378. "https://raw.githubusercontent.com/Former-Years/icon/master/github-bf.png"
  379. ],
  380. "descs_html": [
  381. "脚本由 <a href='https://github.com/dompling' target='_blank'>@dompling</a> 提供, 感谢!",
  382. "<br />",
  383. "<b>Token</b> 获取方式:",
  384. "<span style='margin-left: 40px'>头像菜单 -></span>",
  385. "<span style='margin-left: 40px'>Settings -></span>",
  386. "<span style='margin-left: 40px'>Developer settings -></span>",
  387. "<span style='margin-left: 40px'>Personal access tokens -></span>",
  388. "<span style='margin-left: 40px'>Generate new token -></span>",
  389. "<span style='margin-left: 40px'>在里面找到 gist 勾选提交</span>"
  390. ],
  391. "scripts": [
  392. {
  393. "name": "备份 Gist",
  394. "script": "https://raw.githubusercontent.com/dompling/Script/master/gist/backup.js"
  395. },
  396. {
  397. "name": "从 Gist 恢复",
  398. "script": "https://raw.githubusercontent.com/dompling/Script/master/gist/restore.js"
  399. }
  400. ],
  401. "settings": [
  402. {
  403. "id": "@gist.username",
  404. "name": "用户名",
  405. "val": null,
  406. "type": "text",
  407. "placeholder": "github 用户名",
  408. "desc": "必填"
  409. },
  410. {
  411. "id": "@gist.token",
  412. "name": "Personal access tokens",
  413. "val": null,
  414. "type": "text",
  415. "placeholder": "github personal access tokens",
  416. "desc": "必填"
  417. }
  418. ]
  419. }
  420. ]
  421. return sysapps
  422. }
  423. /**
  424. * 获取用户配置
  425. */
  426. function getUserCfgs() {
  427. const defcfgs = {
  428. favapps: [],
  429. appsubs: [],
  430. viewkeys: [],
  431. isPinedSearchBar: true,
  432. httpapi: '[email protected]:6166',
  433. http_backend: ''
  434. }
  435. const usercfgs = Object.assign(defcfgs, $.getjson($.KEY_usercfgs, {}))
  436. // 处理异常数据:删除所有为 null 的订阅
  437. if (usercfgs.appsubs.includes(null)) {
  438. usercfgs.appsubs = usercfgs.appsubs.filter((sub) => sub)
  439. $.setjson(usercfgs, $.KEY_usercfgs)
  440. }
  441. return usercfgs
  442. }
  443. /**
  444. * 获取`应用订阅`缓存
  445. */
  446. function getAppSubCaches() {
  447. return $.getjson($.KEY_app_subCaches, {})
  448. }
  449. /**
  450. * 获取全局备份列表
  451. */
  452. function getGlobalBaks() {
  453. let backups = $.getjson($.KEY_backups, [])
  454. // 处理异常数据:删除所有为 null 的备份
  455. if (backups.includes(null)) {
  456. backups = backups.filter((bak) => bak)
  457. $.setjson(backups, $.KEY_backups)
  458. }
  459. return backups
  460. }
  461. /**
  462. * 获取版本清单
  463. */
  464. function getVersions() {
  465. return $.http.get($.ver).then(
  466. (resp) => {
  467. try {
  468. $.json = $.toObj(resp.body)
  469. } catch {
  470. $.json = {}
  471. }
  472. },
  473. () => ($.json = {})
  474. )
  475. }
  476. /**
  477. * 获取用户应用
  478. */
  479. function getUserApps() {
  480. // TODO 用户可在 BoxJs 中自定义应用, 格式与应用订阅一致
  481. return []
  482. }
  483. /**
  484. * 获取应用会话
  485. */
  486. function getAppSessions() {
  487. return $.getjson($.KEY_sessions, []) || []
  488. }
  489. /**
  490. * 获取当前切换到哪个会话
  491. */
  492. function getCurSessions() {
  493. return $.getjson($.KEY_cursessions, {}) || {}
  494. }
  495. /**
  496. * ===================================
  497. * 接口类函数
  498. * ===================================
  499. */
  500. function getAppDatas(app) {
  501. const datas = {}
  502. const nulls = [null, undefined, 'null', 'undefined']
  503. if (app.keys && Array.isArray(app.keys)) {
  504. app.keys.forEach((key) => {
  505. const val = $.getdata(key)
  506. datas[key] = nulls.includes(val) ? null : val
  507. })
  508. }
  509. if (app.settings && Array.isArray(app.settings)) {
  510. app.settings.forEach((setting) => {
  511. const key = setting.id
  512. const val = $.getdata(key)
  513. datas[key] = nulls.includes(val) ? null : val
  514. })
  515. }
  516. return datas
  517. }
  518. async function apiSave() {
  519. const data = $.toObj($request.body)
  520. if (Array.isArray(data)) {
  521. data.forEach((dat) => $.setdata(dat.val, dat.key))
  522. } else {
  523. $.setdata(data.val, data.key)
  524. }
  525. $.json = getBoxData()
  526. }
  527. async function apiAddAppSub() {
  528. const sub = $.toObj($request.body)
  529. // 添加订阅
  530. const usercfgs = getUserCfgs()
  531. usercfgs.appsubs.push(sub)
  532. $.setjson(usercfgs, $.KEY_usercfgs)
  533. // 加载订阅缓存
  534. await reloadAppSubCache(sub.url)
  535. $.json = getBoxData()
  536. }
  537. async function apiReloadAppSub() {
  538. const sub = $.toObj($request.body)
  539. if (sub) {
  540. await reloadAppSubCache(sub.url)
  541. } else {
  542. await reloadAppSubCaches()
  543. }
  544. $.json = getBoxData()
  545. }
  546. async function apiDelGlobalBak() {
  547. const backup = $.toObj($request.body)
  548. const backups = $.getjson($.KEY_backups, [])
  549. const bakIdx = backups.findIndex((b) => b.id === backup.id)
  550. if (bakIdx > -1) {
  551. backups.splice(bakIdx, 1)
  552. $.setdata('', backup.id)
  553. $.setjson(backups, $.KEY_backups)
  554. }
  555. $.json = getBoxData()
  556. }
  557. async function apiUpdateGlobalBak() {
  558. const { id: backupId, name: backupName } = $.toObj($request.body)
  559. const backups = $.getjson($.KEY_backups, [])
  560. const backup = backups.find((b) => b.id === backupId)
  561. if (backup) {
  562. backup.name = backupName
  563. $.setjson(backups, $.KEY_backups)
  564. }
  565. $.json = getBoxData()
  566. }
  567. async function apiRevertGlobalBak() {
  568. const { id: bakcupId } = $.toObj($request.body)
  569. const backup = $.getjson(bakcupId)
  570. if (backup) {
  571. const {
  572. chavy_boxjs_sysCfgs,
  573. chavy_boxjs_sysApps,
  574. chavy_boxjs_sessions,
  575. chavy_boxjs_userCfgs,
  576. chavy_boxjs_cur_sessions,
  577. chavy_boxjs_app_subCaches,
  578. ...datas
  579. } = backup
  580. $.setdata(JSON.stringify(chavy_boxjs_sessions), $.KEY_sessions)
  581. $.setdata(JSON.stringify(chavy_boxjs_userCfgs), $.KEY_usercfgs)
  582. $.setdata(JSON.stringify(chavy_boxjs_cur_sessions), $.KEY_cursessions)
  583. $.setdata(JSON.stringify(chavy_boxjs_app_subCaches), $.KEY_app_subCaches)
  584. const isNull = (val) =>
  585. [undefined, null, 'null', 'undefined', ''].includes(val)
  586. Object.keys(datas).forEach((datkey) =>
  587. $.setdata(isNull(datas[datkey]) ? '' : `${datas[datkey]}`, datkey)
  588. )
  589. }
  590. const boxdata = getBoxData()
  591. $.json = boxdata
  592. }
  593. async function apiSaveGlobalBak() {
  594. const backups = $.getjson($.KEY_backups, [])
  595. const boxdata = getBoxData()
  596. const backup = $.toObj($request.body)
  597. const backupData = {}
  598. backupData['chavy_boxjs_userCfgs'] = boxdata.usercfgs
  599. backupData['chavy_boxjs_sessions'] = boxdata.sessions
  600. backupData['chavy_boxjs_cur_sessions'] = boxdata.curSessions
  601. backupData['chavy_boxjs_app_subCaches'] = boxdata.appSubCaches
  602. Object.assign(backupData, boxdata.datas)
  603. backups.push(backup)
  604. $.setjson(backups, $.KEY_backups)
  605. $.setjson(backupData, backup.id)
  606. $.json = getBoxData()
  607. }
  608. async function apiImpGlobalBak() {
  609. const backups = $.getjson($.KEY_backups, [])
  610. const backup = $.toObj($request.body)
  611. const backupData = backup.bak
  612. delete backup.bak
  613. backups.push(backup)
  614. $.setjson(backups, $.KEY_backups)
  615. $.setjson(backupData, backup.id)
  616. $.json = getBoxData()
  617. }
  618. async function apiRunScript() {
  619. // 取消勿扰模式
  620. $.isMute = false
  621. const opts = $.toObj($request.body)
  622. const httpapi = $.getdata('@chavy_boxjs_userCfgs.httpapi')
  623. const ishttpapi = /.*?@.*?:[0-9]+/.test(httpapi)
  624. let script_text = null
  625. if (opts.isRemote) {
  626. await $.getScript(opts.url).then((script) => (script_text = script))
  627. } else {
  628. script_text = opts.script
  629. }
  630. if (
  631. $.isSurge() &&
  632. !$.isLoon() &&
  633. !$.isShadowrocket() &&
  634. !$.isStash() &&
  635. ishttpapi
  636. ) {
  637. const runOpts = { timeout: opts.timeout }
  638. await $.runScript(script_text, runOpts).then(
  639. (resp) => ($.json = JSON.parse(resp))
  640. )
  641. } else {
  642. await new Promise((resolve) => {
  643. $eval_env.resolve = resolve
  644. // 避免被执行脚本误认为是 rewrite 环境
  645. // 所以需要 `$request = undefined`
  646. $eval_env.request = $request
  647. $request = undefined
  648. // 重写 console.log, 把日志记录到 $eval_env.cached_logs
  649. $eval_env.cached_logs = []
  650. console.cloned_log = console.log
  651. console.log = (l) => {
  652. console.cloned_log(l)
  653. $eval_env.cached_logs.push(l)
  654. }
  655. // 重写脚本内的 $done, 调用 $done() 即是调用 $eval_env.resolve()
  656. script_text = script_text.replace(/\$done/g, '$eval_env.resolve')
  657. script_text = script_text.replace(/\$\.done/g, '$eval_env.resolve')
  658. try {
  659. eval(script_text)
  660. } catch (e) {
  661. $eval_env.cached_logs.push(e)
  662. resolve()
  663. }
  664. })
  665. // 还原 console.log
  666. console.log = console.cloned_log
  667. // 还原 $request
  668. $request = $eval_env.request
  669. // 返回数据
  670. $.json = {
  671. result: '',
  672. output: $eval_env.cached_logs.join('\n')
  673. }
  674. }
  675. }
  676. async function apiSaveData() {
  677. const { key: dataKey, val: dataVal } = $.toObj($request.body)
  678. $.setdata(dataVal, dataKey)
  679. $.json = {
  680. key: dataKey,
  681. val: $.getdata(dataKey)
  682. }
  683. }
  684. /**
  685. * ===================================
  686. * 工具类函数
  687. * ===================================
  688. */
  689. function reloadAppSubCache(url) {
  690. // 地址后面拼时间缀, 避免 GET 缓存
  691. const requrl = `${url}${
  692. url.includes('?') ? '&' : '?'
  693. }_=${new Date().getTime()}`
  694. return $.http.get(requrl).then((resp) => {
  695. try {
  696. const subcaches = getAppSubCaches()
  697. subcaches[url] = $.toObj(resp.body)
  698. subcaches[url].updateTime = new Date()
  699. $.setjson(subcaches, $.KEY_app_subCaches)
  700. $.log(`更新订阅, 成功! ${url}`)
  701. } catch (e) {
  702. $.logErr(e)
  703. $.log(`更新订阅, 失败! ${url}`)
  704. }
  705. })
  706. }
  707. async function reloadAppSubCaches() {
  708. $.msg($.name, '更新订阅: 开始!')
  709. const reloadActs = []
  710. const usercfgs = getUserCfgs()
  711. usercfgs.appsubs.forEach((sub) => {
  712. reloadActs.push(reloadAppSubCache(sub.url))
  713. })
  714. await Promise.all(reloadActs)
  715. $.log(`全部订阅, 完成!`)
  716. const endTime = new Date().getTime()
  717. const costTime = (endTime - $.startTime) / 1000
  718. $.msg($.name, `更新订阅: 完成! 🕛 ${costTime} 秒`)
  719. }
  720. function upgradeUserData() {
  721. const usercfgs = getUserCfgs()
  722. // 如果存在`usercfgs.appsubCaches`则需要升级数据
  723. const isNeedUpgrade = !!usercfgs.appsubCaches
  724. if (isNeedUpgrade) {
  725. // 迁移订阅缓存至独立的持久化空间
  726. $.setjson(usercfgs.appsubCaches, $.KEY_app_subCaches)
  727. // 移除用户偏好中的订阅缓存
  728. delete usercfgs.appsubCaches
  729. usercfgs.appsubs.forEach((sub) => {
  730. delete sub._raw
  731. delete sub.apps
  732. delete sub.isErr
  733. delete sub.updateTime
  734. })
  735. }
  736. if (isNeedUpgrade) {
  737. $.setjson(usercfgs, $.KEY_usercfgs)
  738. }
  739. }
  740. /**
  741. * 升级备份数据
  742. *
  743. * 升级前: 把所有备份都存到一个持久化空间
  744. * 升级后: 把每个备份都独立存到一个空间, `$.KEY_backups` 仅记录必要的数据索引
  745. */
  746. function upgradeGlobalBaks() {
  747. let oldbaks = $.getdata($.KEY_globalBaks)
  748. let newbaks = $.getjson($.KEY_backups, [])
  749. const isEmpty = (bak) => [undefined, null, ''].includes(bak)
  750. const isExistsInNew = (backupId) => newbaks.find((bak) => bak.id === backupId)
  751. // 存在旧备份数据时, 升级备份数据格式
  752. if (!isEmpty(oldbaks)) {
  753. oldbaks = JSON.parse(oldbaks)
  754. oldbaks.forEach((bak) => {
  755. if (isEmpty(bak)) return
  756. if (isEmpty(bak.bak)) return
  757. if (isExistsInNew(bak.id)) return
  758. console.log(`正在迁移: ${bak.name}`)
  759. const backupId = bak.id
  760. const backupData = bak.bak
  761. // 删除旧的备份数据, 仅保留索引信息
  762. delete bak.bak
  763. newbaks.push(bak)
  764. // 提取旧备份数据, 存入独立的持久化空间
  765. $.setjson(backupData, backupId)
  766. })
  767. $.setjson(newbaks, $.KEY_backups)
  768. }
  769. // 清空所有旧备份的数据
  770. $.setdata('', $.KEY_globalBaks)
  771. }
  772. /**
  773. * ===================================
  774. * 结束类函数
  775. * ===================================
  776. */
  777. function doneBox() {
  778. // 记录当前使用哪个域名访问
  779. $.setdata(getHost($request.url), $.KEY_boxjs_host)
  780. if ($.isOptions) doneOptions()
  781. else if ($.isPage) donePage()
  782. else if ($.isQuery) doneQuery()
  783. else if ($.isApi) doneApi()
  784. else $.done()
  785. }
  786. function getBaseDoneHeaders(mixHeaders = {}) {
  787. return Object.assign(
  788. {
  789. 'Access-Control-Allow-Origin': '*',
  790. 'Access-Control-Allow-Methods': 'POST,GET,OPTIONS,PUT,DELETE',
  791. 'Access-Control-Allow-Headers':
  792. 'Origin, X-Requested-With, Content-Type, Accept'
  793. },
  794. mixHeaders
  795. )
  796. }
  797. function getHtmlDoneHeaders() {
  798. return getBaseDoneHeaders({
  799. 'Content-Type': 'text/html;charset=UTF-8'
  800. })
  801. }
  802. function getJsonDoneHeaders() {
  803. return getBaseDoneHeaders({
  804. 'Content-Type': 'text/json; charset=utf-8'
  805. })
  806. }
  807. function doneOptions() {
  808. const headers = getBaseDoneHeaders()
  809. if ($.isQuanX()) $.done({ headers })
  810. else $.done({ response: { headers } })
  811. }
  812. function donePage() {
  813. const headers = getHtmlDoneHeaders()
  814. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.html })
  815. else $.done({ response: { status: 200, headers, body: $.html } })
  816. }
  817. function doneQuery() {
  818. $.json = $.toStr($.json)
  819. const headers = getJsonDoneHeaders()
  820. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.json })
  821. else $.done({ response: { status: 200, headers, body: $.json } })
  822. }
  823. function doneApi() {
  824. $.json = $.toStr($.json)
  825. const headers = getJsonDoneHeaders()
  826. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.json })
  827. else $.done({ response: { status: 200, headers, body: $.json } })
  828. }
  829. /**
  830. * GistBox by https://github.com/Peng-YM
  831. */
  832. // prettier-ignore
  833. function GistBox(e){const t=function(e,t={}){const{isQX:s,isLoon:n,isSurge:o}=function(){const e="undefined"!=typeof $task,t="undefined"!=typeof $loon,s="undefined"!=typeof $httpClient&&!this.isLoon,n="function"==typeof require&&"undefined"!=typeof $jsbox;return{isQX:e,isLoon:t,isSurge:s,isNode:"function"==typeof require&&!n,isJSBox:n}}(),r={};return["GET","POST","PUT","DELETE","HEAD","OPTIONS","PATCH"].forEach(i=>r[i.toLowerCase()]=(r=>(function(r,i){(i="string"==typeof i?{url:i}:i).url=e?e+i.url:i.url;const a=(i={...t,...i}).timeout,u={onRequest:()=>{},onResponse:e=>e,onTimeout:()=>{},...i.events};let c,d;u.onRequest(r,i),c=s?$task.fetch({method:r,...i}):new Promise((e,t)=>{(o||n?$httpClient:require("request"))[r.toLowerCase()](i,(s,n,o)=>{s?t(s):e({statusCode:n.status||n.statusCode,headers:n.headers,body:o})})});const f=a?new Promise((e,t)=>{d=setTimeout(()=>(u.onTimeout(),t(`${r} URL: ${i.url} exceeds the timeout ${a} ms`)),a)}):null;return(f?Promise.race([f,c]).then(e=>(clearTimeout(d),e)):c).then(e=>u.onResponse(e))})(i,r))),r}("https://api.github.com",{headers:{Authorization:`token ${e}`,"User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36"},events:{onResponse:e=>String(e.statusCode).startsWith("4")?Promise.reject(`ERROR: ${JSON.parse(e.body).message}`):e}}),s=e=>`boxjs.bak.${e}.json`,n=e=>e.match(/boxjs\.bak\.(\d+)\.json/)[1];return new class{async findDatabase(){return t.get("/gists").then(e=>{const t=JSON.parse(e.body);for(let e of t)if("BoxJs Gist"===e.description)return e.id;return-1})}async createDatabase(e){e instanceof Array||(e=[e]);const n={};return e.forEach(e=>{n[s(e.time)]={content:e.content}}),t.post({url:"/gists",body:JSON.stringify({description:"BoxJs Gist",public:!1,files:n})}).then(e=>JSON.parse(e.body).id)}async deleteDatabase(e){return t.delete(`/gists/${e}`)}async getBackups(e){const s=await t.get(`/gists/${e}`).then(e=>JSON.parse(e.body)),{files:o}=s,r=[];for(let e of Object.keys(o))r.push({time:n(e),url:o[e].raw_url});return r}async addBackups(e,t){t instanceof Array||(t=[t]);const n={};return t.forEach(e=>n[s(e.time)]={content:e.content}),this.updateBackups(e,n)}async deleteBackups(e,t){t instanceof Array||(t=[t]);const n={};return t.forEach(e=>n[s(e)]={}),this.updateBackups(e,n)}async updateBackups(e,s){return t.patch({url:`/gists/${e}`,body:JSON.stringify({files:s})})}}}
  834. /**
  835. * EnvJs
  836. */
  837. // prettier-ignore
  838. function Env(t,s){class e{constructor(t){this.env=t}send(t,s="GET"){t="string"==typeof t?{url:t}:t;let e=this.get;return"POST"===s&&(e=this.post),new Promise((s,i)=>{e.call(this,t,(t,e,r)=>{t?i(t):s(e)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,s){this.name=t,this.http=new e(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.encoding="utf-8",this.startTime=(new Date).getTime(),Object.assign(this,s),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $environment&&$environment["surge-version"]}isLoon(){return"undefined"!=typeof $loon}isShadowrocket(){return"undefined"!=typeof $rocket}isStash(){return"undefined"!=typeof $environment&&$environment["stash-version"]}toObj(t,s=null){try{return JSON.parse(t)}catch{return s}}toStr(t,s=null){try{return JSON.stringify(t)}catch{return s}}getjson(t,s){let e=s;const i=this.getdata(t);if(i)try{e=JSON.parse(this.getdata(t))}catch{}return e}setjson(t,s){try{return this.setdata(JSON.stringify(t),s)}catch{return!1}}getScript(t){return new Promise(s=>{this.get({url:t},(t,e,i)=>s(i))})}runScript(t,s){return new Promise(e=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=s&&s.timeout?s.timeout:r;const[o,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"},timeout:r};this.post(a,(t,s,i)=>e(i))}).catch(t=>this.logErr(t))}loaddata(){if(!this.isNode())return{};{this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const 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{};{const i=e?t:s;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}}}writedata(){if(this.isNode()){this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const 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),r=JSON.stringify(this.data);e?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(s,r):this.fs.writeFileSync(t,r)}}lodash_get(t,s,e){const i=s.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return e;return r}lodash_set(t,s,e){return Object(t)!==t?t:(Array.isArray(s)||(s=s.toString().match(/[^.[\]]+/g)||[]),s.slice(0,-1).reduce((t,e,i)=>Object(t[e])===t[e]?t[e]:t[e]=Math.abs(s[i+1])>>0==+s[i+1]?[]:{},t)[s[s.length-1]]=e,t)}getdata(t){let s=this.getval(t);if(/^@/.test(t)){const[,e,i]=/^@(.*?)\.(.*?)$/.exec(t),r=e?this.getval(e):"";if(r)try{const t=JSON.parse(r);s=t?this.lodash_get(t,i,""):s}catch(t){s=""}}return s}setdata(t,s){let e=!1;if(/^@/.test(s)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(s),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const s=JSON.parse(h);this.lodash_set(s,r,t),e=this.setval(JSON.stringify(s),i)}catch(s){const o={};this.lodash_set(o,r,t),e=this.setval(JSON.stringify(o),i)}}else e=this.setval(t,s);return e}getval(t){return this.isSurge()||this.isShadowrocket()||this.isLoon()||this.isStash()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,s){return this.isSurge()||this.isShadowrocket()||this.isLoon()||this.isStash()?$persistentStore.write(t,s):this.isQuanX()?$prefs.setValueForKey(t,s):this.isNode()?(this.data=this.loaddata(),this.data[s]=t,this.writedata(),!0):this.data&&this.data[s]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,s=(()=>{})){if(t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isShadowrocket()||this.isLoon()||this.isStash())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,e,i)=>{!t&&e&&(e.body=i,e.statusCode=e.status?e.status:e.statusCode,e.status=e.statusCode),s(t,e,i)});else if(this.isQuanX())this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:e,statusCode:i,headers:r,body:o}=t;s(null,{status:e,statusCode:i,headers:r,body:o},o)},t=>s(t&&t.error||"UndefinedError"));else if(this.isNode()){let e=require("iconv-lite");this.initGotEnv(t),this.got(t).on("redirect",(t,s)=>{try{if(t.headers["set-cookie"]){const e=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();e&&this.ckjar.setCookieSync(e,null),s.cookieJar=this.ckjar}}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:i,statusCode:r,headers:o,rawBody:h}=t,a=e.decode(h,this.encoding);s(null,{status:i,statusCode:r,headers:o,rawBody:h,body:a},a)},t=>{const{message:i,response:r}=t;s(i,r,r&&e.decode(r.rawBody,this.encoding))})}}post(t,s=(()=>{})){const e=t.method?t.method.toLocaleLowerCase():"post";if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isShadowrocket()||this.isLoon()||this.isStash())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient[e](t,(t,e,i)=>{!t&&e&&(e.body=i,e.statusCode=e.status?e.status:e.statusCode,e.status=e.statusCode),s(t,e,i)});else if(this.isQuanX())t.method=e,this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:e,statusCode:i,headers:r,body:o}=t;s(null,{status:e,statusCode:i,headers:r,body:o},o)},t=>s(t&&t.error||"UndefinedError"));else if(this.isNode()){let i=require("iconv-lite");this.initGotEnv(t);const{url:r,...o}=t;this.got[e](r,o).then(t=>{const{statusCode:e,statusCode:r,headers:o,rawBody:h}=t,a=i.decode(h,this.encoding);s(null,{status:e,statusCode:r,headers:o,rawBody:h,body:a},a)},t=>{const{message:e,response:r}=t;s(e,r,r&&i.decode(r.rawBody,this.encoding))})}}time(t,s=null){const e=s?new Date(s):new Date;let i={"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()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,(e.getFullYear()+"").substr(4-RegExp.$1.length)));for(let s in i)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?i[s]:("00"+i[s]).substr((""+i[s]).length)));return t}queryStr(t){let s="";for(const e in t){let i=t[e];null!=i&&""!==i&&("object"==typeof i&&(i=JSON.stringify(i)),s+=`${e}=${i}&`)}return s=s.substring(0,s.length-1),s}msg(s=t,e="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()||this.isShadowrocket()?t:this.isQuanX()?{"open-url":t}:this.isSurge()||this.isStash()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let s=t.openUrl||t.url||t["open-url"],e=t.mediaUrl||t["media-url"];return{openUrl:s,mediaUrl:e}}if(this.isQuanX()){let s=t["open-url"]||t.url||t.openUrl,e=t["media-url"]||t.mediaUrl,i=t["update-pasteboard"]||t.updatePasteboard;return{"open-url":s,"media-url":e,"update-pasteboard":i}}if(this.isSurge()||this.isShadowrocket()||this.isStash()){let s=t.url||t.openUrl||t["open-url"];return{url:s}}}};if(this.isMute||(this.isSurge()||this.isShadowrocket()||this.isLoon()||this.isStash()?$notification.post(s,e,i,o(r)):this.isQuanX()&&$notify(s,e,i,o(r))),!this.isMuteLog){let t=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];t.push(s),e&&t.push(e),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,s){const e=!(this.isSurge()||this.isShadowrocket()||this.isQuanX()||this.isLoon()||this.isStash());e?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(s=>setTimeout(s,t))}done(t={}){const s=(new Date).getTime(),e=(s-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${e} \u79d2`),this.log(),this.isSurge()||this.isShadowrocket()||this.isQuanX()||this.isLoon()||this.isStash()?$done(t):this.isNode()&&process.exit(1)}}(t,s)}