const version = 'v0912.1'; const $ = new Env("微博去广告"); let storeMainConfig = $.getdata('mainConfig'); let storeItemMenusConfig = $.getdata('itemMenusConfig'); //主要的选项配置 const mainConfig = storeMainConfig ? JSON.parse(storeMainConfig) : { isDebug: false, //开启调试,会打印运行中部分日志 //个人中心配置,其中多数是可以直接在更多功能里直接移除 removeHomeVip: true, //个人中心的vip栏 removeHomeCreatorTask: true, //个人中心创作者中心下方的轮播图 //微博详情页配置 removeRelate: true, //相关推荐 removeGood: true, //微博主好物种草 removeFollow: true, //关注博主 modifyMenus: true, //编辑上下文菜单 removeRelateItem: false, //评论区相关内容 removeRecommendItem: true, //评论区推荐内容 removeRewardItem: false, //微博详情页打赏模块 removeLiveMedia: true, //首页顶部直播 removeNextVideo: false, //关闭自动播放下一个视频 removePinedTrending: true, //删除热搜列表置顶条目 removeInterestFriendInTopic: false, //超话:超话里的好友 removeInterestTopic: false, //超话:可能感兴趣的超话 + 好友关注 removeInterestUser: false, //用户页:可能感兴趣的人 removeLvZhou: false, //绿洲模块 profileSkin1: null, //用户页:自定义图标1 profileSkin2: null, //用户页:自定义图标2 tabIconVersion: 0, //配置大于100的数 tabIconPath: '' //配置图标路径 } //菜单配置 const itemMenusConfig = storeItemMenusConfig ? JSON.parse(storeItemMenusConfig) : { creator_task: false, //转发任务 mblog_menus_custom: false, //寄微博 mblog_menus_video_later: true, //可能是稍后再看?没出现过 mblog_menus_comment_manager: true, //评论管理 mblog_menus_avatar_widget: false, //头像挂件 mblog_menus_card_bg: false, //卡片背景 mblog_menus_long_picture: true, //生成长图 mblog_menus_delete: true, //删除 mblog_menus_edit: true, //编辑 mblog_menus_edit_history: true, //编辑记录 mblog_menus_edit_video: true, //编辑视频 mblog_menus_sticking: true, //置顶 mblog_menus_open_reward: true, //赞赏 mblog_menus_novelty: false, //新鲜事投稿 mblog_menus_favorite: true, //收藏 mblog_menus_promote: true, //推广 mblog_menus_modify_visible: true, //设置分享范围 mblog_menus_copy_url: true, //复制链接 mblog_menus_follow: true, //关注 mblog_menus_video_feedback: true, //播放反馈 mblog_menus_shield: true, //屏蔽 mblog_menus_report: true, //投诉 mblog_menus_apeal: true, //申诉 mblog_menus_home: true //返回首页 } const modifyCardsUrls = ['/cardlist', 'video/community_tab', '/searchall']; const modifyStatusesUrls = ['statuses/friends/timeline', 'statuses/unread_friends_timeline', 'statuses/unread_hot_timeline', 'groups/timeline']; const otherUrls = { '/profile/me': 'removeHome', //个人页模块 '/statuses/extend': 'itemExtendHandler', //微博详情页 '/video/remind_info': 'removeVideoRemind', //tab2菜单上的假通知 '/checkin/show': 'removeCheckin', //签到任务 '/live/media_homelist': 'removeMediaHomelist', //首页直播 '/comments/build_comments': 'removeComments', //微博详情页评论区相关内容 '/container/get_item': 'containerHandler', //列表相关 '/profile/statuses': 'userHandler', //用户主页 '/video/tiny_stream_video_list': 'nextVideoHandler', //取消自动播放下一个视频 '/2/statuses/video_mixtimeline': 'nextVideoHandler', '/!/client/light_skin': 'tabSkinHandler', '/littleskin/preview': 'skinPreviewHandler', '/search/finder': 'removeSearchMain', '/search/container_timeline': 'removeSearch', '/search/container_discover': 'removeSearch', '/2/messageflow': 'removeMsgAd', '/2/page?': 'removePage', //超话签到的按钮 /2/page/button 加?区别 '/statuses/unread_topic_timeline': 'topicHandler', //超话tab } function getModifyMethod(url) { for (const s of modifyCardsUrls) { if (url.indexOf(s) > -1) { return 'removeCards'; } } for (const s of modifyStatusesUrls) { if (url.indexOf(s) > -1) { return 'removeTimeLine'; } } for (const [path, method] of Object.entries(otherUrls)) { if (url.indexOf(path) > -1) { return method; } } return null; } function isAd(data) { if (!data) { return false; } if (data.mblogtypename == '广告' || data.mblogtypename == '热推') { return true } ; if (data.promotion && data.promotion.type == 'ad') { return true } ; return false; } function topicHandler(data) { const cards = data.cards; if (!cards) return data; if (!mainConfig.removeUnfollowTopic && !mainConfig.removeUnusedPart) return data; let newCards = []; for (let c of cards) { let addFlag = true; if (c.mblog) { let btns = c.mblog.buttons; if (mainConfig.removeUnfollowTopic && btns) { if (btns[0].type == 'follow') { addFlag = false; } } } else { if (!mainConfig.removeUnusedPart) { continue; } if (c.itemid == 'bottom_mix_activity') { addFlag = false; } else if (c?.top?.title == '正在活跃') { addFlag = false; } else if (c.card_type == 200 && c.group) { addFlag = false; } else { let cGroup = c.card_group; if (!cGroup) { continue; } let cGroup0 = cGroup[0]; if (['guess_like_title', 'cats_top_title', 'chaohua_home_readpost_samecity_title'].indexOf(cGroup0.itemid) > -1) { addFlag = false; } else if (cGroup.length > 1) { let newCardGroup = []; for (let cg of cGroup) { if (['chaohua_discovery_banner_1', 'bottom_mix_activity'].indexOf(cg.itemid) == -1) { newCardGroup.push(cg); } } c.card_group = newCardGroup; } } } if (addFlag) { newCards.push(c); } } data.cards = newCards; log('topicHandler success'); return data; } function removeSearchMain(data) { let channels = data.channelInfo.channels; if (!channels) { return data; } for (let channel of channels) { let payload = channel.payload; if (!payload) { continue; } removeSearch(payload) } log('remove_search main success'); return data; } function checkSearchWindow(item) { if (!mainConfig.removeSearchWindow) return false; if (item.category != 'card') return false; return item.data?.itemid == 'finder_window' || item.data?.itemid == 'more_frame'; } //发现页 function removeSearch(data) { if (!data.items) { return data; } let newItems = []; for (let item of data.items) { if (item.category == 'feed') { if (!isAd(item.data)) { newItems.push(item); } } else { if (!checkSearchWindow(item)) { newItems.push(item); } } } data.items = newItems; log('remove_search success'); return data; } function removeMsgAd(data) { if (!data.messages) { return; } let newMsgs = []; for (let msg of data.messages) { if (msg.msg_card?.ad_tag) { continue; } newMsgs.push(msg) } data.messages = newMsgs; return data; } function removePage(data) { removeCards(data); // 删除热搜列表置顶条目 if (mainConfig.removePinedTrending && data.cards && data.cards.length > 0) { if (data.cards[0].card_group) { data.cards[0].card_group = data.cards[0].card_group.filter(c => !c.itemid.includes("t:51")); } } return data; } function removeCards(data) { if (!data.cards) { return; } let newCards = []; for (const card of data.cards) { let cardGroup = card.card_group; if (cardGroup && cardGroup.length > 0) { let newGroup = []; for (const group of cardGroup) { let cardType = group.card_type; if (cardType != 118) { newGroup.push(group); } } card.card_group = newGroup; newCards.push(card); } else { let cardType = card.card_type; if ([9, 165].indexOf(cardType) > -1) { if (!isAd(card.mblog)) { newCards.push(card); } } else { newCards.push(card); } } } data.cards = newCards; } function lvZhouHandler(data) { if (!mainConfig.removeLvZhou) return; if (!data) return; let struct = data.common_struct; if (!struct) return; let newStruct = []; for (const s of struct) { if (s.name != '绿洲') { newStruct.push(s); } } data.common_struct = newStruct; } function isBlock(data) { let blockIds = mainConfig.blockIds || []; if (blockIds.length === 0) { return false; } let uid = data.user.id; for (const blockId of blockIds) { if (blockId == uid) { return true; } } return false; } function removeTimeLine(data) { for (const s of ["ad", "advertises", "trends"]) { if (data[s]) { delete data[s]; } } if (!data.statuses) { return; } let newStatuses = []; for (const s of data.statuses) { if (!isAd(s)) { lvZhouHandler(s); if (!isBlock(s)) { newStatuses.push(s); } } } data.statuses = newStatuses; } function removeHomeVip(data) { if (!data.header) { return data; } // let vipCenter = data.header.vipCenter; // if(vipCenter) { // vipCenter.icon = ''; // vipCenter.title.content = '会员中心'; // } if (data.header.vipView) { data.header.vipView = null; } return data; } //移除tab2的假通知 function removeVideoRemind(data) { data.bubble_dismiss_time = 0; data.exist_remind = false; data.image_dismiss_time = 0; data.image = ''; data.tag_image_english = ''; data.tag_image_english_dark = ''; data.tag_image_normal = ''; data.tag_image_normal_dark = ''; } //微博详情页 function itemExtendHandler(data) { if (mainConfig.removeRelate || mainConfig.removeGood) { if (data.trend && data.trend.titles) { let title = data.trend.titles.title; if (mainConfig.removeRelate && title === '相关推荐') { delete data.trend; } else if (mainConfig.removeGood && title === '博主好物种草') { delete data.trend; } } } if (mainConfig.removeFollow) { if (data.follow_data) { data.follow_data = null; } } if (mainConfig.removeRewardItem) { if (data.reward_info) { data.reward_info = null; } } //删除超话新帖和新用户通知 if (data.page_alerts) { data.page_alerts = null; } //广告 暂时判断逻辑根据图片 https://h5.sinaimg.cn/upload/1007/25/2018/05/03/timeline_icon_ad_delete.png try { let picUrl = data.trend.extra_struct.extBtnInfo.btn_picurl; if (picUrl.indexOf('timeline_icon_ad_delete') > -1) { delete data.trend; } } catch (error) { } if (mainConfig.modifyMenus && data.custom_action_list) { let newActions = []; for (const item of data.custom_action_list) { let _t = item.type; let add = itemMenusConfig[_t] if (add === undefined) { newActions.push(item); } else if (_t === 'mblog_menus_copy_url') { newActions.unshift(item); } else if (add) { newActions.push(item); } } data.custom_action_list = newActions; } } function updateFollowOrder(item) { try { for (let d of item.items) { if (d.itemId === 'mainnums_friends') { let s = d.click.modules[0].scheme; d.click.modules[0].scheme = s.replace('231093_-_selfrecomm', '231093_-_selffollowed'); log('updateFollowOrder success'); return; } } } catch (error) { console.log('updateFollowOrder fail'); } } function updateProfileSkin(item, k) { try { let profileSkin = mainConfig[k]; if (!profileSkin) { return; } let i = 0; for (let d of item.items) { if (!d.image) { continue; } try { dm = d.image.style.darkMode if (dm != 'alpha') { d.image.style.darkMode = 'alpha' } d.image.iconUrl = profileSkin[i++]; if (d.dot) { d.dot = []; } } catch (error) { } } log('updateProfileSkin success'); } catch (error) { console.log('updateProfileSkin fail'); } } function removeHome(data) { if (!data.items) { return data; } let newItems = []; for (let item of data.items) { let itemId = item.itemId; if (itemId == 'profileme_mine') { if (mainConfig.removeHomeVip) { item = removeHomeVip(item); } updateFollowOrder(item); newItems.push(item); } else if (itemId == '100505_-_top8') { updateProfileSkin(item, 'profileSkin1'); newItems.push(item); } else if (itemId == '100505_-_newcreator') { if (item.type == 'grid') { updateProfileSkin(item, 'profileSkin2'); newItems.push(item); } else { if (!mainConfig.removeHomeCreatorTask) { newItems.push(item); } } } else if (['mine_attent_title', '100505_-_meattent_pic', '100505_-_newusertask', '100505_-_vipkaitong', '100505_-_hongbao2022', '100505_-_adphoto'].indexOf(itemId) > -1) { continue; } else if (itemId.match(/100505_-_meattent_-_\d+/)) { continue; } else { newItems.push(item); } } data.items = newItems; return data; } //移除tab1签到 function removeCheckin(data) { log('remove tab1签到'); data.show = 0; } //首页直播 function removeMediaHomelist(data) { if (mainConfig.removeLiveMedia) { log('remove 首页直播'); data.data = {}; } } //评论区相关和推荐内容 function removeComments(data) { let delType = ['广告']; if (mainConfig.removeRelateItem) delType.push('相关内容'); if (mainConfig.removeRecommendItem) delType.push(...['推荐', '热推']); // if(delType.length === 0) return; let items = data.datas || []; if (items.length === 0) return; let newItems = []; for (const item of items) { let adType = item.adType || ''; if (delType.indexOf(adType) == -1) { newItems.push(item); } } log('remove 评论区相关和推荐内容'); data.datas = newItems; } //处理感兴趣的超话和超话里的好友 function containerHandler(data) { if (mainConfig.removeInterestFriendInTopic) { if (data.card_type_name === '超话里的好友') { log('remove 超话里的好友'); data.card_group = []; } } if (mainConfig.removeInterestTopic && data.itemid) { if (data.itemid.indexOf('infeed_may_interest_in') > -1) { log('remove 感兴趣的超话'); data.card_group = []; } else if (data.itemid.indexOf('infeed_friends_recommend') > -1) { log('remove 超话好友关注'); data.card_group = []; } } } //可能感兴趣的人 function userHandler(data) { if (!mainConfig.removeInterestUser) { return; } let items = data.cards || []; if (items.length === 0) { return; } let newItems = []; for (const item of items) { if (item.itemid == 'INTEREST_PEOPLE') { log('remove 感兴趣的人'); } else { if (!isAd(item.mblog)) { lvZhouHandler(item.mblog); newItems.push(item); } } } data.cards = newItems; } function nextVideoHandler(data) { if (mainConfig.removeNextVideo) { data.statuses = []; data.tab_list = []; console.log('nextVideoHandler'); } } function tabSkinHandler(data) { try { let iconVersion = mainConfig.tabIconVersion; data['data']['canUse'] = 1 if (!iconVersion || !mainConfig.tabIconPath) return; if (iconVersion < 100) return; let skinList = data['data']['list'] for (let skin of skinList) { // if(skin.usetime) { // skin['usetime'] = 330 // } skin['version'] = iconVersion; skin['downloadlink'] = mainConfig.tabIconPath; } log('tabSkinHandler success') } catch (error) { log('tabSkinHandler fail') } } function skinPreviewHandler(data) { data['data']['skin_info']['status'] = 1 } // function unreadCountHandler(data) { // let ext = data.ext_new; // if(!ext) return; // if(!ext.creator_task) return; // ext.creator_task.text = ''; // } function log(data) { if (mainConfig.isDebug) { console.log(data); } } function Env(t, e) { class s { constructor(t) { this.env = t } send(t, e = "GET") { t = "string" == typeof t ? {url: t} : t; let s = this.get; return "POST" === e && (s = this.post), new Promise((e, i) => { s.call(this, t, (t, s, r) => { t ? i(t) : e(s) }) }) } get(t) { return this.send.call(this.env, t) } post(t) { return this.send.call(this.env, t, "POST") } } return new class { constructor(t, e) { this.name = t, this.http = new s(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, e), this.log("", `🔔${this.name}, 开始!`) } isNode() { return "undefined" != typeof module && !!module.exports } isQuanX() { return "undefined" != typeof $task } isSurge() { return "undefined" != typeof $httpClient && "undefined" == typeof $loon } isLoon() { return "undefined" != typeof $loon } isShadowrocket() { return "undefined" != typeof $rocket } isStash() { return "undefined" != typeof $environment && $environment["stash-version"] } toObj(t, e = null) { try { return JSON.parse(t) } catch { return e } } toStr(t, e = null) { try { return JSON.stringify(t) } catch { return e } } getjson(t, e) { let s = e; const i = this.getdata(t); if (i) try { s = JSON.parse(this.getdata(t)) } catch { } return s } setjson(t, e) { try { return this.setdata(JSON.stringify(t), e) } catch { return !1 } } getScript(t) { return new Promise(e => { this.get({url: t}, (t, s, i) => e(i)) }) } runScript(t, e) { return new Promise(s => { 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 = e && e.timeout ? e.timeout : r; const [o, n] = i.split("@"), a = { url: `http://${n}/v1/scripting/evaluate`, body: {script_text: t, mock_type: "cron", timeout: r}, headers: {"X-Key": o, Accept: "*/*"} }; this.post(a, (t, e, i) => s(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), e = this.path.resolve(process.cwd(), this.dataFile), s = this.fs.existsSync(t), i = !s && this.fs.existsSync(e); if (!s && !i) return {}; { const i = s ? t : e; 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), e = this.path.resolve(process.cwd(), this.dataFile), s = this.fs.existsSync(t), i = !s && this.fs.existsSync(e), r = JSON.stringify(this.data); s ? this.fs.writeFileSync(t, r) : i ? this.fs.writeFileSync(e, r) : this.fs.writeFileSync(t, r) } } lodash_get(t, e, s) { const i = e.replace(/\[(\d+)\]/g, ".$1").split("."); let r = t; for (const t of i) if (r = Object(r)[t], void 0 === r) return s; return r } lodash_set(t, e, s) { return Object(t) !== t ? t : (Array.isArray(e) || (e = e.toString().match(/[^.[\]]+/g) || []), e.slice(0, -1).reduce((t, s, i) => Object(t[s]) === t[s] ? t[s] : t[s] = Math.abs(e[i + 1]) >> 0 == +e[i + 1] ? [] : {}, t)[e[e.length - 1]] = s, t) } getdata(t) { let e = this.getval(t); if (/^@/.test(t)) { const [, s, i] = /^@(.*?)\.(.*?)$/.exec(t), r = s ? this.getval(s) : ""; if (r) try { const t = JSON.parse(r); e = t ? this.lodash_get(t, i, "") : e } catch (t) { e = "" } } return e } setdata(t, e) { let s = !1; if (/^@/.test(e)) { const [, i, r] = /^@(.*?)\.(.*?)$/.exec(e), o = this.getval(i), n = i ? "null" === o ? null : o || "{}" : "{}"; try { const e = JSON.parse(n); this.lodash_set(e, r, t), s = this.setval(JSON.stringify(e), i) } catch (e) { const o = {}; this.lodash_set(o, r, t), s = this.setval(JSON.stringify(o), i) } } else s = this.setval(t, e); return s } getval(t) { return this.isSurge() || this.isLoon() ? $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, e) { return this.isSurge() || this.isLoon() ? $persistentStore.write(t, e) : this.isQuanX() ? $prefs.setValueForKey(t, e) : this.isNode() ? (this.data = this.loaddata(), this.data[e] = t, this.writedata(), !0) : this.data && this.data[e] || 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, e = (() => { })) { if (t.headers && (delete t.headers["Content-Type"], delete t.headers["Content-Length"]), this.isSurge() || this.isLoon()) this.isSurge() && this.isNeedRewrite && (t.headers = t.headers || {}, Object.assign(t.headers, {"X-Surge-Skip-Scripting": !1})), $httpClient.get(t, (t, s, i) => { !t && s && (s.body = i, s.statusCode = s.status ? s.status : s.statusCode, s.status = s.statusCode), e(t, s, i) }); else if (this.isQuanX()) this.isNeedRewrite && (t.opts = t.opts || {}, Object.assign(t.opts, {hints: !1})), $task.fetch(t).then(t => { const {statusCode: s, statusCode: i, headers: r, body: o} = t; e(null, {status: s, statusCode: i, headers: r, body: o}, o) }, t => e(t && t.error || "UndefinedError")); else if (this.isNode()) { let s = require("iconv-lite"); this.initGotEnv(t), this.got(t).on("redirect", (t, e) => { try { if (t.headers["set-cookie"]) { const s = t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString(); s && this.ckjar.setCookieSync(s, null), e.cookieJar = this.ckjar } } catch (t) { this.logErr(t) } }).then(t => { const {statusCode: i, statusCode: r, headers: o, rawBody: n} = t, a = s.decode(n, this.encoding); e(null, {status: i, statusCode: r, headers: o, rawBody: n, body: a}, a) }, t => { const {message: i, response: r} = t; e(i, r, r && s.decode(r.rawBody, this.encoding)) }) } } post(t, e = (() => { })) { const s = 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.isLoon()) this.isSurge() && this.isNeedRewrite && (t.headers = t.headers || {}, Object.assign(t.headers, {"X-Surge-Skip-Scripting": !1})), $httpClient[s](t, (t, s, i) => { !t && s && (s.body = i, s.statusCode = s.status ? s.status : s.statusCode, s.status = s.statusCode), e(t, s, i) }); else if (this.isQuanX()) t.method = s, this.isNeedRewrite && (t.opts = t.opts || {}, Object.assign(t.opts, {hints: !1})), $task.fetch(t).then(t => { const {statusCode: s, statusCode: i, headers: r, body: o} = t; e(null, {status: s, statusCode: i, headers: r, body: o}, o) }, t => e(t && t.error || "UndefinedError")); else if (this.isNode()) { let i = require("iconv-lite"); this.initGotEnv(t); const {url: r, ...o} = t; this.got[s](r, o).then(t => { const {statusCode: s, statusCode: r, headers: o, rawBody: n} = t, a = i.decode(n, this.encoding); e(null, {status: s, statusCode: r, headers: o, rawBody: n, body: a}, a) }, t => { const {message: s, response: r} = t; e(s, r, r && i.decode(r.rawBody, this.encoding)) }) } } time(t, e = null) { const s = e ? new Date(e) : new Date; let i = { "M+": s.getMonth() + 1, "d+": s.getDate(), "H+": s.getHours(), "m+": s.getMinutes(), "s+": s.getSeconds(), "q+": Math.floor((s.getMonth() + 3) / 3), S: s.getMilliseconds() }; /(y+)/.test(t) && (t = t.replace(RegExp.$1, (s.getFullYear() + "").substr(4 - RegExp.$1.length))); for (let e in i) new RegExp("(" + e + ")").test(t) && (t = t.replace(RegExp.$1, 1 == RegExp.$1.length ? i[e] : ("00" + i[e]).substr(("" + i[e]).length))); return t } queryStr(t) { let e = ""; for (const s in t) { let i = t[s]; null != i && "" !== i && ("object" == typeof i && (i = JSON.stringify(i)), e += `${s}=${i}&`) } return e = e.substring(0, e.length - 1), e } msg(e = t, s = "", i = "", r) { const o = t => { if (!t) return t; if ("string" == typeof t) return this.isLoon() ? t : this.isQuanX() ? {"open-url": t} : this.isSurge() ? {url: t} : void 0; if ("object" == typeof t) { if (this.isLoon()) { let e = t.openUrl || t.url || t["open-url"], s = t.mediaUrl || t["media-url"]; return {openUrl: e, mediaUrl: s} } if (this.isQuanX()) { let e = t["open-url"] || t.url || t.openUrl, s = t["media-url"] || t.mediaUrl, i = t["update-pasteboard"] || t.updatePasteboard; return {"open-url": e, "media-url": s, "update-pasteboard": i} } if (this.isSurge()) { let e = t.url || t.openUrl || t["open-url"]; return {url: e} } } }; if (this.isMute || (this.isSurge() || this.isLoon() ? $notification.post(e, s, i, o(r)) : this.isQuanX() && $notify(e, s, i, o(r))), !this.isMuteLog) { let t = ["", "==============📣系统通知📣=============="]; t.push(e), s && t.push(s), 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, e) { const s = !this.isSurge() && !this.isQuanX() && !this.isLoon(); s ? this.log("", `❗️${this.name}, 错误!`, t.stack) : this.log("", `❗️${this.name}, 错误!`, t) } wait(t) { return new Promise(e => setTimeout(e, t)) } done(t = {}) { const e = (new Date).getTime(), s = (e - this.startTime) / 1e3; this.log("", `🔔${this.name}, 结束! 🕛 ${s} 秒`), this.log(), this.isSurge() || this.isQuanX() || this.isLoon() ? $done(t) : this.isNode() && process.exit(1) } }(t, e) } var body = $response.body; var url = $request.url; let method = getModifyMethod(url); if (method) { log(method); var func = eval(method); let data = JSON.parse(body); new func(data); body = JSON.stringify(data); } $.done({body});