chavy.boxjs.js 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910
  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. // 调试模式: 是否每次都获取新的页面
  120. const isDebugWeb = [true, 'true'].includes(
  121. $.getdata('@chavy_boxjs_userCfgs.isDebugWeb')
  122. ) || true;
  123. const debugger_web = $.getdata('@chavy_boxjs_userCfgs.debugger_web') || true;
  124. const cache = $.getjson($.KEY_web_cache, null)
  125. // 如果没有开启调试模式,且当前版本与缓存版本一致,且直接取缓存
  126. if (!isDebugWeb && cache && cache.version === $.version) {
  127. $.html = cache.cache
  128. }
  129. // 如果开启了调试模式,并指定了 `debugger_web` 则从指定的地址获取页面
  130. else {
  131. if (isDebugWeb && debugger_web) {
  132. // 调试地址后面拼时间缀, 避免 GET 缓存
  133. const isQueryUrl = debugger_web.includes('?')
  134. $.web = `${debugger_web}${
  135. isQueryUrl ? '&' : '?'
  136. }_=${new Date().getTime()}`
  137. boxdata.syscfgs.isDebugMode = true
  138. console.log(`[WARN] 调试模式: $.web = : ${$.web}`)
  139. }
  140. // 如果调用这个方法来获取缓存, 且标记为`非调试模式`
  141. const getcache = () => {
  142. console.log(`[ERROR] 调试模式: 正在使用缓存的页面!`)
  143. boxdata.syscfgs.isDebugMode = false
  144. return $.getjson($.KEY_web_cache).cache
  145. }
  146. await $.http.get($.web).then(
  147. (resp) => {
  148. if (/<title>BoxJs<\/title>/.test(resp.body)) {
  149. // 返回页面源码, 并马上存储到持久化仓库
  150. $.html = resp.body
  151. const cache = { version: $.version, cache: $.html }
  152. $.setjson(cache, $.KEY_web_cache)
  153. } else {
  154. // 如果返回的页面源码不是预期的, 则从持久化仓库中获取
  155. $.html = getcache()
  156. }
  157. },
  158. // 如果获取页面源码失败, 则从持久化仓库中获取
  159. () => ($.html = getcache())
  160. )
  161. }
  162. // 根据偏好设置, 替换首屏颜色 (如果是`auto`则交由页面自适应)
  163. const theme = $.getdata('@chavy_boxjs_userCfgs.theme')
  164. if (theme === 'light') {
  165. $.html = $.html.replace('#121212', '#fff')
  166. } else if (theme === 'dark') {
  167. $.html = $.html.replace('#fff', '#121212')
  168. }
  169. /**
  170. * 后端渲染数据, 感谢 https://t.me/eslint 提供帮助
  171. *
  172. * 如果直接渲染到 box: null 会出现双向绑定问题
  173. * 所以先渲染到 `boxServerData: null` 再由前端 `this.box = this.boxServerData` 实现双向绑定
  174. */
  175. $.html = $.html.replace(
  176. 'boxServerData: null',
  177. 'boxServerData:' + JSON.stringify(boxdata)
  178. )
  179. // 调试模式支持 vue Devtools (只有在同时开启调试模式和指定了调试地址才生效)
  180. // vue.min.js 生效时, 会导致 @click="window.open()" 报 "window" is not defined 错误
  181. if (isDebugWeb && debugger_web) {
  182. $.html = $.html.replace('vue.min.js', 'vue.js')
  183. }
  184. }
  185. /**
  186. * 处理`查询`请求
  187. */
  188. async function handleQuery() {
  189. const [, query] = $.path.split('/query')
  190. if (/^\/boxdata/.test(query)) {
  191. $.json = getBoxData()
  192. } else if (/^\/baks/.test(query)) {
  193. const [, backupId] = query.split('/baks/')
  194. $.json = $.getjson(backupId)
  195. } else if (/^\/versions$/.test(query)) {
  196. await getVersions(true)
  197. } else if (/^\/data/.test(query)) {
  198. // TODO 记录每次查询的 key 至 usercfgs.viewkeys
  199. const [, dataKey] = query.split('/data/')
  200. $.json = {
  201. key: dataKey,
  202. val: $.getdata(dataKey)
  203. }
  204. }
  205. }
  206. /**
  207. * 处理 API 请求
  208. */
  209. async function handleApi() {
  210. const [, api] = $.path.split('/api')
  211. console.log("handleApi:"+api);
  212. if (api === '/save') {
  213. await apiSave()
  214. } else if (api === '/addAppSub') {
  215. await apiAddAppSub()
  216. } else if (api === '/reloadAppSub') {
  217. await apiReloadAppSub()
  218. } else if (api === '/delGlobalBak') {
  219. await apiDelGlobalBak()
  220. } else if (api === '/updateGlobalBak') {
  221. await apiUpdateGlobalBak()
  222. } else if (api === '/saveGlobalBak') {
  223. await apiSaveGlobalBak()
  224. } else if (api === '/impGlobalBak') {
  225. await apiImpGlobalBak()
  226. } else if (api === '/revertGlobalBak') {
  227. await apiRevertGlobalBak()
  228. } else if (api === '/runScript') {
  229. await apiRunScript()
  230. } else if (api === '/saveData') {
  231. await apiSaveData()
  232. }
  233. }
  234. async function handleOptions() {}
  235. /**
  236. * ===================================
  237. * 获取基础数据
  238. * ===================================
  239. */
  240. function getBoxData() {
  241. const datas = {}
  242. const usercfgs = getUserCfgs()
  243. const sessions = getAppSessions()
  244. const curSessions = getCurSessions()
  245. const sysapps = getSystemApps()
  246. const syscfgs = getSystemCfgs()
  247. const appSubCaches = getAppSubCaches()
  248. const globalbaks = getGlobalBaks()
  249. // 把 `内置应用`和`订阅应用` 里需要持久化属性放到`datas`
  250. sysapps.forEach((app) => Object.assign(datas, getAppDatas(app)))
  251. usercfgs.appsubs.forEach((sub) => {
  252. const subcache = appSubCaches[sub.url]
  253. if (subcache && subcache.apps && Array.isArray(subcache.apps)) {
  254. subcache.apps.forEach((app) => Object.assign(datas, getAppDatas(app)))
  255. }
  256. })
  257. const box = {
  258. datas,
  259. usercfgs,
  260. sessions,
  261. curSessions,
  262. sysapps,
  263. syscfgs,
  264. appSubCaches,
  265. globalbaks
  266. }
  267. return box
  268. }
  269. /**
  270. * 获取系统配置
  271. */
  272. function getSystemCfgs() {
  273. // prettier-ignore
  274. return {
  275. env: $.isStash() ? 'Stash' : $.isShadowrocket() ? 'Shadowrocket' : $.isLoon() ? 'Loon' : $.isQuanX() ? 'QuanX' : $.isSurge() ? 'Surge' : 'Node',
  276. version: $.version,
  277. versionType: $.versionType,
  278. envs: [
  279. { id: 'Surge', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/surge.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/surge.png'] },
  280. { id: 'QuanX', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/quanX.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/quantumultx.png'] },
  281. { id: 'Loon', icons: ['https://raw.githubusercontent.com/Orz-3/mini/none/loon.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/loon.png'] },
  282. { 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'] },
  283. { 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'] }
  284. ],
  285. chavy: { id: 'ChavyLeung', icon: 'https://avatars3.githubusercontent.com/u/29748519', repo: 'https://github.com/chavyleung/scripts' },
  286. senku: { id: 'GideonSenku', icon: 'https://avatars1.githubusercontent.com/u/39037656', repo: 'https://github.com/GideonSenku' },
  287. id77: { id: 'id77', icon: 'https://avatars0.githubusercontent.com/u/9592236', repo: 'https://github.com/id77' },
  288. orz3: { id: 'Orz-3', icon: 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/Orz-3.png', repo: 'https://github.com/Orz-3/' },
  289. 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' },
  290. defaultIcons: ['https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/appstore.png', 'https://raw.githubusercontent.com/Orz-3/mini/master/Color/appstore.png']
  291. }
  292. }
  293. /**
  294. * 获取内置应用
  295. */
  296. function getSystemApps() {
  297. // prettier-ignore
  298. const sysapps = [
  299. {
  300. id: 'BoxSetting',
  301. name: '偏好设置',
  302. descs: ['可手动执行一些抹掉数据的脚本', '可设置明暗两种主题下的主色调', '可设置壁纸清单'],
  303. keys: [
  304. '@chavy_boxjs_userCfgs.httpapi',
  305. '@chavy_boxjs_userCfgs.bgimg',
  306. '@chavy_boxjs_userCfgs.http_backend',
  307. '@chavy_boxjs_userCfgs.color_dark_primary',
  308. '@chavy_boxjs_userCfgs.color_light_primary'
  309. ],
  310. settings: [
  311. { 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! 注意: 以逗号开头, 逗号分隔多个地址, 可加回车' },
  312. { id: '@chavy_boxjs_userCfgs.httpapi_timeout', name: 'HTTP-API Timeout (Surge)', val: 20, type: 'number', persistentHint:true, desc: '如果脚本作者指定了超时时间, 会优先使用脚本指定的超时时间.' },
  313. { 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 开头的完整路径, 不能是 / 结尾' },
  314. { 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: '逗号分隔名字和链接, 回车分隔多个地址' },
  315. { id: '@chavy_boxjs_userCfgs.bgimg', name: '背景图片', val: '', type: 'text', placeholder: 'http://api.btstu.cn/sjbz/zsy.php', persistentHint:true, desc: '输入背景图标的在线链接' },
  316. { id: '@chavy_boxjs_userCfgs.changeBgImgEnterDefault', name: '手势进入壁纸模式默认背景图片', val: '', type: 'text', placeholder: '填写上面背景图片清单的值', persistentHint:true, desc: '' },
  317. { id: '@chavy_boxjs_userCfgs.changeBgImgOutDefault', name: '手势退出壁纸模式默认背景图片', val: '', type: 'text', placeholder: '填写上面背景图片清单的值', persistentHint:true, desc: '' },
  318. { id: '@chavy_boxjs_userCfgs.color_light_primary', name: '明亮色调', canvas: true, val: '#F7BB0E', type: 'colorpicker', desc: '' },
  319. { id: '@chavy_boxjs_userCfgs.color_dark_primary', name: '暗黑色调', canvas: true, val: '#2196F3', type: 'colorpicker', desc: '' }
  320. ],
  321. scripts: [
  322. {
  323. name: "抹掉:所有缓存",
  324. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.caches.js"
  325. },
  326. {
  327. name: "抹掉:收藏应用",
  328. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.favapps.js"
  329. },
  330. {
  331. name: "抹掉:用户偏好",
  332. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.js"
  333. },
  334. {
  335. name: "抹掉:所有会话",
  336. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.usercfgs.sessions.js"
  337. },
  338. {
  339. name: "抹掉:所有备份",
  340. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.baks.js"
  341. },
  342. {
  343. name: "抹掉:BoxJs (注意备份)",
  344. script: "https://raw.githubusercontent.com/chavyleung/scripts/master/box/scripts/boxjs.revert.boxjs.js"
  345. }
  346. ],
  347. author: '@chavyleung',
  348. repo: 'https://github.com/chavyleung/scripts/blob/master/box/switcher/box.switcher.js',
  349. icons: [
  350. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSetting.mini.png',
  351. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSetting.png'
  352. ]
  353. },
  354. {
  355. id: 'BoxSwitcher',
  356. name: '会话切换',
  357. desc: '打开静默运行后, 切换会话将不再发出系统通知 \n注: 不影响日志记录',
  358. keys: [],
  359. settings: [{ id: 'CFG_BoxSwitcher_isSilent', name: '静默运行', val: false, type: 'boolean', desc: '切换会话时不发出系统通知!' }],
  360. author: '@chavyleung',
  361. repo: 'https://github.com/chavyleung/scripts/blob/master/box/switcher/box.switcher.js',
  362. icons: [
  363. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSwitcher.mini.png',
  364. 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/icons/BoxSwitcher.png'
  365. ],
  366. script: 'https://raw.githubusercontent.com/chavyleung/scripts/master/box/switcher/box.switcher.js'
  367. },
  368. {
  369. "id": "BoxGist",
  370. "name": "Gist备份",
  371. "keys": ["@gist.token", "@gist.username"],
  372. "author": "@dompling",
  373. "repo": "https://github.com/dompling/Script/tree/master/gist",
  374. "icons": [
  375. "https://raw.githubusercontent.com/Former-Years/icon/master/github-bf.png",
  376. "https://raw.githubusercontent.com/Former-Years/icon/master/github-bf.png"
  377. ],
  378. "descs_html": [
  379. "脚本由 <a href='https://github.com/dompling' target='_blank'>@dompling</a> 提供, 感谢!",
  380. "<br />",
  381. "<b>Token</b> 获取方式:",
  382. "<span style='margin-left: 40px'>头像菜单 -></span>",
  383. "<span style='margin-left: 40px'>Settings -></span>",
  384. "<span style='margin-left: 40px'>Developer settings -></span>",
  385. "<span style='margin-left: 40px'>Personal access tokens -></span>",
  386. "<span style='margin-left: 40px'>Generate new token -></span>",
  387. "<span style='margin-left: 40px'>在里面找到 gist 勾选提交</span>"
  388. ],
  389. "scripts": [
  390. {
  391. "name": "备份 Gist",
  392. "script": "https://raw.githubusercontent.com/dompling/Script/master/gist/backup.js"
  393. },
  394. {
  395. "name": "从 Gist 恢复",
  396. "script": "https://raw.githubusercontent.com/dompling/Script/master/gist/restore.js"
  397. }
  398. ],
  399. "settings": [
  400. {
  401. "id": "@gist.username",
  402. "name": "用户名",
  403. "val": null,
  404. "type": "text",
  405. "placeholder": "github 用户名",
  406. "desc": "必填"
  407. },
  408. {
  409. "id": "@gist.token",
  410. "name": "Personal access tokens",
  411. "val": null,
  412. "type": "text",
  413. "placeholder": "github personal access tokens",
  414. "desc": "必填"
  415. }
  416. ]
  417. }
  418. ]
  419. return sysapps
  420. }
  421. /**
  422. * 获取用户配置
  423. */
  424. function getUserCfgs() {
  425. const defcfgs = {
  426. favapps: [],
  427. appsubs: [],
  428. viewkeys: [],
  429. isPinedSearchBar: true,
  430. httpapi: '[email protected]:6166',
  431. http_backend: ''
  432. }
  433. const usercfgs = Object.assign(defcfgs, $.getjson($.KEY_usercfgs, {}))
  434. // 处理异常数据:删除所有为 null 的订阅
  435. if (usercfgs.appsubs.includes(null)) {
  436. usercfgs.appsubs = usercfgs.appsubs.filter((sub) => sub)
  437. $.setjson(usercfgs, $.KEY_usercfgs)
  438. }
  439. return usercfgs
  440. }
  441. /**
  442. * 获取`应用订阅`缓存
  443. */
  444. function getAppSubCaches() {
  445. return $.getjson($.KEY_app_subCaches, {})
  446. }
  447. /**
  448. * 获取全局备份列表
  449. */
  450. function getGlobalBaks() {
  451. let backups = $.getjson($.KEY_backups, [])
  452. // 处理异常数据:删除所有为 null 的备份
  453. if (backups.includes(null)) {
  454. backups = backups.filter((bak) => bak)
  455. $.setjson(backups, $.KEY_backups)
  456. }
  457. return backups
  458. }
  459. /**
  460. * 获取版本清单
  461. */
  462. function getVersions() {
  463. return $.http.get($.ver).then(
  464. (resp) => {
  465. try {
  466. $.json = $.toObj(resp.body)
  467. } catch {
  468. $.json = {}
  469. }
  470. },
  471. () => ($.json = {})
  472. )
  473. }
  474. /**
  475. * 获取用户应用
  476. */
  477. function getUserApps() {
  478. // TODO 用户可在 BoxJs 中自定义应用, 格式与应用订阅一致
  479. return []
  480. }
  481. /**
  482. * 获取应用会话
  483. */
  484. function getAppSessions() {
  485. return $.getjson($.KEY_sessions, []) || []
  486. }
  487. /**
  488. * 获取当前切换到哪个会话
  489. */
  490. function getCurSessions() {
  491. return $.getjson($.KEY_cursessions, {}) || {}
  492. }
  493. /**
  494. * ===================================
  495. * 接口类函数
  496. * ===================================
  497. */
  498. function getAppDatas(app) {
  499. const datas = {}
  500. const nulls = [null, undefined, 'null', 'undefined']
  501. if (app.keys && Array.isArray(app.keys)) {
  502. app.keys.forEach((key) => {
  503. const val = $.getdata(key)
  504. datas[key] = nulls.includes(val) ? null : val
  505. })
  506. }
  507. if (app.settings && Array.isArray(app.settings)) {
  508. app.settings.forEach((setting) => {
  509. const key = setting.id
  510. const val = $.getdata(key)
  511. datas[key] = nulls.includes(val) ? null : val
  512. })
  513. }
  514. return datas
  515. }
  516. async function apiSave() {
  517. const data = $.toObj($request.body)
  518. if (Array.isArray(data)) {
  519. data.forEach((dat) => $.setdata(dat.val, dat.key))
  520. } else {
  521. $.setdata(data.val, data.key)
  522. }
  523. $.json = getBoxData()
  524. }
  525. async function apiAddAppSub() {
  526. const sub = $.toObj($request.body)
  527. // 添加订阅
  528. const usercfgs = getUserCfgs()
  529. usercfgs.appsubs.push(sub)
  530. $.setjson(usercfgs, $.KEY_usercfgs)
  531. // 加载订阅缓存
  532. await reloadAppSubCache(sub.url)
  533. $.json = getBoxData()
  534. }
  535. async function apiReloadAppSub() {
  536. const sub = $.toObj($request.body)
  537. if (sub) {
  538. await reloadAppSubCache(sub.url)
  539. } else {
  540. await reloadAppSubCaches()
  541. }
  542. $.json = getBoxData()
  543. }
  544. async function apiDelGlobalBak() {
  545. const backup = $.toObj($request.body)
  546. const backups = $.getjson($.KEY_backups, [])
  547. const bakIdx = backups.findIndex((b) => b.id === backup.id)
  548. if (bakIdx > -1) {
  549. backups.splice(bakIdx, 1)
  550. $.setdata('', backup.id)
  551. $.setjson(backups, $.KEY_backups)
  552. }
  553. $.json = getBoxData()
  554. }
  555. async function apiUpdateGlobalBak() {
  556. const { id: backupId, name: backupName } = $.toObj($request.body)
  557. const backups = $.getjson($.KEY_backups, [])
  558. const backup = backups.find((b) => b.id === backupId)
  559. if (backup) {
  560. backup.name = backupName
  561. $.setjson(backups, $.KEY_backups)
  562. }
  563. $.json = getBoxData()
  564. }
  565. async function apiRevertGlobalBak() {
  566. const { id: bakcupId } = $.toObj($request.body)
  567. const backup = $.getjson(bakcupId)
  568. if (backup) {
  569. const {
  570. chavy_boxjs_sysCfgs,
  571. chavy_boxjs_sysApps,
  572. chavy_boxjs_sessions,
  573. chavy_boxjs_userCfgs,
  574. chavy_boxjs_cur_sessions,
  575. chavy_boxjs_app_subCaches,
  576. ...datas
  577. } = backup
  578. $.setdata(JSON.stringify(chavy_boxjs_sessions), $.KEY_sessions)
  579. $.setdata(JSON.stringify(chavy_boxjs_userCfgs), $.KEY_usercfgs)
  580. $.setdata(JSON.stringify(chavy_boxjs_cur_sessions), $.KEY_cursessions)
  581. $.setdata(JSON.stringify(chavy_boxjs_app_subCaches), $.KEY_app_subCaches)
  582. const isNull = (val) =>
  583. [undefined, null, 'null', 'undefined', ''].includes(val)
  584. Object.keys(datas).forEach((datkey) =>
  585. $.setdata(isNull(datas[datkey]) ? '' : `${datas[datkey]}`, datkey)
  586. )
  587. }
  588. const boxdata = getBoxData()
  589. $.json = boxdata
  590. }
  591. async function apiSaveGlobalBak() {
  592. const backups = $.getjson($.KEY_backups, [])
  593. const boxdata = getBoxData()
  594. const backup = $.toObj($request.body)
  595. const backupData = {}
  596. backupData['chavy_boxjs_userCfgs'] = boxdata.usercfgs
  597. backupData['chavy_boxjs_sessions'] = boxdata.sessions
  598. backupData['chavy_boxjs_cur_sessions'] = boxdata.curSessions
  599. backupData['chavy_boxjs_app_subCaches'] = boxdata.appSubCaches
  600. Object.assign(backupData, boxdata.datas)
  601. backups.push(backup)
  602. $.setjson(backups, $.KEY_backups)
  603. $.setjson(backupData, backup.id)
  604. $.json = getBoxData()
  605. }
  606. async function apiImpGlobalBak() {
  607. const backups = $.getjson($.KEY_backups, [])
  608. const backup = $.toObj($request.body)
  609. const backupData = backup.bak
  610. delete backup.bak
  611. backups.push(backup)
  612. $.setjson(backups, $.KEY_backups)
  613. $.setjson(backupData, backup.id)
  614. $.json = getBoxData()
  615. }
  616. async function apiRunScript() {
  617. // 取消勿扰模式
  618. $.isMute = false
  619. const opts = $.toObj($request.body)
  620. const httpapi = $.getdata('@chavy_boxjs_userCfgs.httpapi')
  621. const ishttpapi = /.*?@.*?:[0-9]+/.test(httpapi)
  622. let script_text = null
  623. if (opts.isRemote) {
  624. await $.getScript(opts.url).then((script) => (script_text = script))
  625. } else {
  626. script_text = opts.script
  627. }
  628. if (
  629. $.isSurge() &&
  630. !$.isLoon() &&
  631. !$.isShadowrocket() &&
  632. !$.isStash() &&
  633. ishttpapi
  634. ) {
  635. const runOpts = { timeout: opts.timeout }
  636. await $.runScript(script_text, runOpts).then(
  637. (resp) => ($.json = JSON.parse(resp))
  638. )
  639. } else {
  640. await new Promise((resolve) => {
  641. $eval_env.resolve = resolve
  642. // 避免被执行脚本误认为是 rewrite 环境
  643. // 所以需要 `$request = undefined`
  644. $eval_env.request = $request
  645. $request = undefined
  646. // 重写 console.log, 把日志记录到 $eval_env.cached_logs
  647. $eval_env.cached_logs = []
  648. console.cloned_log = console.log
  649. console.log = (l) => {
  650. console.cloned_log(l)
  651. $eval_env.cached_logs.push(l)
  652. }
  653. // 重写脚本内的 $done, 调用 $done() 即是调用 $eval_env.resolve()
  654. script_text = script_text.replace(/\$done/g, '$eval_env.resolve')
  655. script_text = script_text.replace(/\$\.done/g, '$eval_env.resolve')
  656. try {
  657. eval(script_text)
  658. } catch (e) {
  659. $eval_env.cached_logs.push(e)
  660. resolve()
  661. }
  662. })
  663. // 还原 console.log
  664. console.log = console.cloned_log
  665. // 还原 $request
  666. $request = $eval_env.request
  667. // 返回数据
  668. $.json = {
  669. result: '',
  670. output: $eval_env.cached_logs.join('\n')
  671. }
  672. }
  673. }
  674. async function apiSaveData() {
  675. const { key: dataKey, val: dataVal } = $.toObj($request.body)
  676. $.setdata(dataVal, dataKey)
  677. $.json = {
  678. key: dataKey,
  679. val: $.getdata(dataKey)
  680. }
  681. }
  682. /**
  683. * ===================================
  684. * 工具类函数
  685. * ===================================
  686. */
  687. function reloadAppSubCache(url) {
  688. // 地址后面拼时间缀, 避免 GET 缓存
  689. const requrl = `${url}${
  690. url.includes('?') ? '&' : '?'
  691. }_=${new Date().getTime()}`
  692. return $.http.get(requrl).then((resp) => {
  693. try {
  694. const subcaches = getAppSubCaches()
  695. subcaches[url] = $.toObj(resp.body)
  696. subcaches[url].updateTime = new Date()
  697. $.setjson(subcaches, $.KEY_app_subCaches)
  698. $.log(`更新订阅, 成功! ${url}`)
  699. } catch (e) {
  700. $.logErr(e)
  701. $.log(`更新订阅, 失败! ${url}`)
  702. }
  703. })
  704. }
  705. async function reloadAppSubCaches() {
  706. $.msg($.name, '更新订阅: 开始!')
  707. const reloadActs = []
  708. const usercfgs = getUserCfgs()
  709. usercfgs.appsubs.forEach((sub) => {
  710. reloadActs.push(reloadAppSubCache(sub.url))
  711. })
  712. await Promise.all(reloadActs)
  713. $.log(`全部订阅, 完成!`)
  714. const endTime = new Date().getTime()
  715. const costTime = (endTime - $.startTime) / 1000
  716. $.msg($.name, `更新订阅: 完成! 🕛 ${costTime} 秒`)
  717. }
  718. function upgradeUserData() {
  719. const usercfgs = getUserCfgs()
  720. // 如果存在`usercfgs.appsubCaches`则需要升级数据
  721. const isNeedUpgrade = !!usercfgs.appsubCaches
  722. if (isNeedUpgrade) {
  723. // 迁移订阅缓存至独立的持久化空间
  724. $.setjson(usercfgs.appsubCaches, $.KEY_app_subCaches)
  725. // 移除用户偏好中的订阅缓存
  726. delete usercfgs.appsubCaches
  727. usercfgs.appsubs.forEach((sub) => {
  728. delete sub._raw
  729. delete sub.apps
  730. delete sub.isErr
  731. delete sub.updateTime
  732. })
  733. }
  734. if (isNeedUpgrade) {
  735. $.setjson(usercfgs, $.KEY_usercfgs)
  736. }
  737. }
  738. /**
  739. * 升级备份数据
  740. *
  741. * 升级前: 把所有备份都存到一个持久化空间
  742. * 升级后: 把每个备份都独立存到一个空间, `$.KEY_backups` 仅记录必要的数据索引
  743. */
  744. function upgradeGlobalBaks() {
  745. let oldbaks = $.getdata($.KEY_globalBaks)
  746. let newbaks = $.getjson($.KEY_backups, [])
  747. const isEmpty = (bak) => [undefined, null, ''].includes(bak)
  748. const isExistsInNew = (backupId) => newbaks.find((bak) => bak.id === backupId)
  749. // 存在旧备份数据时, 升级备份数据格式
  750. if (!isEmpty(oldbaks)) {
  751. oldbaks = JSON.parse(oldbaks)
  752. oldbaks.forEach((bak) => {
  753. if (isEmpty(bak)) return
  754. if (isEmpty(bak.bak)) return
  755. if (isExistsInNew(bak.id)) return
  756. console.log(`正在迁移: ${bak.name}`)
  757. const backupId = bak.id
  758. const backupData = bak.bak
  759. // 删除旧的备份数据, 仅保留索引信息
  760. delete bak.bak
  761. newbaks.push(bak)
  762. // 提取旧备份数据, 存入独立的持久化空间
  763. $.setjson(backupData, backupId)
  764. })
  765. $.setjson(newbaks, $.KEY_backups)
  766. }
  767. // 清空所有旧备份的数据
  768. $.setdata('', $.KEY_globalBaks)
  769. }
  770. /**
  771. * ===================================
  772. * 结束类函数
  773. * ===================================
  774. */
  775. function doneBox() {
  776. // 记录当前使用哪个域名访问
  777. $.setdata(getHost($request.url), $.KEY_boxjs_host)
  778. if ($.isOptions) doneOptions()
  779. else if ($.isPage) donePage()
  780. else if ($.isQuery) doneQuery()
  781. else if ($.isApi) doneApi()
  782. else $.done()
  783. }
  784. function getBaseDoneHeaders(mixHeaders = {}) {
  785. return Object.assign(
  786. {
  787. 'Access-Control-Allow-Origin': '*',
  788. 'Access-Control-Allow-Methods': 'POST,GET,OPTIONS,PUT,DELETE',
  789. 'Access-Control-Allow-Headers':
  790. 'Origin, X-Requested-With, Content-Type, Accept'
  791. },
  792. mixHeaders
  793. )
  794. }
  795. function getHtmlDoneHeaders() {
  796. return getBaseDoneHeaders({
  797. 'Content-Type': 'text/html;charset=UTF-8'
  798. })
  799. }
  800. function getJsonDoneHeaders() {
  801. return getBaseDoneHeaders({
  802. 'Content-Type': 'text/json; charset=utf-8'
  803. })
  804. }
  805. function doneOptions() {
  806. const headers = getBaseDoneHeaders()
  807. if ($.isQuanX()) $.done({ headers })
  808. else $.done({ response: { headers } })
  809. }
  810. function donePage() {
  811. const headers = getHtmlDoneHeaders()
  812. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.html })
  813. else $.done({ response: { status: 200, headers, body: $.html } })
  814. }
  815. function doneQuery() {
  816. $.json = $.toStr($.json)
  817. const headers = getJsonDoneHeaders()
  818. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.json })
  819. else $.done({ response: { status: 200, headers, body: $.json } })
  820. }
  821. function doneApi() {
  822. $.json = $.toStr($.json)
  823. const headers = getJsonDoneHeaders()
  824. if ($.isQuanX()) $.done({ status: 'HTTP/1.1 200', headers, body: $.json })
  825. else $.done({ response: { status: 200, headers, body: $.json } })
  826. }
  827. /**
  828. * GistBox by https://github.com/Peng-YM
  829. */
  830. // prettier-ignore
  831. 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})})}}}
  832. /**
  833. * EnvJs
  834. */
  835. // prettier-ignore
  836. 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)}