forked from ywzhaiqi/userscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kindle人助手.user.js
283 lines (241 loc) · 8.6 KB
/
Kindle人助手.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
// ==UserScript==
// @name Kindle人助手
// @namespace https://github.com/ywzhaiqi
// @version 2015.2.15
// @description kindle人论坛增加排序功能,自动给查看的帖子链接着色
// @include http://kindleren.com/*
// @include http://kandouren.com/forum.php*
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// @noframes
// @require http://cdn.staticfile.org/jquery/2.1.1/jquery.min.js
// ==/UserScript==
var tidLinkSelector = [
'#portal_block_51_content a', // 首页的本日最热
'#threadlist a.xst', // 精品区、分享区的条目
'.fl_by a.xi2', // 这个页面的最新回帖 http://kandouren.com/forum.php?gid=49
].join(', ');
var ns = {
init: function() {
// if (location.search.indexOf('mod=forumdisplay') == -1) return;
this.tidHash = this.getTidHash();
GM_addStyle('.gm-exists { color: green !important; }');
this.hightlight();
document.addEventListener('Super_preloaderPageLoaded', this.hightlight.bind(this), false);
$('body').on('mousedown', tidLinkSelector, function(event) {
var $this = $(this);
if ($this.hasClass('gm-exists')) return;
$this.addClass('gm-exists');
ns.addTid($this.attr('href'));
});
ns.addSortButton();
if (location.search.indexOf('mod=viewthread&tid=') != -1) {
ns.addTid(location.href);
}
GM_registerMenuCommand('导入kindle人tid', ns.importTids);
},
hightlight: function () {
$(tidLinkSelector).each(function() {
var $this = $(this);
if ($this.hasClass('gm-exists')) return;
var tid = ns.getTidFromUrl($this.attr('href'));
if (tid in ns.tidHash) {
$this.addClass('gm-exists');
}
})
},
addSortButton: function() {
if (location.search.indexOf('fid=50') !== -1) {
$('<li></li>')
.html('分类: <a class="creator">自制/自购</a>' + '<span class="pipe">|</span>' +
'<a class="bookType">内容分类</a>')
.appendTo('.pop_moremenu')
.click(ns.sortByType)
} else if (location.search.indexOf('fid=54') !== -1) { // 求书版块
$('<span>')
.css('cursor', 'pointer')
.text('按悬赏金额排序')
.click(ns.sortByMonkey)
.insertAfter('#filter_dateline')
}
},
importTids: function() {
while(true) {
var data = prompt('请输入要导入的 json 数据');
var arr;
try {
// arr = JSON.parse(data);
arr = eval(data);
} catch(ex) {}
if (!Array.isArray(arr)) {
alert('导入的数据有误,请重新导入');
continue;
}
ns.addTid(arr);
alert('已导入 ' + arr.length + ' 条数据');
break;
}
},
exportTids: function() {
var tidHash = ns.getTidHash();
var tids = Object.keys(tidHash);
saveAs(tids, 'kindleren_tids.json');
},
exportUnDownBooks: function() {
var books = {};
jQuery('.bn50book_ds_item').each(function() {
var $this = jQuery(this);
if ($this.find('.gm-exists').size()) return;
var link = $this.find('.xst'),
linkTitle = link.text(),
url = link.attr('href');
var creatInfo = $this.find('.booklistinfo > em:first()').text();
if (!(creatInfo in books))
books[creatInfo] = [];
books[creatInfo].push({
title: ns.getBookTitle(linkTitle),
oTitle: linkTitle,
url: url,
tid: ns.getTidFromUrl(url),
type: $this.find('.booklistinfo > em:last()').text().replace(/\[|\]/g, '')
});
});
if (Object.keys(books).length) {
saveAs(JSON.stringify(books, null, 4), 'kindlerenToDownload.json');
console.log('已成功复制');
} else {
console.log('没有需要下载的');
}
},
// 功能区
sortByType: function(event) { // 把表格按照类型排序
if (event.target.nodeName !== 'A') return;
event.stopPropagation();
event.preventDefault();
var sortType = event.target.className;
var getBookType = function(tbody) {
if (sortType == 'creator')
return $(tbody).find('.common em:first() > a').text();
if (sortType == 'bookType') {
// 排除 azw 等类别
var links = jQuery(tbody).find('.common em > a').toArray();
for (var i = links.length - 1, text; i >= 0; i--) {
text = $(links[i]).text();
if (!text.match(/\w/)) {
return text;
}
}
}
};
var tbodyHash = { header: [] };
// 不和下面的合并,是因为这样支持多个,让翻页脚本可用
jQuery('#threadlisttableid > tbody[id^="normalthread_"]').each(function() {
var type = getBookType(this);
if (!type) {
tbodyHash.header.push(this);
return;
}
if (!(type in tbodyHash)) {
tbodyHash[type] = [];
}
tbodyHash[type].push(this);
});
// 重新排列
var $table = jQuery('#threadlisttableid');
jQuery.each(tbodyHash, function(type, tbodyArr) {
tbodyArr.forEach(function(el) {
$table.append(el);
});
});
},
sortByMonkey: function() {
var tbodyHash = { header: [] };
// 这样支持多个,让翻页脚本可用
jQuery('#threadlisttableid > tbody').each(function() {
var monkey = jQuery(this).find('.xw1').text();
if (!monkey) {
tbodyHash.header.push(this);
return;
}
if (!(monkey in tbodyHash)) {
tbodyHash[monkey] = [];
}
tbodyHash[monkey].push(this);
});
// 插入
var $table = jQuery('#threadlisttableid');
Object.keys(tbodyHash).reverse().forEach(function(monkey) {
tbodyHash[monkey].forEach(function(el) {
$table.append(el);
});
});
},
// tid 区
addTid: function(urlOrArr) {
if (!Array.isArray(urlOrArr))
urlOrArr = [urlOrArr];
// 先判断是否已经存在
var tids = [];
urlOrArr.forEach(function(url) {
if (isObject(url))
url = url.url;
var tid = ns.getTidFromUrl(url);
if (!(tid in ns.tidHash))
tids.push(tid);
});
if (tids.length) {
// 获取最新的
var tidHash = ns.getTidHash();
tids.forEach(function(tid) {
tidHash[tid] = true;
});
ns.saveTidHash(tidHash);
}
},
getTidHash: function() {
return JSON.parse(GM_getValue('tidHash', '[]'))
},
saveTidHash: function(tidHash) {
tidHash = tidHash || ns.tidHash;
GM_setValue('tidHash', JSON.stringify(tidHash));
},
// 工具区
getTidFromUrl: function (url) {
var m = url.match(/&tid=(\d+)/i);
return m ? m[1] : url;
},
getBookTitle: function(str) { // 从论坛列表中获取简短的标题
var match = str.match(/《(.*?)》/);
if (match) {
return match[1];
} else {
return str.replace(/(作者:|\(|(|。|\[Kindle电子书\]).*$/, '').trim()
}
}
};
function isObject(obj) {
return Object.prototype.toString.call(obj) == '[object Object]';
}
function saveAs(data, filename) {
if(!filename) filename = 'console.json'
if (typeof data == 'object') {
data = JSON.stringify(data);
}
var blob = new Blob([data], { type: 'application/octet-stream' });
var url = window.URL.createObjectURL(blob);
var saveas = document.createElement('a');
saveas.href = url;
saveas.style.display = 'none';
document.body.appendChild(saveas);
saveas.download = filename;
saveas.click();
setTimeout(function() {
saveas.parentNode.removeChild(saveas);
}, 1000)
document.addEventListener('unload', function() {
window.URL.revokeObjectURL(url);
});
}
ns.init();