ios_rule_script/script/zhihu/zhihu.js

1313 lines
64 KiB
JavaScript
Raw Normal View History

2022-06-30 00:26:46 +08:00
const scriptName = "知乎助手";
const blockedUsersKey = "zhihu_blocked_users";
const currentUserInfoKey = "zhihu_current_userinfo";
const keywordBlockKey = "zhihu_keyword_block";
// 默认屏蔽推荐列表的用户,通常不是真实用户,无法通过加入黑名单屏蔽
const defaultAnswerBlockedUsers = ["会员推荐"];
const keywordMaxCount = 1000; // 允许设置的关键词数量
2022-09-19 22:58:33 +08:00
const $ = MagicJS(scriptName, "INFO");
2022-06-30 00:26:46 +08:00
(() => {
let response = null;
2022-09-19 22:58:33 +08:00
if ($.isResponse) {
2022-06-30 00:26:46 +08:00
switch (true) {
// 知乎8.3.0移除推荐页顶部项
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_remove_sections", false) === true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/feed-root\/sections\/query\/v2/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeFeedSections();
break;
// 回答内容优化
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_answer_tip", true) === true &&
/^https?:\/\/(www\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/appview\/v2\/answer\/.*(entry=(?!(preload-topstory|preload-search|preload-subscription)))?/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = modifyAnswer();
break;
// 处理登录用户信息
2022-09-19 22:58:33 +08:00
case /^https:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/people\/self$/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = processUserInfo();
break;
// 黑名单增强 - 浏览黑名单用户信息时自动加入脚本黑名单
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_blocked_users", true) === true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/people\/((?!self).)*$/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = autoInsertBlackList();
break;
// 推荐去广告与黑名单增强
2022-09-19 22:58:33 +08:00
case /^https:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/topstory\/recommend\?/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeRecommendAds();
break;
// 关注列表去广告
2022-09-19 22:58:33 +08:00
case /^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/moments(\/|\?)?(recommend|action=|feed_type=)(?!\/people)/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeMomentsAds();
break;
// 回答列表去广告与黑名单增强
2022-09-19 22:58:33 +08:00
case /^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/(v4\/)?questions\/\d+/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeQuestionsAds();
break;
// 知乎V5版本评论去广告及黑名单增强
2022-09-19 22:58:33 +08:00
case /^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/comment_v5\/(answers|pins|comments?|articles)\/\d+\/(root|child)_comment/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeCommentV5Ads();
break;
// 知乎旧版回答中的评论黑名单增强
2022-09-19 22:58:33 +08:00
case /^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/(answers|pins|comments?|articles)\/\d+\/(root|child)_comments/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeCommentAds();
break;
// 知乎热榜去广告
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_hot_list", true) === true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/topstory\/hot-lists?(\?|\/)/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeHotListAds();
break;
// 拦截官方账号推广消息
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_sys_msg", true) === true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/notifications\/v3\/timeline\/entry\/system_message/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeSysMsgAds();
break;
// 屏蔽官方营销消息
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_sys_msg", true) != false &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/notifications\/v3\/message/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeMarketingMsg();
break;
// 去除预置关键字广告
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_preset_words", false) == true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/search\/preset_words\?/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeKeywordAds();
break;
// 优化知乎软件配置
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_app_conf") == true &&
/^https?:\/\/appcloud2\.zhihu\.com\/v\d+\/config/.test($.request.url):
2022-06-30 00:26:46 +08:00
response = modifyAppConfig();
break;
// 知乎热搜去广告
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_hot_search") == true &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/search\/top_search\/tabs\/hot\/items/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
response = removeHotSearchAds();
break;
// 黑名单管理
2022-09-19 22:58:33 +08:00
case $.data.read("zhihu_settings_blocked_users") != false &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/settings\/blocked_users/.test(
$.request.url
):
2022-06-30 00:26:46 +08:00
manageBlackUser();
break;
default:
break;
}
2022-09-19 22:58:33 +08:00
} else if ($.isRequest) {
2022-06-30 00:26:46 +08:00
// 知乎屏蔽关键词解锁
2022-09-19 22:58:33 +08:00
if (
$.data.read("zhihu_settings_blocked_keywords") != false &&
/^https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/feed-root\/block/.test(
$.request.url
) === true
) {
2022-06-30 00:26:46 +08:00
response = unlockBlockedKeywords(response);
}
} else {
2022-09-19 22:58:33 +08:00
$.data.del(currentUserInfoKey);
$.data.del(blockedUsersKey);
$.data.del(keywordBlockKey);
$.notification.post("知乎助手数据清理完毕");
2022-06-30 00:26:46 +08:00
}
if (response) {
2022-09-19 22:58:33 +08:00
$.done(response);
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
$.done();
2022-06-30 00:26:46 +08:00
}
})();
/**
* 屏蔽官方营销消息
*
* @param {*}
* @return {*}
*/
function removeMarketingMsg() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
let newItems = [];
for (let item of obj["data"]) {
if (item["detail_title"] === "官方帐号消息") {
let unread_count = item["unread_count"];
if (unread_count > 0) {
item["content"]["text"] = "未读消息" + unread_count + "条";
} else {
item["content"]["text"] = "全部消息已读";
}
item["is_read"] = true;
item["unread_count"] = 0;
newItems.push(item);
} else if (item["detail_title"] !== "知乎活动助手") {
newItems.push(item);
}
}
obj["data"] = newItems;
response = { body: JSON.stringify(obj) };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎屏蔽官方营销消息出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 知乎屏蔽关键词解锁
*
* @param {*}
* @return {*}
*/
function unlockBlockedKeywords() {
let response = null;
try {
const userInfo = getUserInfo();
// 获取屏蔽关键词列表
2022-09-19 22:58:33 +08:00
if ($.request.method === "GET") {
let keywords = $.data.read(keywordBlockKey, null, userInfo.id);
2022-06-30 00:26:46 +08:00
if (!keywords) {
keywords = [];
}
let headers = {
2022-09-19 22:58:33 +08:00
"Cache-Control":
"no-cache, no-store, must-revalidate, private, max-age=0",
Connection: "keep-alive",
2022-06-30 00:26:46 +08:00
"Content-Type": "application/json;charset=utf-8",
2022-09-19 22:58:33 +08:00
Pragma: "no-cache",
2022-06-30 00:26:46 +08:00
"Referrer-Policy": "no-referrer-when-downgrade",
2022-09-19 22:58:33 +08:00
Server: "CLOUD ELB 1.0.0",
Vary: "Accept-Encoding",
2022-06-30 00:26:46 +08:00
"X-Cache-Lookup": "Cache Miss",
"x-cdn-provider": "tencent",
};
let body = JSON.stringify({
success: true,
is_vip: true,
kw_min_length: 2,
kw_max_length: 100,
kw_max_count: keywordMaxCount,
data: keywords,
});
2022-09-19 22:58:33 +08:00
if ($.env.isQuanX) {
2022-06-30 00:26:46 +08:00
response = { body: body, headers: headers, status: "HTTP/1.1 200 OK" };
} else {
response = { response: { body: body, headers: headers, status: 200 } };
}
2022-09-19 22:58:33 +08:00
$.logger.debug(`获取本地脚本屏蔽关键词:\n${keywords.join("、")}`);
2022-06-30 00:26:46 +08:00
}
// 添加屏蔽关键词
2022-09-19 22:58:33 +08:00
else if ($.request.method === "POST") {
if (!!$.request.body) {
2022-06-30 00:26:46 +08:00
// 构造 response headers
let headers = {
2022-09-19 22:58:33 +08:00
"Cache-Control":
"no-cache, no-store, must-revalidate, private, max-age=0",
Connection: "keep-alive",
2022-06-30 00:26:46 +08:00
"Content-Type": "application/json;charset=utf-8",
2022-09-19 22:58:33 +08:00
Pragma: "no-cache",
2022-06-30 00:26:46 +08:00
"Referrer-Policy": "no-referrer-when-downgrade",
2022-09-19 22:58:33 +08:00
Server: "CLOUD ELB 1.0.0",
Vary: "Accept-Encoding",
2022-06-30 00:26:46 +08:00
"X-Cache-Lookup": "Cache Miss",
"x-cdn-provider": "tencent",
};
// 读取关键词
2022-09-19 22:58:33 +08:00
let keyword = decodeURIComponent($.request.body).match(
/keyword=(.*)/
)[1];
let keywords = $.data.read(keywordBlockKey, null, userInfo.id);
2022-06-30 00:26:46 +08:00
if (!keywords) {
keywords = [];
}
// 判断关键词是否存在
let keywordExists = false;
for (let i = 0; i < keywords.length; i++) {
if (keyword === keywords[i]) {
keywordExists = true;
2022-09-19 22:58:33 +08:00
break;
2022-06-30 00:26:46 +08:00
}
}
// 不存在添加,存在返回异常
if (keywordExists === false) {
keywords.push(keyword);
2022-09-19 22:58:33 +08:00
$.data.write(keywordBlockKey, keywords, userInfo.id);
2022-06-30 00:26:46 +08:00
let body = JSON.stringify({ success: true });
2022-09-19 22:58:33 +08:00
if ($.env.isQuanX) {
response = {
body: body,
headers: headers,
status: "HTTP/1.1 200 OK",
};
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
response = {
response: { body: body, headers: headers, status: 200 },
};
2022-06-30 00:26:46 +08:00
}
2022-09-19 22:58:33 +08:00
$.logger.debug(`添加本地脚本屏蔽关键词“${keyword}`);
2022-06-30 00:26:46 +08:00
} else {
let body = JSON.stringify({
error: {
message: "关键词已存在",
code: 100002,
},
});
2022-09-19 22:58:33 +08:00
if ($.env.isQuanX) {
2022-06-30 00:26:46 +08:00
response = {
body: body,
headers: headers,
status: "HTTP/1.1 400 Bad Request",
};
} else {
2022-09-19 22:58:33 +08:00
response = {
response: { body: body, headers: headers, status: 400 },
};
2022-06-30 00:26:46 +08:00
}
}
}
}
// 删除屏蔽关键词
2022-09-19 22:58:33 +08:00
else if ($.request.method === "DELETE") {
let keyword = decodeURIComponent($.request.url).match(/keyword=(.*)/)[1];
let keywords = $.data.read(keywordBlockKey, null, userInfo.id);
2022-06-30 00:26:46 +08:00
if (!keywords) {
keywords = [];
}
keywords = keywords.filter((e) => {
2022-09-19 22:58:33 +08:00
return e !== keyword;
2022-06-30 00:26:46 +08:00
});
2022-09-19 22:58:33 +08:00
$.data.write(keywordBlockKey, keywords, userInfo.id);
2022-06-30 00:26:46 +08:00
let headers = {
2022-09-19 22:58:33 +08:00
"Cache-Control":
"no-cache, no-store, must-revalidate, private, max-age=0",
Connection: "keep-alive",
2022-06-30 00:26:46 +08:00
"Content-Type": "application/json;charset=utf-8",
2022-09-19 22:58:33 +08:00
Pragma: "no-cache",
2022-06-30 00:26:46 +08:00
"Referrer-Policy": "no-referrer-when-downgrade",
2022-09-19 22:58:33 +08:00
Server: "CLOUD ELB 1.0.0",
Vary: "Accept-Encoding",
2022-06-30 00:26:46 +08:00
"X-Cache-Lookup": "Cache Miss",
"x-cdn-provider": "tencent",
};
let body = JSON.stringify({ success: true });
2022-09-19 22:58:33 +08:00
if ($.env.isQuanX) {
2022-06-30 00:26:46 +08:00
response = { body: body, headers: headers, status: "HTTP/1.1 200 OK" };
} else {
response = { response: { body: body, headers: headers, status: 200 } };
}
2022-09-19 22:58:33 +08:00
$.logger.debug(`删除本地脚本屏蔽关键词:“${keyword}`);
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.debug(`知乎关键词屏蔽操作出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 知乎热搜去广告
*
* @param {*}
* @return {*}
*/
function removeHotSearchAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
obj["commercial_data"] = [];
response = { body: JSON.stringify(obj) };
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`去除知乎热搜广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 优化知乎软件配置
*
* @param {*}
* @return {*}
*/
function modifyAppConfig() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
let obj = JSON.parse($.response.body);
let tab_infos = obj["config"]["homepage_feed_tab"]["tab_infos"].filter(
(e) => {
if (e.tab_type === "activity_tab") {
e.end_time = (Date.parse(new Date()) - 120000)
.toString()
.substr(0, 10);
return true;
} else {
return false;
}
2022-06-30 00:26:46 +08:00
}
2022-09-19 22:58:33 +08:00
);
2022-06-30 00:26:46 +08:00
obj["config"]["homepage_feed_tab"]["tab_infos"] = tab_infos;
obj["config"]["zvideo_max_number"] = 1;
2022-12-03 10:49:39 +08:00
// 似乎是某个地方的标签,待定
delete obj["config"]["hp_channel_tab"];
// 灰色模式
obj["config"]["gray_mode"]["enable"] = false;
obj["config"]["gray_mode"]["start_time"] = '4092566400';
obj["config"]["gray_mode"]["end_time"] = '4092566400';
2022-06-30 00:26:46 +08:00
// 试着去除一些配置,效果待验证
delete obj["config"]["soso_des"];
delete obj["config"]["cronet"];
// 屏蔽知乎8.X版本以上本地DNS解析以下修改不清楚哪些是有效的暂时全部保留
if (obj["config"].hasOwnProperty("zhcnh_thread_sync")) {
2022-09-19 22:58:33 +08:00
$.logger.debug(JSON.stringify(obj["config"]["zhcnh_thread_sync"]));
2022-06-30 00:26:46 +08:00
obj["config"]["zhcnh_thread_sync"]["LocalDNSSetHostWhiteList"] = [];
obj["config"]["zhcnh_thread_sync"]["isOpenLocalDNS"] = "0";
obj["config"]["zhcnh_thread_sync"]["ZHBackUpIP_Switch_Open"] = "0";
2022-09-19 22:58:33 +08:00
obj["config"]["zhcnh_thread_sync"]["dns_ip_detector_operation_lock"] =
"1";
obj["config"]["zhcnh_thread_sync"][
"ZHHTTPSessionManager_setupZHHTTPHeaderField"
] = "1";
2022-06-30 00:26:46 +08:00
}
response = { body: JSON.stringify(obj) };
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`优化知乎软件配置出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 去除预置关键字广告
*
* @param {*}
* @return {*}
*/
function removeKeywordAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
$.logger.debug(`预置关键字返回:${$.response.body}`);
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
if (obj.hasOwnProperty("preset_words") && obj["preset_words"]["words"]) {
let words = obj["preset_words"]["words"].filter((element) => {
return element["type"] !== "ad";
});
obj["preset_words"]["words"] = words;
response = { body: JSON.stringify(obj) };
}
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎去除预置关键字广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 拦截官方账号推广消息
*
* @param {*}
* @return {*}
*/
function removeSysMsgAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
const sysmsg_blacklist = [
"知乎小伙伴",
"知乎视频",
"知乎团队",
"知乎礼券",
"知乎读书会团队",
];
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
let data = obj["data"].filter((element) => {
return sysmsg_blacklist.indexOf(element["content"]["title"]) < 0;
});
obj["data"] = data;
response = { body: JSON.stringify(obj) };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎拦截官方账号推广消息出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 知乎热榜去广告
*
* @param {*}
* @return {*}
*/
function removeHotListAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
let obj = JSON.parse($.response.body);
if ("data" in obj) {
let data = obj["data"].filter((e) => {
2022-09-19 22:58:33 +08:00
return (
e["type"] === "hot_list_feed" || e["type"] === "hot_list_feed_video"
);
});
obj["data"] = data;
}
2022-06-30 00:26:46 +08:00
response = { body: JSON.stringify(obj) };
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`去除知乎热榜广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 知乎旧版回答中的评论黑名单增强
*
* @param {*}
* @return {*}
*/
function removeCommentAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
2022-06-30 00:26:46 +08:00
// 评论区去广告
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
if ($.data.read("zhihu_settings_blocked_users") != false) {
2022-06-30 00:26:46 +08:00
// 屏蔽黑名单用户
let user_info = getUserInfo();
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", user_info.id);
2022-06-30 00:26:46 +08:00
let newData = [];
obj.data.forEach((comment) => {
// 评论人昵称
let commentUserName = comment.author.member.name;
// 回复哪个人的评论(仅适用于独立子评论页面请求)
let replyUserName = "";
2022-09-19 22:58:33 +08:00
if (
comment.reply_to_author &&
comment.reply_to_author.member &&
comment.reply_to_author.member.name
) {
2022-06-30 00:26:46 +08:00
replyUserName = comment.reply_to_author.member.name;
}
2022-09-19 22:58:33 +08:00
if (
customBlockedUsers[commentUserName] ||
customBlockedUsers[replyUserName]
) {
if (
customBlockedUsers[commentUserName] &&
!replyUserName &&
$.request.url.indexOf("root_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”的主评论。`
);
} else if (
customBlockedUsers[commentUserName] &&
!replyUserName &&
$.request.url.indexOf("child_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”的子评论。`
);
} else if (
customBlockedUsers[commentUserName] &&
replyUserName &&
$.request.url.indexOf("child_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”回复“${replyUserName}”的子评论。`
);
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽“${commentUserName}”回复黑名单用户“${replyUserName}”的子评论。`
);
2022-06-30 00:26:46 +08:00
}
// 减少主评论页面中的评论总数(仅适用于独立的主评论页面请求)
if (obj.common_counts) {
obj.common_counts -= 1;
}
// 减少子评论页面中的评论总数(仅适用于独立子评论页面请求)
if (obj.paging && obj.paging.totals) {
obj.paging.totals -= 1;
}
} else {
// 屏蔽子评论中的黑名单用户(仅适用于独立的主评论页面请求)
if (comment.child_comments) {
let newChildComments = [];
comment.child_comments.forEach((childComment) => {
2022-09-19 22:58:33 +08:00
if (
customBlockedUsers[childComment.author.member.name] ||
customBlockedUsers[childComment.reply_to_author.member.name]
) {
2022-06-30 00:26:46 +08:00
if (customBlockedUsers[childComment.author.member.name]) {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽黑名单用户“${childComment.author.member.name}”的主评论。`
);
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽“${childComment.author.member.name}”回复黑名单用户“${childComment.reply_to_author.member.name}”的子评论。`
);
2022-06-30 00:26:46 +08:00
}
comment.child_comment_count -= 1;
} else {
newChildComments.push(childComment);
}
});
comment.child_comments = newChildComments;
}
newData.push(comment);
}
});
obj.data = newData;
}
response = { body: JSON.stringify(obj) };
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`去除知乎评论广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 知乎V5版本评论去广告及黑名单增强
*
* @param {*}
* @return {*}
*/
function removeCommentV5Ads() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
if (!!$.response.body) {
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
obj["ad_info"] = {};
// 屏蔽黑名单用户
2022-09-19 22:58:33 +08:00
if ($.data.read("zhihu_settings_blocked_users") != false) {
2022-06-30 00:26:46 +08:00
let user_info = getUserInfo();
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", user_info.id);
2022-06-30 00:26:46 +08:00
customBlockedUsers = !!customBlockedUsers ? customBlockedUsers : {};
let newComments = [];
let blockCommentIdObj = {};
obj.data.forEach((comment) => {
// 评论人昵称
let commentUserName = comment.author.name;
// 回复哪个人的评论(仅适用于独立子评论页面请求)
let replyUserName = "";
2022-09-19 22:58:33 +08:00
if (
comment.reply_to_author &&
comment.reply_to_author &&
comment.reply_to_author.name
) {
2022-06-30 00:26:46 +08:00
replyUserName = comment.reply_to_author.name;
}
2022-09-19 22:58:33 +08:00
if (
customBlockedUsers[commentUserName] ||
customBlockedUsers[replyUserName]
) {
if (
customBlockedUsers[commentUserName] &&
!replyUserName &&
$.request.url.indexOf("root_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”的主评论。`
);
} else if (
customBlockedUsers[commentUserName] &&
!replyUserName &&
$.request.url.indexOf("child_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”的子评论。`
);
} else if (
customBlockedUsers[commentUserName] &&
replyUserName &&
$.request.url.indexOf("child_comment") > 0
) {
$.notification.debug(
`屏蔽黑名单用户“${commentUserName}”回复“${replyUserName}”的子评论。`
);
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽“${commentUserName}”回复黑名单用户“${replyUserName}”的子评论。`
);
2022-06-30 00:26:46 +08:00
}
blockCommentIdObj[comment.id] = commentUserName;
// 主评论数量-1仅适用于root_comment主评论页面请求
if (obj.counts && obj.counts.total_counts) {
obj.counts.total_counts -= 1;
}
// 子评论数量-1仅适用于child_comment子评论页面请求
if (obj.paging && obj.paging.totals) {
obj.paging.totals -= 1;
}
if (obj.root && obj.root.child_comment_count) {
obj.root.child_comment_count -= 1;
}
} else {
if (comment.child_comments) {
let newChildComments = [];
comment.child_comments.forEach((childComment) => {
let childCommentUserName = childComment.author.name;
2022-09-19 22:58:33 +08:00
if (
customBlockedUsers[childCommentUserName] ||
blockCommentIdObj[childComment.reply_comment_id]
) {
2022-06-30 00:26:46 +08:00
if (customBlockedUsers[childCommentUserName]) {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽黑名单用户“${childCommentUserName}”的子评论。`
);
2022-06-30 00:26:46 +08:00
blockCommentIdObj[childComment.id] = childCommentUserName;
} else {
2022-09-19 22:58:33 +08:00
$.notification.debug(
`屏蔽“${childCommentUserName}”回复黑名单用户“${
blockCommentIdObj[childComment.reply_comment_id]
}的子评论`
);
2022-06-30 00:26:46 +08:00
}
comment.child_comment_count -= 1;
} else {
newChildComments.push(childComment);
}
});
comment.child_comments = newChildComments;
}
newComments.push(comment);
}
});
obj.data = newComments;
}
response = { body: JSON.stringify(obj) };
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`去除知乎评论广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 回答列表去广告与黑名单增强
*
* @param {*}
* @return {*}
*/
function removeQuestionsAds() {
let response = null;
try {
const userInfo = getUserInfo();
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", userInfo.id);
2022-06-30 00:26:46 +08:00
customBlockedUsers = !!customBlockedUsers ? customBlockedUsers : {};
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
$.logger.debug(`当前黑名单列表: ${JSON.stringify(customBlockedUsers)}`);
2022-06-30 00:26:46 +08:00
delete obj["ad_info"];
delete obj["roundtable_info"];
// 去除回答列表中的黑名单用户
2022-09-19 22:58:33 +08:00
if ("data" in obj) {
delete obj["data"]["ad_info"];
let data = obj.data["data"] || obj.data;
data = data.filter((element) => {
let blackUserName = "";
2022-09-19 22:58:33 +08:00
try {
if ("author" in element) {
blackUserName = element["author"]["name"];
} else if ("target" in element) {
blackUserName = element["target"]["author"]["name"];
}
2022-09-19 22:58:33 +08:00
} catch (ex) {
$.logger.error(`获取回答列表用户名出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return blackUserName == "" || !customBlockedUsers[blackUserName];
});
2022-09-19 22:58:33 +08:00
if (obj.data.hasOwnProperty("data")) {
obj.data["data"] = data;
} else {
obj["data"] = data;
}
}
2022-06-30 00:26:46 +08:00
let body = JSON.stringify(obj);
2022-09-19 22:58:33 +08:00
$.logger.debug(`修改后的回答列表数据:${body}`);
2022-06-30 00:26:46 +08:00
response = { body: body };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎回答列表去广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 关注列表去广告
*
* @param {*}
* @return {*}
*/
function removeMomentsAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse(
$.response.body.replace(/(\w+"+\s?):\s?(\d{15,})/g, '$1:"$2"')
);
2022-06-30 00:26:46 +08:00
const user_info = getUserInfo();
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", user_info.id);
2022-06-30 00:26:46 +08:00
customBlockedUsers = !!customBlockedUsers ? customBlockedUsers : {};
let data = [];
2022-09-19 22:58:33 +08:00
const settings_moments_stream =
$.data.read("zhihu_settings_moments_stream") == true;
const settings_blocked_users =
$.data.read("zhihu_settings_blocked_users") != false;
2022-06-30 00:26:46 +08:00
for (let i = 0; i < obj["data"].length; i++) {
// let element = targetIdFix(obj["data"][i]);
let element = obj["data"][i];
if (!element["ad"] && !element["adjson"] && !element["ad_list"]) {
// 判断转发的想法是否含有黑名单用户
2022-09-19 22:58:33 +08:00
if (
settings_blocked_users &&
element.target &&
element.target.origin_pin &&
element.target.origin_pin.author &&
customBlockedUsers[element.target.origin_pin.author.name]
) {
$.notification.debug(
`屏蔽“${element.target.author.name}”转发黑名单用户“${element.target.origin_pin.author.name}”的想法。`
);
2022-06-30 00:26:46 +08:00
}
// 屏蔽关注页的“最新视频”
else if (!settings_moments_stream || element["type"] != "videos") {
data.push(element);
}
}
}
obj["data"] = data;
response = { body: JSON.stringify(obj) };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎关注列表去广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 推荐去广告与黑名单增强
*
* @param {*}
* @return {*}
*/
function removeRecommendAds() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
const settings_remove_yanxuan =
$.data.read("zhihu_settings_remove_yanxuan") == true;
const settings_recommend_stream =
$.data.read("zhihu_settings_recommend_stream") == true;
const settings_remove_article =
$.data.read("zhihu_settings_remove_article") == true;
2022-06-30 00:26:46 +08:00
// 默认开启
2022-09-19 22:58:33 +08:00
const settings_blocked_keywords =
$.data.read("zhihu_settings_blocked_keywords") != false;
const settings_blocked_users =
$.data.read("zhihu_settings_blocked_users") != false;
2022-06-30 00:26:46 +08:00
const user_info = getUserInfo();
2022-09-19 22:58:33 +08:00
let keywords = $.data.read(keywordBlockKey, "", user_info.id);
2022-06-30 00:26:46 +08:00
keywords = settings_blocked_keywords && !!keywords ? keywords : [];
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", user_info.id);
customBlockedUsers =
settings_blocked_users && !!customBlockedUsers ? customBlockedUsers : {};
2022-06-30 00:26:46 +08:00
const dataFilter = (element) => {
let elementStr = JSON.stringify(element);
// 是否为广告
2022-09-19 22:58:33 +08:00
let isAd =
element["card_type"] === "slot_event_card" ||
element["card_type"] === "slot_video_event_card" ||
element.hasOwnProperty("ad") ||
// 知乎训练营
(element["extra"] && element["extra"]["type"] === "Training");
2022-06-30 00:26:46 +08:00
// 是否为流媒体
2022-09-19 22:58:33 +08:00
let isStream =
isAd != true &&
elementStr.search(
/"(type|style)+"\s?:\s?"(drama|zvideo|Video|BIG_IMAGE)+"/i
) >= 0;
2022-06-30 00:26:46 +08:00
let removeStream = isStream && settings_recommend_stream;
// 是否为文章
2022-09-19 22:58:33 +08:00
let isArticle =
elementStr.search(/"(type|style)+"\s?:\s?"article"/i) >= 0;
2022-06-30 00:26:46 +08:00
let removeArticle = isArticle && settings_remove_article;
// 是否匹配脚本关键词过滤
let matchKeyword = false;
if (isStream != true && settings_blocked_keywords) {
for (let i = 0; i < keywords.length; i++) {
if (elementStr.search(keywords[i]) >= 0) {
2022-09-19 22:58:33 +08:00
if ($.isDebug) {
let elementTitle =
element.common_card.feed_content.title.panel_text;
let elementContent =
element.common_card.feed_content.content.panel_text;
2022-06-30 00:26:46 +08:00
let actionUrl = "";
try {
2022-09-19 22:58:33 +08:00
actionUrl =
element.common_card.feed_content.title.action.intent_url;
} catch {}
$.logger.debug(
`匹配关键字:\n${keywords[i]}\n标题:\n${elementTitle}\n内容:\n${elementContent}`
);
$.notification.debug(
scriptName,
`关键字:${keywords[i]}`,
`${elementTitle}\n${elementContent}`,
actionUrl
);
2022-06-30 00:26:46 +08:00
}
matchKeyword = true;
break;
}
}
}
// 是否为黑名单用户
let isBlockedUser = false;
try {
isBlockedUser =
2022-09-19 22:58:33 +08:00
matchKeyword != true &&
settings_blocked_users &&
customBlockedUsers &&
element["common_card"]["feed_content"]["source_line"]["elements"][1][
"text"
]["panel_text"] in customBlockedUsers;
2022-06-30 00:26:46 +08:00
} catch {
isBlockedUser = false;
}
2022-09-19 22:58:33 +08:00
return !(
isAd ||
removeStream ||
matchKeyword ||
isBlockedUser ||
removeArticle
);
2022-06-30 00:26:46 +08:00
};
// 修复number类型精度丢失
2022-09-19 22:58:33 +08:00
let obj = JSON.parse(
$.response.body.replace(/(\w+"+\s?):\s?(\d{15,})/g, '$1:"$2"')
);
2022-06-30 00:26:46 +08:00
obj["data"] = obj["data"].filter(dataFilter);
response = { body: JSON.stringify(obj) };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎推荐列表去广告出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 黑名单增强 - 浏览黑名单用户信息时自动加入脚本黑名单
*
* @param {*}
* @return {*}
*/
function autoInsertBlackList() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
// 删除MCN信息
delete obj["mcn_user_info"];
response = { body: JSON.stringify(obj) };
// 如已是黑名单用户,但不在脚本黑名单中,则自动加入
if (obj.name && obj.id && obj.is_blocking === true) {
const userInfo = getUserInfo();
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", userInfo.id);
customBlockedUsers =
typeof customBlockedUsers === "object" && !!customBlockedUsers
? customBlockedUsers
: {};
2022-06-30 00:26:46 +08:00
if (!customBlockedUsers[obj.name]) {
2022-09-19 22:58:33 +08:00
$.logger.debug(
`当前需要加入黑名单的用户Id${obj["id"]},用户名:${obj["name"]}`
);
2022-06-30 00:26:46 +08:00
customBlockedUsers[obj["name"]] = obj["id"];
2022-09-19 22:58:33 +08:00
$.data.write(blockedUsersKey, customBlockedUsers, userInfo.id);
$.logger.debug(
`${
obj["name"]
}写入脚本黑名单成功当前脚本黑名单数据${JSON.stringify(
customBlockedUsers
)}`
);
$.notification.post(`已自动将用户“${obj["name"]}”写入脚本黑名单。`);
2022-06-30 00:26:46 +08:00
}
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎去除MCN信息出现异常${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 处理登录用户信息
*
* @param {*}
* @return {*}
*/
function processUserInfo() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
$.logger.debug(`用户登录用户信息,接口响应:${$.response.body}`);
if (
obj &&
obj["id"] &&
obj.hasOwnProperty("vip_info") &&
obj["vip_info"].hasOwnProperty("is_vip")
) {
2022-06-30 00:26:46 +08:00
const userInfo = {
id: obj["id"],
2022-09-19 22:58:33 +08:00
is_vip: obj["vip_info"]["is_vip"]
? obj["vip_info"]["is_vip"] !== undefined
: false,
2022-06-30 00:26:46 +08:00
};
2022-09-19 22:58:33 +08:00
$.logger.debug(
`当前用户id${obj["id"]}是否为VIP${obj["vip_info"]["is_vip"]}`
);
$.data.write(currentUserInfoKey, userInfo);
2022-06-30 00:26:46 +08:00
// 在知乎APP显示VIP仅自己可见打开后才能使用屏蔽关键词解锁
2022-09-19 22:58:33 +08:00
if (
$.data.read("zhihu_settings_fake_vip") != false &&
obj["vip_info"]["is_vip"] === false
) {
2022-06-30 00:26:46 +08:00
obj["vip_info"]["is_vip"] = true;
obj["vip_info"]["vip_icon"] = {
url: "https://pic1.zhimg.com/v2-4812630bc27d642f7cafcd6cdeca3d7a_r.png",
2022-09-19 22:58:33 +08:00
night_mode_url:
"https://pic1.zhimg.com/v2-c9686ff064ea3579730756ac6c289978_r.png",
2022-06-30 00:26:46 +08:00
};
obj["vip_info"]["entrance"] = {
icon: {
url: "https://pic1.zhimg.com/v2-5b7012c8c22fd520f5677305e1e551bf.png",
2022-09-19 22:58:33 +08:00
night_mode_url:
"https://pic1.zhimg.com/v2-e51e3252d7a2cb016a70879defd5da0b.png",
2022-06-30 00:26:46 +08:00
},
title: "我的盐选会员",
expires_day: "2033-12-24",
sub_title: null,
button_text: "你好,知乎!",
jump_url: "zhihu://vip/purchase",
button_jump_url: "zhihu://vip/purchase",
sub_title_new: null,
identity: "svip",
};
obj["vip_info"]["entrance_new"] = {
left_button: {
title: "精选会员内容",
description: "为您严选好内容",
jump_url: "zhihu://market/home",
},
right_button: {
title: "我的盐选会员",
description: "畅享 10w+ 优质内容",
jump_url: "zhihu://vip/my",
},
};
obj["vip_info"]["entrance_v2"] = {
title: "我的盐选会员",
sub_title: "畅享 10w+ 优质内容",
jump_url: "zhihu://vip/my",
button_text: "查看权益",
};
response = { body: JSON.stringify(obj) };
}
} else {
2022-09-19 22:58:33 +08:00
$.logger.warning(
`没有获取到本次登录用户信息,如未对功能造成影响,请忽略此日志。`
);
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎获取当前用户信息出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* 回答内容优化
*
* @param {*}
* @return {*}
*/
function modifyAnswer() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let html = $.response.body;
2022-06-30 00:26:46 +08:00
// 付费内容提醒
2022-09-19 22:58:33 +08:00
if (
(html.indexOf("查看完整内容") >= 0 ||
html.indexOf("查看全部章节") >= 0) &&
html.indexOf("paid") >= 0
) {
2022-06-30 00:26:46 +08:00
let matchStr = html.match(/(richText[^<]*>)(.)/)[1];
let start = html.lastIndexOf(matchStr) + matchStr.length;
let insertText =
'<a style="height: 42px;padding: 0 12px;border-radius: 6px;background-color: rgb(247 104 104 / 8%);display: block;text-decoration: none;" href="#"><div style="color: #f36;display: flex;-webkit-box-align: center;align-items: center;height: 100%;"><svg style="width: 1.2em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1957"><path d="M821.333333 138.666667c64.8 0 117.333333 52.533333 117.333334 117.333333v149.333333a32 32 0 0 1-32 32 74.666667 74.666667 0 0 0 0 149.333334 32 32 0 0 1 32 32v149.333333c0 64.8-52.533333 117.333333-117.333334 117.333333H202.666667c-64.8 0-117.333333-52.533333-117.333334-117.333333V618.666667a32 32 0 0 1 32-32 74.666667 74.666667 0 0 0 0-149.333334 32 32 0 0 1-32-32V256c0-64.8 52.533333-117.333333 117.333334-117.333333h618.666666zM428.576 329.994667a32 32 0 0 0-43.733333-2.581334l-1.514667 1.344a32 32 0 0 0-2.581333 43.733334L452.565333 458.666667H405.333333l-1.877333 0.053333A32 32 0 0 0 373.333333 490.666667l0.053334 1.877333A32 32 0 0 0 405.333333 522.666667h80v42.666666H405.333333l-1.877333 0.053334A32 32 0 0 0 373.333333 597.333333l0.053334 1.877334A32 32 0 0 0 405.333333 629.333333h80v42.666667l0.053334 1.877333A32 32 0 0 0 517.333333 704l1.877334-0.053333A32 32 0 0 0 549.333333 672v-42.666667H618.666667l1.877333-0.053333A32 32 0 0 0 650.666667 597.333333l-0.053334-1.877333A32 32 0 0 0 618.666667 565.333333h-69.333334v-42.666666H618.666667l1.877333-0.053334A32 32 0 0 0 650.666667 490.666667l-0.053334-1.877334A32 32 0 0 0 618.666667 458.666667h-47.253334l71.84-86.186667 1.248-1.589333a32 32 0 0 0-50.421333-39.381334L512 430.016l-82.08-98.506667z" p-id="1958"></path></svg><div style="flex: 1 1;white-space: nowrap;text-overflow: ellipsis;padding-left:4px"><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;line-height: 20px;color: #f36;white-space: nowrap;font-weight: 600;">知乎助手 · 本文为付费内容</span></div><div><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #f36;line-height: normal;display: flex;-webkit-box-align: center;align-items: center;"><svg style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #f36;line-height: normal;fill: currentcolor;width: 24px;height: 24px;margin: -2px;" fill="currentColor" viewBox="0 0 24 24" width="24" height="24"><path d="M9.218 16.78a.737.737 0 0 0 1.052 0l4.512-4.249a.758.758 0 0 0 0-1.063L10.27 7.22a.737.737 0 0 0-1.052 0 .759.759 0 0 0-.001 1.063L13 12l-3.782 3.716a.758.758 0 0 0 0 1.063z" fill-rule="evenodd"></path></svg></span></div></div></a>';
2022-09-19 22:58:33 +08:00
response = {
body: html.slice(0, start) + insertText + html.slice(start),
};
2022-06-30 00:26:46 +08:00
}
// 营销推广提醒
2022-09-19 22:58:33 +08:00
else if (
html.indexOf("ad-link-card") >= 0 ||
html.indexOf("xg.zhihu.com") >= 0 ||
html.indexOf("知乎营销平台") >= 0
) {
2022-06-30 00:26:46 +08:00
let matchStr = html.match(/(richText[^<]*>)(.)/)[1];
let start = html.lastIndexOf(matchStr) + matchStr.length;
let insertText =
'<a style="height: 42px;padding: 0 12px;border-radius: 6px;background-color: rgb(8 188 212 / 8%);display: block;text-decoration: none;" href="#"><div style="color: #00bcd4;display: flex;-webkit-box-align: center;align-items: center;height: 100%;"><svg style="width: 1.2em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1957"><path d="M128 765.952q0 26.624 18.432 45.056t45.056 18.432l191.488 0 0 128-254.976 0q-26.624 0-49.664-10.24t-40.448-27.648-27.648-40.448-10.24-49.664l0-637.952q0-25.6 10.24-49.152t27.648-40.448 40.448-27.136 49.664-10.24l701.44 0q26.624 0 49.664 10.24t40.448 27.136 27.648 40.448 10.24 49.152l0 251.904-128 1.024 0-61.44q0-26.624-18.432-45.056t-45.056-18.432l-574.464 0q-26.624 0-45.056 18.432t-18.432 45.056l0 382.976zM990.208 705.536q21.504 18.432 22.016 34.304t-20.992 33.28q-21.504 18.432-51.2 41.472t-60.928 48.128-61.952 49.152-55.296 43.52q-26.624 20.48-43.52 15.36t-16.896-31.744q1.024-16.384 0-40.448t-1.024-41.472q0-19.456-10.752-24.064t-31.232-4.608q-21.504 0-39.936-0.512t-35.84-0.512-36.352-0.512-41.472-0.512q-9.216 0-19.968-2.048t-19.456-7.168-14.336-15.36-5.632-27.648l0-80.896q0-31.744 15.36-42.496t48.128-10.752q30.72 1.024 61.44 1.024t71.68 1.024q29.696 0 46.08-5.12t16.384-25.6q-1.024-14.336 0.512-35.328t1.536-37.376q0-26.624 14.336-33.28t36.864 10.752q22.528 18.432 52.736 43.008t61.952 50.688 62.976 51.2 54.784 44.544z" p-id="5859"></path></svg><div style="flex: 1 1;white-space: nowrap;text-overflow: ellipsis;padding-left:4px"><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;line-height: 20px;color: #00bcd4;white-space: nowrap;font-weight: 600;">知乎助手 · 本文含有营销推广</span></div><div><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #f36;line-height: normal;display: flex;-webkit-box-align: center;align-items: center;"><svg style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #00BCD4;line-height: normal;fill: currentcolor;width: 24px;height: 24px;margin: -2px;" fill="currentColor" viewBox="0 0 24 24" width="24" height="24"><path d="M9.218 16.78a.737.737 0 0 0 1.052 0l4.512-4.249a.758.758 0 0 0 0-1.063L10.27 7.22a.737.737 0 0 0-1.052 0 .759.759 0 0 0-.001 1.063L13 12l-3.782 3.716a.758.758 0 0 0 0 1.063z" fill-rule="evenodd"></path></svg></span></div></div></a>';
2022-09-19 22:58:33 +08:00
response = {
body: html.slice(0, start) + insertText + html.slice(start),
};
2022-06-30 00:26:46 +08:00
}
// 购物推广提醒
else if (html.indexOf("mcn-link-card") >= 0) {
let matchStr = html.match(/(richText[^<]*>)(.)/)[1];
let start = html.lastIndexOf(matchStr) + matchStr.length;
let insertText =
'<a style="height: 42px;padding: 0 12px;border-radius: 6px;background-color: rgb(8 188 212 / 8%);display: block;text-decoration: none;" href="#"><div style="color: #00bcd4;display: flex;-webkit-box-align: center;align-items: center;height: 100%;"><svg style="width: 1.2em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1957"><path d="M346.112 806.912q19.456 0 36.864 7.168t30.208 19.968 20.48 30.208 7.68 36.864-7.68 36.864-20.48 30.208-30.208 20.48-36.864 7.68q-20.48 0-37.888-7.68t-30.208-20.48-20.48-30.208-7.68-36.864 7.68-36.864 20.48-30.208 30.208-19.968 37.888-7.168zM772.096 808.96q19.456 0 37.376 7.168t30.72 19.968 20.48 30.208 7.68 36.864-7.68 36.864-20.48 30.208-30.72 20.48-37.376 7.68-36.864-7.68-30.208-20.48-20.48-30.208-7.68-36.864 7.68-36.864 20.48-30.208 30.208-19.968 36.864-7.168zM944.128 227.328q28.672 0 44.544 7.68t22.528 18.944 6.144 24.064-3.584 22.016-13.312 37.888-22.016 62.976-23.552 68.096-18.944 53.248q-13.312 40.96-33.28 56.832t-49.664 15.872l-35.84 0-65.536 0-86.016 0-96.256 0-253.952 0 14.336 92.16 517.12 0q49.152 0 49.152 41.984 0 20.48-9.728 35.328t-38.4 14.848l-49.152 0-94.208 0-118.784 0-119.808 0-99.328 0-55.296 0q-20.48 0-34.304-9.216t-23.04-24.064-14.848-32.256-8.704-32.768q-1.024-6.144-5.632-29.696t-11.264-58.88-14.848-78.848-16.384-87.552q-19.456-103.424-44.032-230.4l-76.8 0q-15.36 0-25.6-7.68t-16.896-18.432-9.216-23.04-2.56-22.528q0-20.48 13.824-33.792t37.376-13.312l21.504 0 21.504 0 25.6 0 34.816 0q20.48 0 32.768 6.144t19.456 15.36 10.24 19.456 5.12 17.408q2.048 8.192 4.096 23.04t4.096 30.208q3.072 18.432 6.144 38.912l700.416 0zM867.328 194.56l-374.784 0 135.168-135.168q23.552-23.552 51.712-24.064t51.712 23.04z"></path></svg><div style="flex: 1 1;white-space: nowrap;text-overflow: ellipsis;padding-left:4px"><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;line-height: 20px;color: #00bcd4;white-space: nowrap;font-weight: 600;">知乎助手 · 本文含有购物推广</span></div><div><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #f36;line-height: normal;display: flex;-webkit-box-align: center;align-items: center;"><svg style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #00BCD4;line-height: normal;fill: currentcolor;width: 24px;height: 24px;margin: -2px;" fill="currentColor" viewBox="0 0 24 24" width="24" height="24"><path d="M9.218 16.78a.737.737 0 0 0 1.052 0l4.512-4.249a.758.758 0 0 0 0-1.063L10.27 7.22a.737.737 0 0 0-1.052 0 .759.759 0 0 0-.001 1.063L13 12l-3.782 3.716a.758.758 0 0 0 0 1.063z" fill-rule="evenodd"></path></svg></span></div></div></a>';
2022-09-19 22:58:33 +08:00
response = {
body: html.slice(0, start) + insertText + html.slice(start),
};
2022-06-30 00:26:46 +08:00
}
// 彩蛋
else if (Math.floor(Math.random() * 200) == 7) {
let matchStr = html.match(/(richText[^<]*>)(.)/)[1];
let start = html.lastIndexOf(matchStr) + matchStr.length;
let insertText =
'<a style="height: 42px;padding: 0 12px;border-radius: 6px;background-color: rgb(74 162 56 / 8%);display: block;text-decoration: none;" href="#"><div style="color: #619201;display: flex;-webkit-box-align: center;align-items: center;height: 100%;"><svg class="icon" style="width: 1.2em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1465"><path d="M512 85.333333c71.477333 0 159.68 57.546667 229.258667 147.018667C817.845333 330.826667 864 455.978667 864 586.666667c0 211.808-148.501333 352-352 352S160 798.474667 160 586.666667c0-130.688 46.144-255.84 122.741333-354.314667C352.32 142.88 440.522667 85.333333 512 85.333333z m0 64c-48.213333 0-120.096 46.912-178.741333 122.314667C265.109333 359.253333 224 470.762667 224 586.666667c0 175.616 119.050667 288 288 288s288-112.384 288-288c0-115.904-41.109333-227.402667-109.258667-315.018667C632.096 196.234667 560.213333 149.333333 512 149.333333z m-74.666667 522.666667a53.333333 53.333333 0 1 1 0 106.666667 53.333333 53.333333 0 0 1 0-106.666667z m-96-128a42.666667 42.666667 0 1 1 0 85.333333 42.666667 42.666667 0 0 1 0-85.333333z" p-id="1466"></path></svg><div style="flex: 1 1;white-space: nowrap;text-overflow: ellipsis;padding-left:4px"><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;line-height: 20px;color: #619201;white-space: nowrap;font-weight: 600;">知乎助手 · 本文为免费内容</span></div><div><span style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #619201;line-height: normal;display: flex;-webkit-box-align: center;align-items: center;"><svg style="font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;-webkit-tap-highlight-color: rgba(26,26,26,0);font-size: 14px;color: #619201;line-height: normal;fill: currentcolor;width: 24px;height: 24px;margin: -2px;" fill="currentColor" viewBox="0 0 24 24" width="24" height="24"><path d="M9.218 16.78a.737.737 0 0 0 1.052 0l4.512-4.249a.758.758 0 0 0 0-1.063L10.27 7.22a.737.737 0 0 0-1.052 0 .759.759 0 0 0-.001 1.063L13 12l-3.782 3.716a.758.758 0 0 0 0 1.063z" fill-rule="evenodd"></path></svg></span></div></div></a>';
2022-09-19 22:58:33 +08:00
response = {
body: html.slice(0, start) + insertText + html.slice(start),
};
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎付费内容提醒出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
/**
* @description: 黑名单管理
* @param {*}
* @return {*}
*/
function manageBlackUser() {
const userInfo = getUserInfo();
let defaultBlockedUsers = {};
2022-09-19 22:58:33 +08:00
let customBlockedUsers = $.data.read(blockedUsersKey, "", userInfo.id);
customBlockedUsers =
typeof customBlockedUsers === "object" && !!customBlockedUsers
? customBlockedUsers
: {};
2022-06-30 00:26:46 +08:00
defaultAnswerBlockedUsers.forEach((element) => {
customBlockedUsers[element] = "00000000000000000000000000000000";
defaultBlockedUsers[element] = "00000000000000000000000000000000";
});
2022-09-19 22:58:33 +08:00
$.logger.debug(
`当前用户id${userInfo.id},脚本黑名单:${JSON.stringify(
customBlockedUsers
)}`
);
2022-06-30 00:26:46 +08:00
// 获取黑名单
2022-09-19 22:58:33 +08:00
if ($.request.method == "GET") {
2022-06-30 00:26:46 +08:00
try {
// 加载黑名单首页时,清空历史黑名单,仅保留脚本默认黑名单
2022-09-19 22:58:33 +08:00
if ($.request.url.indexOf("offset") < 0) {
2022-06-30 00:26:46 +08:00
customBlockedUsers = defaultBlockedUsers;
2022-09-19 22:58:33 +08:00
$.logger.debug("脚本黑名单已清空,请滑动至黑名单末尾保证重新获取完成。");
$.notification.post(
"脚本黑名单已清空,请滑动至黑名单末尾保证重新获取完成。"
);
2022-06-30 00:26:46 +08:00
}
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
if (!!obj["data"]) {
2022-09-19 22:58:33 +08:00
$.logger.debug(`本次滑动获取的黑名单信息:${JSON.stringify(obj["data"])}`);
2022-06-30 00:26:46 +08:00
obj["data"].forEach((element) => {
if (element["name"] != "[已重置]") {
customBlockedUsers[element["name"]] = element["id"];
}
});
2022-09-19 22:58:33 +08:00
$.data.write(blockedUsersKey, customBlockedUsers, userInfo.id);
2022-06-30 00:26:46 +08:00
if (obj["paging"]["is_end"] == true) {
2022-09-19 22:58:33 +08:00
$.notification.post(
`获取脚本黑名单结束,当前黑名单共${
Object.keys(customBlockedUsers).length -
defaultAnswerBlockedUsers.length
}\n脚本内置黑名单${defaultAnswerBlockedUsers.length}`
);
$.logger.debug(`脚本黑名单内容:${JSON.stringify(customBlockedUsers)}`);
2022-06-30 00:26:46 +08:00
}
} else {
2022-09-19 22:58:33 +08:00
$.logger.warning(`获取黑名单失败,接口响应不合法:${$.response.body}`);
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.data.del(blockedUsersKey);
$.logger.error(`获取黑名单失败,异常信息:${err}`);
$.notification.post("获取黑名单失败,执行异常,已清空黑名单。");
2022-06-30 00:26:46 +08:00
}
}
// 写入黑名单
2022-09-19 22:58:33 +08:00
else if ($.request.method == "POST") {
2022-06-30 00:26:46 +08:00
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
if (obj.hasOwnProperty("name") && obj.hasOwnProperty("id")) {
2022-09-19 22:58:33 +08:00
$.logger.debug(
`当前需要加入黑名单的用户Id${obj["id"]},用户名:${obj["name"]}`
);
2022-06-30 00:26:46 +08:00
if (obj["id"]) {
customBlockedUsers[obj["name"]] = obj["id"];
2022-09-19 22:58:33 +08:00
$.data.write(blockedUsersKey, customBlockedUsers, userInfo.id);
$.logger.debug(
`${
obj["name"]
}写入脚本黑名单成功当前脚本黑名单数据${JSON.stringify(
customBlockedUsers
)}`
);
$.notification.post(`已将用户“${obj["name"]}”写入脚本黑名单。`);
2022-06-30 00:26:46 +08:00
} else {
2022-09-19 22:58:33 +08:00
$.logger.error(`${obj["name"]}写入脚本黑名单失败没有获取到用户Id。`);
$.notification.post(`将用户“${obj["name"]}”写入脚本黑名单失败!`);
2022-06-30 00:26:46 +08:00
}
} else {
2022-09-19 22:58:33 +08:00
$.logger.warning(`写入黑名单失败,接口响应不合法:${$.response.body}`);
$.notification.post("写入脚本黑名单失败,接口返回不合法。");
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`写入黑名单失败,异常信息:${err}`);
$.notification.post("写入脚本黑名单失败,执行异常,请查阅日志。");
2022-06-30 00:26:46 +08:00
}
}
// 移出黑名单
2022-09-19 22:58:33 +08:00
else if ($.request.method == "DELETE") {
2022-06-30 00:26:46 +08:00
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
if (obj.success) {
2022-09-19 22:58:33 +08:00
let user_id = $.request.url.match(
/https?:\/\/(api\.zhihu\.com|(103\.41\.167\.(226|234|235|236)))\/settings\/blocked_users\/([0-9a-zA-Z]*)/
)[1];
2022-06-30 00:26:46 +08:00
if (user_id) {
2022-09-19 22:58:33 +08:00
$.logger.debug(`当前需要移出黑名单的用户Id${user_id}`);
2022-06-30 00:26:46 +08:00
for (let username in customBlockedUsers) {
if (customBlockedUsers[username] == user_id) {
delete customBlockedUsers[username];
2022-09-19 22:58:33 +08:00
$.data.write(blockedUsersKey, customBlockedUsers, userInfo.id);
$.logger.debug(
`${username}移出脚本黑名单成功,当前脚本黑名单数据:${JSON.stringify(
customBlockedUsers
)}`
);
$.notification.post(`已将用户“${username}”移出脚本黑名单!`);
2022-06-30 00:26:46 +08:00
break;
}
}
} else {
2022-09-19 22:58:33 +08:00
$.logger.error(
"将用户移出脚本黑名单失败!\n建议从设置中刷新黑名单数据。"
);
$.notification.post(
`将用户移出脚本黑名单失败没有获取到用户Id。\n建议从设置中刷新黑名单数据。`
);
2022-06-30 00:26:46 +08:00
}
} else {
2022-09-19 22:58:33 +08:00
$.logger.warning(`移出黑名单失败,接口响应不合法:${$.response.body}`);
$.notification.post("移出脚本黑名单失败,接口返回不合法。");
2022-06-30 00:26:46 +08:00
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`移出黑名单失败,异常信息:${err}`);
$.notification.post("移出脚本黑名单失败,执行异常,请查阅日志。");
2022-06-30 00:26:46 +08:00
}
}
}
/**
* @description: 获取用户信息
* @param {*}
* @return {*}
*/
function getUserInfo() {
let defaultUserInfo = { id: "default", is_vip: false };
try {
2022-09-19 22:58:33 +08:00
const userInfo = $.data.read(currentUserInfoKey);
2022-06-30 00:26:46 +08:00
if (typeof userInfo === "string") userInfo = JSON.parse(userInfo);
if (!!userInfo && userInfo.hasOwnProperty("id")) {
return userInfo;
} else {
return defaultUserInfo;
}
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`获取用户信息出现异常:${err}`);
2022-06-30 00:26:46 +08:00
return defaultUserInfo;
}
}
/**
* @description: 知乎8.3.0移除推荐页顶部项
* @param {*}
* @return {*}
*/
function removeFeedSections() {
let response = null;
try {
2022-09-19 22:58:33 +08:00
let obj = JSON.parse($.response.body);
2022-06-30 00:26:46 +08:00
obj.guess_like_sections = [];
obj.selected_sections = [];
obj.more_sections = [];
response = { body: JSON.stringify(obj) };
} catch (err) {
2022-09-19 22:58:33 +08:00
$.logger.error(`知乎移除推荐页顶部项出现异常:${err}`);
2022-06-30 00:26:46 +08:00
}
return response;
}
// prettier-ignore
2022-09-19 22:58:33 +08:00
/**
*
* $$\ $$\ $$\ $$$$$\ $$$$$$\ $$$$$$\
* $$$\ $$$ | \__| \__$$ |$$ __$$\ $$ ___$$\
* $$$$\ $$$$ | $$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$ |$$ / \__| \_/ $$ |
* $$\$$\$$ $$ | \____$$\ $$ __$$\ $$ |$$ _____| $$ |\$$$$$$\ $$$$$ /
* $$ \$$$ $$ | $$$$$$$ |$$ / $$ |$$ |$$ / $$\ $$ | \____$$\ \___$$\
* $$ |\$ /$$ |$$ __$$ |$$ | $$ |$$ |$$ | $$ | $$ |$$\ $$ | $$\ $$ |
* $$ | \_/ $$ |\$$$$$$$ |\$$$$$$$ |$$ |\$$$$$$$\\$$$$$$ |\$$$$$$ | \$$$$$$ |
* \__| \__| \_______| \____$$ |\__| \_______|\______/ \______/ \______/
* $$\ $$ |
* \$$$$$$ |
* \______/
*
*/
// prettier-ignore
function MagicJS(e="MagicJS",t="INFO"){const i=()=>{const e=typeof $loon!=="undefined";const t=typeof $task!=="undefined";const n=typeof module!=="undefined";const i=typeof $httpClient!=="undefined"&&!e;const s=typeof $storm!=="undefined";const r=typeof $environment!=="undefined"&&typeof $environment["stash-build"]!=="undefined";const o=i||e||s||r;const u=typeof importModule!=="undefined";return{isLoon:e,isQuanX:t,isNode:n,isSurge:i,isStorm:s,isStash:r,isSurgeLike:o,isScriptable:u,get name(){if(e){return"Loon"}else if(t){return"QuantumultX"}else if(n){return"NodeJS"}else if(i){return"Surge"}else if(u){return"Scriptable"}else{return"unknown"}},get build(){if(i){return $environment["surge-build"]}else if(r){return $environment["stash-build"]}else if(s){return $storm.buildVersion}},get language(){if(i||r){return $environment["language"]}},get version(){if(i){return $environment["surge-version"]}else if(r){return $environment["stash-version"]}else if(s){return $storm.appVersion}else if(n){return process.version}},get system(){if(i){return $environment["system"]}else if(n){return process.platform}},get systemVersion(){if(s){return $storm.systemVersion}},get deviceName(){if(s){return $storm.deviceName}}}};const s=(n,e="INFO")=>{let i=e;const s={SNIFFER:6,DEBUG:5,INFO:4,NOTIFY:3,WARNING:2,ERROR:1,CRITICAL:0,NONE:-1};const r={SNIFFER:"",DEBUG:"",INFO:"",NOTIFY:"",WARNING:"❗ ",ERROR:"❌ ",CRITICAL:"❌ ",NONE:""};const t=(e,t="INFO")=>{if(!(s[i]<s[t.toUpperCase()]))console.log(`[${t}] [${n}]\n${r[t.toUpperCase()]}${e}\n`)};const o=e=>{i=e};return{setLevel:o,sniffer:e=>{t(e,"SNIFFER")},debug:e=>{t(e,"DEBUG")},info:e=>{t(e,"INFO")},notify:e=>{t(e,"NOTIFY")},warning:e=>{t(e,"WARNING")},error:e=>{t(e,"ERROR")},retry:e=>{t(e,"RETRY")}}};return new class{constructor(e,t){this._startTime=Date.now();this.version="3.0.0";this.scriptName=e;this.env=i();this.logger=s(e,t);this.http=typeof MagicHttp==="function"?MagicHttp(this.env,this.logger):undefined;this.data=typeof MagicData==="function"?MagicData(this.env,this.logger):undefined;this.notification=typeof MagicNotification==="function"?MagicNotification(this.scriptName,this.env,this.logger):undefined;this.utils=typeof MagicUtils==="function"?MagicUtils(this.env,this.logger):undefined;this.qinglong=typeof MagicQingLong==="function"?MagicQingLong(this.env,this.data,this.logger):undefined;if(typeof this.data!=="undefined"){let e=this.data.read("magic_loglevel");const n=this.data.read("magic_bark_url");if(e){this.logger.setLevel(e.toUpperCase())}if(n){this.notification.setBark(n)}}}get isRequest(){return typeof $request!=="undefined"&&typeof $response==="undefined"}get isResponse(){return typeof $response!=="undefined"}get isDebug(){return this.logger.level==="DEBUG"}get request(){if(typeof $request!=="undefined"){this.logger.sniffer(`RESPONSE:\n${JSON.stringify($request)}`);return $request}}get response(){if(typeof $response!=="undefined"){if($response.hasOwnProperty("status"))$response["statusCode"]=$response["status"];if($response.hasOwnProperty("statusCode"))$response["status"]=$response["statusCode"];this.logger.sniffer(`RESPONSE:\n${JSON.stringify($response)}`);return $response}else{return undefined}}done=(e={})=>{this._endTime=Date.now();let t=(this._endTime-this._startTime)/1e3;this.logger.info(`SCRIPT COMPLETED: ${t} S.`);if(typeof $done!=="undefined"){$done(e)}}}(e,t)}
// prettier-ignore
function MagicNotification(r,f,l){let s=null;let u=null;const c=typeof MagicHttp==="function"?MagicHttp(f,l):undefined;const e=t=>{try{let e=t.replace(/\/+$/g,"");s=`${/^https?:\/\/([^/]*)/.exec(e)[0]}/push`;u=/\/([^\/]+)\/?$/.exec(e)[1]}catch(e){l.error(`Bark url error: ${e}.`)}};function t(e=r,t="",i="",o=""){const n=i=>{try{let t={};if(typeof i==="string"){if(f.isLoon)t={openUrl:i};else if(f.isQuanX)t={"open-url":i};else if(f.isSurge)t={url:i}}else if(typeof i==="object"){if(f.isLoon){t["openUrl"]=!!i["open-url"]?i["open-url"]:"";t["mediaUrl"]=!!i["media-url"]?i["media-url"]:""}else if(f.isQuanX){t=!!i["open-url"]||!!i["media-url"]?i:{}}else if(f.isSurge){let e=i["open-url"]||i["openUrl"];t=e?{url:e}:{}}}return t}catch(e){l.error(`Failed to convert notification option, ${e}`)}return i};o=n(o);if(arguments.length==1){e=r;t="",i=arguments[0]}l.notify(`title:${e}\nsubTitle:${t}\nbody:${i}\noptions:${typeof o==="object"?JSON.stringify(o):o}`);if(f.isSurge){$notification.post(e,t,i,o)}else if(f.isLoon){if(!!o)$notification.post(e,t,i,o);else $notification.post(e,t,i)}else if(f.isQuanX){$notify(e,t,i,o)}if(s&&u&&typeof c!=="undefined"){p(e,t,i)}}function i(e=r,t="",i="",o=""){if(l.level==="DEBUG"){if(arguments.length==1){e=r;t="",i=arguments[0]}this.notify(e,t,i,o)}}function p(e=r,t="",i="",o=""){if(typeof c==="undefined"||typeof c.post==="undefined"){throw"Bark notification needs to import MagicHttp module."}let n={url:s,headers:{"Content-Type":"application/json; charset=utf-8"},body:{title:e,body:t?`${t}\n${i}`:i,device_key:u}};c.post(n).catch(e=>{l.error(`Bark notify error: ${e}`)})}return{post:t,debug:i,bark:p,setBark:e}}
// prettier-ignore
function MagicData(l,f){let u={fs:undefined,data:{}};if(l.isNode){u.fs=require("fs");try{u.fs.accessSync("./magic.json",u.fs.constants.R_OK|u.fs.constants.W_OK)}catch(e){u.fs.writeFileSync("./magic.json","{}",{encoding:"utf8"})}u.data=require("./magic.json")}const o=(e,t)=>{if(typeof t==="object"){return false}else{return e===t}};const a=e=>{if(e==="true"){return true}else if(e==="false"){return false}else if(typeof e==="undefined"){return null}else{return e}};const c=(e,t,r,s)=>{if(r){try{if(typeof e==="string")e=JSON.parse(e);if(e["magic_session"]===true){e=e[r]}else{e=null}}catch{e=null}}if(typeof e==="string"&&e!=="null"){try{e=JSON.parse(e)}catch{}}if(s===false&&!!e&&e["magic_session"]===true){e=null}if((e===null||typeof e==="undefined")&&t!==null&&typeof t!=="undefined"){e=t}e=a(e);return e};const i=t=>{if(typeof t==="string"){let e={};try{e=JSON.parse(t);const r=typeof e;if(r!=="object"||e instanceof Array||r==="bool"||e===null){e={}}}catch{}return e}else if(t instanceof Array||t===null||typeof t==="undefined"||t!==t||typeof t==="boolean"){return{}}else{return t}};const y=(e,t=null,r="",s=false,n=null)=>{let i=n||u.data;if(!!i&&typeof i[e]!=="undefined"&&i[e]!==null){val=i[e]}else{val=!!r?{}:null}val=c(val,t,r,s);return val};const d=(e,t=null,r="",s=false,n=null)=>{let i="";if(n||l.isNode){i=y(e,t,r,s,n)}else{if(l.isSurgeLike){i=$persistentStore.read(e)}else if(l.isQuanX){i=$prefs.valueForKey(e)}i=c(i,t,r,s)}f.debug(`READ DATA [${e}]${!!r?`[${r}]`:""} <${typeof i}>\n${JSON.stringify(i)}`);return i};const p=(t,r,s="",e=null)=>{let n=e||u.data;n=i(n);if(!!s){let e=i(n[t]);e["magic_session"]=true;e[s]=r;n[t]=e}else{n[t]=r}if(e!==null){e=n}return n};const g=(e,t,r="",s=null)=>{if(typeof t==="undefined"||t!==t){return false}if(!l.isNode&&(typeof t==="boolean"||typeof t==="number")){t=String(t)}let n="";if(s||l.isNode){n=p(e,t,r,s)}else{if(!r){n=t}else{if(l.isSurgeLike){n=!!$persistentStore.read(e)?$persistentStore.read(e):n}else if(l.isQuanX){n=!!$prefs.valueForKey(e)?$prefs.valueForKey(e):n}n=i(n);n["magic_session"]=true;n[r]=t}}if(!!n&&typeof n==="object"){n=JSON.stringify(n,"","\t")}f.debug(`WRITE DATA [${e}]${r?`[${r}]`:""} <${typeof t}>\n${JSON.stringify(t)}`);if(!s){if(l.isSurgeLike){return $persistentStore.write(n,e)}else if(l.isQuanX){return $prefs.setValueForKey(n,e)}else if(l.isNode){try{u.fs.writeFileSync("./magic.json",n);return true}catch(e){f.error(e);return false}}}return true};const e=(t,r,s,n=o,i=null)=>{r=a(r);const e=d(t,null,s,false,i);if(n(e,r)===true){return false}else{const l=g(t,r,s,i);let e=d(t,null,s,false,i);if(n===o&&typeof e==="object"){return l}return n(r,e)}};const S=(e,t,r)=>{let s=r||u.data;s=i(s);if(!!t){obj=i(s[e]);delete obj[t];s[e]=obj}else{delete s[e]}if(!!r){r=s}return s};const t=(e,t="",r=null)=>{let s={};if(r||l.isNode){s=S(e,t,r);if(!r){u.fs.writeFileSync("./magic.json",JSON.stringify(s))}else{r=s}}else{if(!t){if(l.isStorm){return $persistentStore.remove(e)}else if(l.isSurgeLike){return $persistentStore.write(null,e)}else if(l.isQuanX){return $prefs.removeValueForKey(e)}}else{if(l.isSurgeLike){s=$persistentStore.read(e)}else if(l.isQuanX){s=$prefs.valueForKey(e)}s=i(s);delete s[t];const n=JSON.stringify(s);g(e,n)}}f.debug(`DELETE KEY [${e}]${!!t?`[${t}]`:""}`)};const r=(e,t=null)=>{let r=[];let s=d(e,null,null,true,t);s=i(s);if(s["magic_session"]!==true){r=[]}else{r=Object.keys(s).filter(e=>e!=="magic_session")}f.debug(`READ ALL SESSIONS [${e}] <${typeof r}>\n${JSON.stringify(r)}`);return r};return{read:d,write:g,del:t,update:e,allSessions:r,defaultValueComparator:o,convertToObject:i}}