forked from XIU2/UserScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zhiyoo-Enhanced.user.js
489 lines (447 loc) · 21.6 KB
/
Zhiyoo-Enhanced.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
// ==UserScript==
// @name 智友邦论坛增强
// @version 1.1.9
// @author X.I.U
// @description 自动签到、自动回复、自动无缝翻页、回到顶部(右键点击两侧空白处)、清理置顶帖子、简化附件兑换/下载、清理帖子标题〖XXX〗【XXX】文字
// @icon http://bbs.zhiyoo.net/favicon.ico
// @match *://bbs.zhiyoo.net/*
// @match *://www.zhiyoo.net/search.php*
// @grant GM_xmlhttpRequest
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_openInTab
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_notification
// @license GPL-3.0 License
// @run-at document-end
// @namespace https://greasyfork.org/scripts/412362
// @supportURL https://github.com/XIU2/UserScript
// @homepageURL https://github.com/XIU2/UserScript
// ==/UserScript==
(function() {
'use strict';
var menu_ALL = [
['menu_autoReply', '自动回复', '自动回复', true],
['menu_pageLoading', '自动无缝翻页', '自动无缝翻页', true],
['menu_backToTop', '回到顶部(右键点击两侧空白处)', '回到顶部', true],
['menu_cleanTopPost', '清理置顶帖子', '清理置顶帖子', true],
['menu_cleanPostTitle', '清理帖子标题开头〖〗【】文字', '清理帖子标题开头〖〗【】文字', true],
['menu_qianDaoRedirectURL', '当前页面设为签到后重定向地址', '已设置当前页面为签到后重定向地址', 'http://bbs.zhiyoo.net/forum.php?mod=forumdisplay&fid=42&filter=author&orderby=dateline']
], menu_ID = [];
for (let i=0;i<menu_ALL.length;i++){ // 如果读取到的值为 null 就写入默认值
if (GM_getValue(menu_ALL[i][0]) == null){GM_setValue(menu_ALL[i][0], menu_ALL[i][3])};
}
registerMenuCommand();
// 注册脚本菜单
function registerMenuCommand() {
if (menu_ID.length > menu_ALL.length){ // 如果菜单ID数组多于菜单数组,说明不是首次添加菜单,需要卸载所有脚本菜单
for (let i=0;i<menu_ID.length;i++){
GM_unregisterMenuCommand(menu_ID[i]);
}
}
for (let i=0;i<menu_ALL.length;i++){ // 循环注册脚本菜单
menu_ALL[i][3] = GM_getValue(menu_ALL[i][0]);
if (menu_ALL[i][0] == 'menu_qianDaoRedirectURL') {
menu_ID[i] = GM_registerMenuCommand(`#️⃣ ${menu_ALL[i][1]}`, function(){GM_setValue(`${menu_ALL[i][0]}`, location.href);GM_notification({text: `${menu_ALL[i][2]}`, timeout: 3000});})
} else {
menu_ID[i] = GM_registerMenuCommand(`${menu_ALL[i][3]?'✅':'❌'} ${menu_ALL[i][1]}`, function(){menu_switch(`${menu_ALL[i][3]}`,`${menu_ALL[i][0]}`,`${menu_ALL[i][2]}`)});
}
}
menu_ID[menu_ID.length] = GM_registerMenuCommand('💬 反馈 & 建议', function () {window.GM_openInTab('https://github.com/XIU2/UserScript#xiu2userscript', {active: true,insert: true,setParent: true});window.GM_openInTab('https://greasyfork.org/zh-CN/scripts/412362/feedback', {active: true,insert: true,setParent: true});});
}
// 菜单开关
function menu_switch(menu_status, Name, Tips) {
if (menu_status == 'true'){
GM_setValue(`${Name}`, false);
GM_notification({text: `已关闭 [${Tips}] 功能\n(点击刷新网页后生效)`, timeout: 3500, onclick: function(){location.reload();}});
}else{
GM_setValue(`${Name}`, true);
GM_notification({text: `已开启 [${Tips}] 功能\n(点击刷新网页后生效)`, timeout: 3500, onclick: function(){location.reload();}});
}
registerMenuCommand(); // 重新注册脚本菜单
};
// 返回菜单值
function menu_value(menuName) {
for (let menu of menu_ALL) {
if (menu[0] == menuName) {
return menu[3]
}
}
}
// 随机回复帖子的内容
var replyList = [
"感谢楼主分享的内容!",
"感谢分享!给你点赞!",
"感谢分享!论坛因你更精彩!",
"看看隐藏内容是什么!谢谢!",
"先下载看看好不好用!",
"楼主一生平安!好人一生平安!",
"搞机上智友提问下资源!",
"马克!智友邦你搞机!",
"你说的观点我也很支持!",
"楼主太棒了!我先下为敬!",
"给楼主点赞,希望继续分享!",
"感谢智友帮论坛,感谢LZ热心分享!",
"感谢楼主分享优质内容,希望继续努力!",
"下载试用一下,如果用着不错就给楼主顶贴!",
"这么好的东西!感谢楼主分享!感谢智友帮论坛!",
"希望楼主继续分享更多好用的东西!谢谢!",
"看到楼主这么努力分享,我只能顶个贴感谢一下了!",
"好东西,拿走了,临走顶个贴感谢一下楼主!",
"这就非常给力了!感谢分享!",
"厉害了!先收藏,再回复!谢谢!"
];
// 帖子数量,避免重复清理帖子列表中帖子标题开头的〖XXX〗【XXX】文字,用于提高效率
var postNum = 0;
// 检查是否登陆
var loginStatus = false;
if (document.querySelector('.Quater_user.logined')){
loginStatus = true;
}
// 默认 ID 为 0
var curSite = {SiteTypeID: 0};
// 自动翻页规则
let DBSite = {
forumdisplay: {
SiteTypeID: 1,
pager: {
nextLink: '//a[@class="nxt"][@href]',
pageElement: 'css;table#threadlisttableid > tbody[id^="normalthread_"]',
HT_insert: ['css;table#threadlisttableid', 2],
replaceE: 'css;div.pg'
}
},
search: {
SiteTypeID: 2,
pager: {
nextLink: '//a[@class="nxt"][@href]',
pageElement: 'css;div#threadlist > ul',
HT_insert: ['css;div#threadlist', 2],
replaceE: 'css;div.pg'
}
}
};
// 用于脚本内部判断当前 URL 类型
let SiteType = {
FORUMDISPLAY: DBSite.forumdisplay.SiteTypeID, // 各板块帖子列表
SEARCH: DBSite.search.SiteTypeID // 搜索结果列表
};
var attachmentHrefTime = 0;
curSite.pageUrl = ""; // 下一页URL
var patt_thread = /\/thread-\d+-\d+\-\d+.html/, // 匹配 /thread-XXX-X-X.html 帖子正则表达式
patt_search = /\/thread-\d+-\d+\-\d+.html/, // 匹配搜索结果列表正则表达式
patt_posttitle = /^〖.+〗(:)?|^【.+】(:)?/, // 匹配帖子标题中的〖XXX〗【XXX】正则表达式
patt_attachment_href = /(?<=\\').+(?=\\')/
if (location.pathname === '/plugin.php'){
switch(getQueryVariable("id"))
{
case 'dsu_paulsign:sign': // 被重定向到签到页面
qiandao(); // 自动签到
break;
case 'piaobo_attachment': // 兑换附件后的提示页面
attachmentBack(); // 立即返回帖子
break;
case 'threed_attach:downld': // 附件下载页面
goPan(); // 跳转至网盘页
break;
}
}else if(location.pathname === '/forum.php'){
switch(getQueryVariable("mod"))
{
case 'viewthread': // 浏览帖子内容
showHide(); // 先看看是否有隐藏内容,如果已显示则定位到隐藏内容区域,如果没有隐藏内容,则啥都不干
autoReply(); // 自动回复(有隐藏内容才会回复),回复过就定位到底部(隐藏内容区域)
var attachmentHref_Interval = setInterval(attachmentHref,100); // 兑换附件按钮改为直链(不再弹出确认提示框)
break;
case 'forumdisplay': // 浏览帖子列表
curSite = DBSite.forumdisplay; // 帖子列表页(自动翻页)
cleanTop(); // 清理置顶帖子
cleanPostTitle(); // 清理帖子列表中帖子标题开头的〖XXX〗【XXX】文字
pageLoading(); // 自动无缝翻页
break;
}
backToTop(); // 回到顶部(右键点击两侧空白处)
}else if(location.pathname === '/search.php'){
curSite = DBSite.search; // 搜索结果列表页(自动翻页)
pageLoading(); // 自动无缝翻页
}else if (patt_thread.test(location.pathname)){ // 对于 /thread-XXX-X-X.html 这种帖子页面也和上面一样
showHide();
autoReply();
}
// 自动签到
function qiandao(){
if (loginStatus){
if(document.getElementById('yl'))
{
document.getElementById('yl').click();
document.querySelector('td.tr3.tac div a').click();
}
setTimeout(location.href=menu_value('menu_qianDaoRedirectURL'), 2000); // 跳转到指定URL
}
}
// 自动回复
function autoReply(){
if (!menu_value('menu_autoReply')) return
if (loginStatus){
// 存在隐藏内容,自动回复
if (document.getElementsByClassName("showhide").length == 0){
writeReply();
// 如果使用了我的 [智友邦美化] 脚本,则定位至底部,反之定位至隐藏内容区域
if (document.getElementById("fastpostmessage").offsetParent == null){
setTimeout(function(){window.scrollTo(0,99999999)}, 1000);
}else{
setTimeout(function(){window.scrollTo(0,document.querySelector('.showhide').offsetTop)}, 1000);
}
}
}
}
// 写入自动回复内容
function writeReply(){
let textarea = document.getElementById("fastpostmessage");
if (textarea){
// 随机写入回复内容
textarea.value = textarea.value + replyList[Math.floor((Math.random()*replyList.length))] + replyList[Math.floor((Math.random()*replyList.length))];
//console.log(`${textarea.value}`)
let fastpostsubmit = document.getElementById("fastpostsubmit");
if (fastpostsubmit){
setTimeout(function(){fastpostsubmit.click()}, 200);
}
}
}
// 定位到隐藏内容区域
function showHide(){
if (loginStatus){
// 如果已显示隐藏内容,则定位到隐藏内容区域
// 如果没有发现已显示隐藏内容,就不定位了
if (document.getElementsByClassName("showhide").length > 0){
// 如果使用了我的 [智友邦美化] 脚本,则定位至底部,反之定位至隐藏内容区域
if (document.getElementById("fastpostmessage").offsetParent == null){
setTimeout(function(){window.scrollTo(0,99999999)}, 1000);
}else{
setTimeout(function(){window.scrollTo(0,document.querySelector('.showhide').offsetTop)}, 1000);
}
}
}
}
// 回到顶部(右键点击空白处)
function backToTop() {
if (!menu_value('menu_backToTop')) return
document.getElementById("nv_forum").oncontextmenu = function(event){
if (event.target==this) {
event.preventDefault();
window.scrollTo(0,0)
}
}
}
// 清理置顶帖子
function cleanTop(){
if (!menu_value('menu_cleanTopPost')) return
let showhide = document.querySelectorAll("a.showhide.y");
if (showhide.length > 0){
showhide.forEach(el=>el.click());
}
}
// 兑换附件后立即返回
function attachmentBack() {
let attachmentback = document.querySelector('#messagetext p.alert_btnleft a');
if (attachmentback){
attachmentback.click();
}
}
// 附件下载页直接跳转至网盘
function goPan() {
let gopan = document.querySelector('.threed_panbox .panframe .pan_left p a');
if (gopan){
location.href=gopan.href;
}
}
// 兑换附件按钮改为直链(不再弹出确认提示框)
function attachmentHref() {
attachmentHrefTime += 1; // 计算该函数执行次数
let attachmenthref = document.querySelector('.tab_button .button a');
if (attachmenthref && attachmenthref.href == "javascript:;"){
let attachmenthref_href = attachmenthref.onclick.toString();
attachmenthref.href = attachmenthref_href.match(patt_attachment_href)[0];
attachmenthref.onclick = null;
}
if (attachmentHrefTime == 50 || document.getElementsByClassName("showhide").length > 0){ // 当该函数执行超过50次(5秒),或没有隐藏内容时停止定时执行
clearInterval(attachmentHref_Interval)
}
}
// 清理帖子列表中帖子标题开头的〖XXX〗【XXX】文字
function cleanPostTitle(){
if (!menu_value('menu_cleanPostTitle')) return
let cleanposttitle = document.querySelectorAll("a.s.xst");
if (cleanposttitle.length > 0){
for(let num = postNum;num<cleanposttitle.length;num++){
cleanposttitle[num].innerText = cleanposttitle[num].innerText.replace(patt_posttitle, ``);
postNum += 1;
}
}
}
// 自动无缝翻页
function pageLoading() {
if (!menu_value('menu_pageLoading')) return
if (curSite.SiteTypeID > 0){
windowScroll(function (direction, e) {
if (direction === 'down') { // 下滑才准备翻页
let scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;
let scrollDelta = 666;
if (document.documentElement.scrollHeight <= document.documentElement.clientHeight + scrollTop + scrollDelta) {
ShowPager.loadMorePage();
}
}
});
}
}
// 滚动条事件
function windowScroll(fn1) {
var beforeScrollTop = document.documentElement.scrollTop,
fn = fn1 || function () {};
setTimeout(function () { // 延时执行,避免刚载入到页面就触发翻页事件
window.addEventListener('scroll', function (e) {
var afterScrollTop = document.documentElement.scrollTop,
delta = afterScrollTop - beforeScrollTop;
if (delta == 0) return false;
fn(delta > 0 ? 'down' : 'up', e);
beforeScrollTop = afterScrollTop;
}, false);
}, 1000)
}
// 修改自 https://greasyfork.org/scripts/14178 , https://github.com/machsix/Super-preloader
var ShowPager = {
getFullHref: function (e) {
if (e != null && e.nodeType === 1 && e.href && e.href.slice(0,4) === 'http') return e.href;
return '';
},
createDocumentByString: function (e) {
if (e) {
if ('HTML' !== document.documentElement.nodeName) return (new DOMParser).parseFromString(e, 'application/xhtml+xml');
var t;
try { t = (new DOMParser).parseFromString(e, 'text/html');} catch (e) {}
if (t) return t;
if (document.implementation.createHTMLDocument) {
t = document.implementation.createHTMLDocument('ADocument');
} else {
try {((t = document.cloneNode(!1)).appendChild(t.importNode(document.documentElement, !1)), t.documentElement.appendChild(t.createElement('head')), t.documentElement.appendChild(t.createElement('body')));} catch (e) {}
}
if (t) {
var r = document.createRange(),
n = r.createContextualFragment(e);
r.selectNodeContents(document.body);
t.body.appendChild(n);
for (var a, o = { TITLE: !0, META: !0, LINK: !0, STYLE: !0, BASE: !0}, i = t.body, s = i.childNodes, c = s.length - 1; c >= 0; c--) o[(a = s[c]).nodeName] && i.removeChild(a);
return t;
}
} else console.error('没有找到要转成 DOM 的字符串');
},
loadMorePage: function () {
if (curSite.pager) {
let curPageEle = getElementByXpath(curSite.pager.nextLink);
var url = this.getFullHref(curPageEle);
//console.log(`${url} ${curSite.pageUrl}`);
if(url === '') return;
if(curSite.pageUrl === url) return;// 不会重复加载相同的页面
curSite.pageUrl = url;
// 读取下一页的数据
curSite.pager.startFilter && curSite.pager.startFilter();
GM_xmlhttpRequest({
url: url,
method: "GET",
timeout: 5000,
onload: function (response) {
try {
var newBody = ShowPager.createDocumentByString(response.responseText);
let pageElems = getAllElements(curSite.pager.pageElement, newBody, newBody);
let toElement = getAllElements(curSite.pager.HT_insert[0])[0];
if (pageElems.length >= 0) {
let addTo = "beforeend";
if (curSite.pager.HT_insert[1] == 1) addTo = "beforebegin";
// 插入新页面元素
pageElems.forEach(function (one) {
toElement.insertAdjacentElement(addTo, one);
});
// 清理帖子列表中帖子标题开头的〖XXX〗【XXX】文字
cleanPostTitle();
// 替换待替换元素
try {
let oriE = getAllElements(curSite.pager.replaceE);
let repE = getAllElements(curSite.pager.replaceE, newBody, newBody);
if (oriE.length === repE.length) {
for (var i = 0; i < oriE.length; i++) {
oriE[i].outerHTML = repE[i].outerHTML;
}
}
} catch (e) {
console.log(e);
}
}
} catch (e) {
console.log(e);
}
}
});
}
},
};
function getElementByCSS(css, contextNode = document) {
return contextNode.querySelector(css);
}
function getAllElementsByCSS(css, contextNode = document) {
return [].slice.call(contextNode.querySelectorAll(css));
}
function getElementByXpath(xpath, contextNode, doc = document) {
contextNode = contextNode || doc;
try {
const result = doc.evaluate(xpath, contextNode, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
// 应该总是返回一个元素节点
return result.singleNodeValue && result.singleNodeValue.nodeType === 1 && result.singleNodeValue;
} catch (err) {
throw new Error(`Invalid xpath: ${xpath}`);
}
}
function getAllElementsByXpath(xpath, contextNode, doc = document) {
contextNode = contextNode || doc;
const result = [];
try {
const query = doc.evaluate(xpath, contextNode, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
for (let i = 0; i < query.snapshotLength; i++) {
const node = query.snapshotItem(i);
// 如果是 Element 节点
if (node.nodeType === 1) result.push(node);
}
} catch (err) {
throw new Error(`无效 Xpath: ${xpath}`);
}
return result;
}
function getAllElements(selector, contextNode = undefined, doc = document, win = window, _cplink = undefined) {
if (!selector) return [];
contextNode = contextNode || doc;
if (typeof selector === 'string') {
if (selector.search(/^css;/i) === 0) {
return getAllElementsByCSS(selector.slice(4), contextNode);
} else {
return getAllElementsByXpath(selector, contextNode, doc);
}
} else {
const query = selector(doc, win, _cplink);
if (!Array.isArray(query)) {
throw new Error('getAllElements 返回错误类型');
} else {
return query;
}
}
}
// 获取GET参数
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);
}
})();