ios_rule_script/script/bilibili/bilibili_plus.js

235 lines
23 KiB
JavaScript
Raw Normal View History

const scriptName = "BiliBili";
const storyAidKey = "bilibili_story_aid";
const blackKey = "bilibili_feed_black";
const bilibili_disable_index_story = "bilibili_disable_index_story";
const bilibili_enable_mall = "bilibili_enable_mall";
let magicJS = MagicJS(scriptName, "INFO");
//Customize blacklist
let blacklist = [];
if (magicJS.read(blackKey)) {
blacklist = magicJS.read(blackKey).split(";");
} else {
const defaultList = "";
magicJS.write(blackKey, defaultList);
blacklist = defaultList.split(";");
}
const disableIndexStory = Boolean(magicJS.read(bilibili_disable_index_story));
const enableMall = Boolean(magicJS.read(bilibili_enable_mall));
(() => {
2021-04-09 19:34:05 +08:00
let body = null;
if (magicJS.isResponse) {
switch (true) {
2021-04-09 19:34:05 +08:00
// 推荐去广告最后问号不能去掉以免匹配到story模式
case /^https:\/\/app\.bilibili\.com\/x\/v2\/feed\/index\?/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
let items = [];
for (let item of obj["data"]["items"]) {
if (item.hasOwnProperty("banner_item")) {
continue;
} else if (
!item.hasOwnProperty("ad_info") &&
!blacklist.includes(item["args"]["up_name"]) &&
item.card_goto.indexOf("ad") === -1 &&
(item["card_type"] === "small_cover_v2" || item["card_type"] === "large_cover_v1")
) {
if (disableIndexStory) {
if (item.uri.includes("bilibili://story")) {
item.uri = item.uri.replace("bilibili://story", "bilibili://video");
}
}
2021-04-09 19:34:05 +08:00
items.push(item);
}
}
obj["data"]["items"] = items;
2021-04-09 19:34:05 +08:00
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`推荐去广告出现异常:${err}`);
}
break;
// 匹配story模式用于记录Story的aid
case /^https:\/\/app\.bilibili\.com\/x\/v2\/feed\/index\/story\?/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
let lastItem = obj["data"]["items"].pop();
let aid = lastItem["stat"]["aid"].toString();
2021-04-09 19:34:05 +08:00
magicJS.write(storyAidKey, aid);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`记录Story的aid出现异常${err}`);
}
break;
// 开屏广告处理
case /^https?:\/\/app\.bilibili\.com\/x\/v2\/splash\/list/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
obj["data"]["max_time"] = 0;
obj["data"]["min_interval"] = 31536000;
obj["data"]["pull_interval"] = 31536000;
for (let i = 0; i < obj["data"]["list"].length; i++) {
obj["data"]["list"][i]["duration"] = 0;
obj["data"]["list"][i]["begin_time"] = 1915027200;
obj["data"]["list"][i]["end_time"] = 1924272000;
2021-04-09 19:34:05 +08:00
}
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`开屏广告处理出现异常:${err}`);
}
break;
// 标签页处理,如去除会员购等等
case /^https?:\/\/app\.bilibili\.com\/x\/resource\/show\/tab/.test(magicJS.request.url):
try {
// 545 首页追番tab442 开始为概念版id 适配港澳台代理模式
const tabList = new Set([39, 40, 41, 545, 151, 442, 99, 100, 101, 554, 556]);
// 尝试使用tab name直观修改
const tabNameList = new Set(["直播", "推荐", "热门", "动画", "追番", "影视"]);
// 222 游戏中心 107 概念版游戏中心
// 176 消息中心
const topList = new Set([176]);
2021-04-09 19:34:05 +08:00
// 102 开始为概念版id
const bottomList = new Set([177, 178, 179, 181, 102, 103, 104, 105, 106]);
let obj = JSON.parse(magicJS.response.body);
if (obj["data"]["tab"]) {
let tab = obj["data"]["tab"].filter((e) => {
return tabNameList.has(e.name) || tabList.has(e.id);
});
obj["data"]["tab"] = tab;
2021-04-09 19:34:05 +08:00
}
if (obj["data"]["top"]) {
let top = obj["data"]["top"].filter((e) => {
2021-04-09 19:34:05 +08:00
return topList.has(e.id);
});
obj["data"]["top"] = top;
2021-04-09 19:34:05 +08:00
}
if (obj["data"]["bottom"]) {
let bottom = obj["data"]["bottom"].filter((e) => {
return bottomList.has(e.id);
});
obj["data"]["bottom"] = bottom;
2021-04-09 19:34:05 +08:00
}
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`标签页处理出现异常:${err}`);
}
break;
// 我的页面处理,去除一些推广按钮
case /^https?:\/\/app\.bilibili\.com\/x\/v2\/account\/mine/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
// 622 为会员购中心, 425 开始为概念版id
/*
国际版
494 离线缓存
495 历史记录
496 我的收藏
497 稍后再看
500 联系客服
501 设置
741 我的钱包
742 稿件管理
*/
const itemList = new Set([
396, 397, 398, 399, 171, 172, 534, 8, 4, 428, 352, 1, 405, 402, 404, 544, 407, 410, 425, 426, 427, 428, 171, 430, 431, 432, 494, 495, 496, 497, 500, 501, 741, 742,
]);
obj["data"]["sections_v2"].forEach((element, index) => {
let items = element["items"].filter((e) => {
return itemList.has(e.id);
});
obj["data"]["sections_v2"][index].button = {};
delete obj["data"]["sections_v2"][index].be_up_title;
delete obj["data"]["sections_v2"][index].tip_icon;
delete obj["data"]["sections_v2"][index].tip_title;
obj["data"]["sections_v2"][index]["items"] = items;
if (element.title === "更多服务" && enableMall) {
element.items.unshift({
id: 999,
title: "会员购",
icon: "http://i0.hdslb.com/bfs/archive/19c794f01def1a267b894be84427d6a8f67081a9.png",
common_op_item: {},
uri: "bilibili://mall/home",
});
}
2021-04-09 19:34:05 +08:00
});
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`我的页面处理出现异常:${err}`);
}
break;
// 直播去广告
case /^https?:\/\/api\.live\.bilibili\.com\/xlive\/app-room\/v1\/index\/getInfoByRoom/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
obj["data"]["activity_banner_info"] = null;
2021-04-09 19:34:05 +08:00
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`直播去广告出现异常:${err}`);
}
break;
// 追番去广告
case /^https?:\/\/api\.bilibili\.com\/pgc\/page\/bangumi/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
obj.result.modules.forEach((module) => {
// 头部banner
if (module.style.startsWith("banner")) {
module.items = module.items.filter((i) => !(i.source_content && i.source_content.ad_content));
}
});
2021-04-09 19:34:05 +08:00
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`追番去广告出现异常:${err}`);
}
break;
// 动态去广告
case /^https?:\/\/api\.vc\.bilibili\.com\/dynamic_svr\/v1\/dynamic_svr\/dynamic_(history|new)\?/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
let cards = [];
obj.data.cards.forEach((element) => {
if (element.hasOwnProperty("display") && element.card.indexOf("ad_ctx") <= 0) {
2021-04-09 19:34:05 +08:00
// 解决number类型精度问题导致B站动态中图片无法打开的问题
element["desc"]["dynamic_id"] = element["desc"]["dynamic_id_str"];
element["desc"]["pre_dy_id"] = element["desc"]["pre_dy_id_str"];
element["desc"]["orig_dy_id"] = element["desc"]["orig_dy_id_str"];
element["desc"]["rid"] = element["desc"]["rid_str"];
2021-04-09 19:34:05 +08:00
cards.push(element);
}
});
obj.data.cards = cards;
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`动态去广告出现异常:${err}`);
}
break;
// 去除统一设置的皮肤
case /^https?:\/\/app\.bilibili\.com\/x\/resource\/show\/skin\?/.test(magicJS.request.url):
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(magicJS.response.body);
if (obj && obj.hasOwnProperty("data")) {
obj["data"]["common_equip"] = {};
2021-04-09 19:34:05 +08:00
}
body = JSON.stringify(obj);
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`去除强制设置的皮肤出现异常:${err}`);
}
break;
default:
magicJS.logWarning("触发意外的请求处理,请确认脚本或复写配置正常。");
2021-04-09 19:34:05 +08:00
break;
}
} else {
magicJS.logWarning("触发意外的请求处理,请确认脚本或复写配置正常。");
2021-04-09 19:34:05 +08:00
}
if (body) {
magicJS.done({ body });
} else {
2021-04-09 19:34:05 +08:00
magicJS.done();
}
})();
// prettier-ignore
function MagicJS(scriptName="MagicJS",logLevel="INFO"){return new class{constructor(){if(this.version="2.2.3.3",this.scriptName=scriptName,this.logLevels={DEBUG:5,INFO:4,NOTIFY:3,WARNING:2,ERROR:1,CRITICAL:0,NONE:-1},this.isLoon="undefined"!=typeof $loon,this.isQuanX="undefined"!=typeof $task,this.isJSBox="undefined"!=typeof $drive,this.isNode="undefined"!=typeof module&&!this.isJSBox,this.isSurge="undefined"!=typeof $httpClient&&!this.isLoon,this.node={request:void 0,fs:void 0,data:{}},this.iOSUserAgent="Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1",this.pcUserAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36 Edg/84.0.522.59",this.logLevel=logLevel,this._barkUrl="",this.isNode){this.node.fs=require("fs"),this.node.request=require("request");try{this.node.fs.accessSync("./magic.json",this.node.fs.constants.R_OK|this.node.fs.constants.W_OK)}catch(err){this.node.fs.writeFileSync("./magic.json","{}",{encoding:"utf8"})}this.node.data=require("./magic.json")}else this.isJSBox&&($file.exists("drive://MagicJS")||$file.mkdir("drive://MagicJS"),$file.exists("drive://MagicJS/magic.json")||$file.write({data:$data({string:"{}"}),path:"drive://MagicJS/magic.json"}))}set barkUrl(url){this._barkUrl=url.replace(/\/+$/g,"")}set logLevel(level){this._logLevel="string"==typeof level?level.toUpperCase():"DEBUG"}get logLevel(){return this._logLevel}get isRequest(){return"undefined"!=typeof $request&&"undefined"==typeof $response}get isResponse(){return"undefined"!=typeof $response}get request(){return"undefined"!=typeof $request?$request:void 0}get response(){return"undefined"!=typeof $response?($response.hasOwnProperty("status")&&($response.statusCode=$response.status),$response.hasOwnProperty("statusCode")&&($response.status=$response.statusCode),$response):void 0}get platform(){return this.isSurge?"Surge":this.isQuanX?"Quantumult X":this.isLoon?"Loon":this.isJSBox?"JSBox":this.isNode?"Node.js":"Unknown"}read(key,session=""){let val="";this.isSurge||this.isLoon?val=$persistentStore.read(key):this.isQuanX?val=$prefs.valueForKey(key):this.isNode?val=this.node.data:this.isJSBox&&(val=$file.read("drive://MagicJS/magic.json").string);try{this.isNode&&(val=val[key]),this.isJSBox&&(val=JSON.parse(val)[key]),session&&("string"==typeof val&&(val=JSON.parse(val)),val=val&&"object"==typeof val?val[session]:null)}catch(err){this.logError(err),val=session?{}:null,this.del(key)}void 0===val&&(val=null);try{val&&"string"==typeof val&&(val=JSON.parse(val))}catch(err){}return this.logDebug(`READ DATA [${key}]${session?`[${session}]`:""}(${typeof val})\n${JSON.stringify(val)}`),val}write(key,val,session=""){let data=session?{}:"";if(session&&(this.isSurge||this.isLoon)?data=$persistentStore.read(key):session&&this.isQuanX?data=$prefs.valueForKey(key):this.isNode?data=this.node.data:this.isJSBox&&(data=JSON.parse($file.read("drive://MagicJS/magic.json").string)),session){try{"string"==typeof data&&(data=JSON.parse(data)),data="object"==typeof data&&data?data:{}}catch(err){this.logError(err),this.del(key),data={}}this.isJSBox||this.isNode?(data[key]&&"object"==typeof data[key]||(data[key]={}),data[key].hasOwnProperty(session)||(data[key][session]=null),void 0===val?delete data[key][session]:data[key][session]=val):void 0===val?delete data[session]:data[session]=val}else this.isNode||this.isJSBox?void 0===val?delete data[key]:data[key]=val:data=void 0===val?null:val;"object"==typeof data&&(data=JSON.stringify(data)),this.isSurge||this.isLoon?$persistentStore.write(data,key):this.isQuanX?$prefs.setValueForKey(data,key):this.isNode?this.node.fs.writeFileSync("./magic.json",data):this.isJSBox&&$file.write({data:$data({string:data}),path:"drive://MagicJS/magic.json"}),this.logDebug(`WRITE DATA [${key}]${session?`[${session}]`:""}(${typeof val})\n${JSON.stringify(val)}`)}del(key,session=""){this.logDebug(`DELETE KEY [${key}]${session?`[${session}]`:""}`),this.write(key,null,session)}notify(title=thi