forked from cds-1993/btschool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBTSchool 链接提取V1.1-1.0.user.js
149 lines (124 loc) · 5.57 KB
/
BTSchool 链接提取V1.1-1.0.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
// ==UserScript==
// @name BTSchool 链接提取V1.1
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 提取BTSchool当前页面的种子信息
// @author 武极 [email protected]
// @match https://pt.btschool.club/torrents.php*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 创建一个按钮元素
var extractButton = document.createElement('button');
extractButton.textContent = '提取并下载数据';
extractButton.style.position = 'fixed';
extractButton.style.top = '10px';
extractButton.style.right = '10px';
extractButton.style.zIndex = '1000';
// 创建第二个按钮元素
var downloadButton = document.createElement('button');
downloadButton.textContent = '生成下载链接并下载';
downloadButton.style.position = 'fixed';
downloadButton.style.top = '40px';
downloadButton.style.right = '10px';
downloadButton.style.zIndex = '1000';
// 将按钮添加到页面中
document.body.appendChild(extractButton);
document.body.appendChild(downloadButton);
// 用于存储提取的数据
var extractedData = [];
// 提取按钮点击事件处理函数
extractButton.addEventListener('click', function() {
// 找到第一个<table class="torrents">元素
var table = document.querySelector('table.torrents');
// 找到所有<tr>元素
var trElements = table.querySelectorAll('tr');
// 用于存储所有结果的数组
var results = [];
// 遍历所有<tr>元素
trElements.forEach(function(tr, index) {
// 跳过表头行(假设表头行是第一个<tr>)
if (index === 0) return;
var tdContents = [];
var tds = tr.querySelectorAll('td.rowfollow.nowrap, td.rowfollow');
// 遍历所有符合条件的<td>元素
tds.forEach(function(td, tdIndex) {
if (tdIndex === 0) {
// 第一个td元素,提取img标签下的title内容
var imgElement = td.querySelector('img');
if (imgElement && imgElement.hasAttribute('title')) {
tdContents.push(imgElement.getAttribute('title'));
} else {
tdContents.push('');
}
} else if (tdIndex === 1) {
// 第二个td元素,提取其下面第一个class为embedded的<td>元素中的<a>标签的title内容和href内容
var embeddedTd = td.querySelector('td.embedded');
if (embeddedTd) {
var aElement = embeddedTd.querySelector('a');
if (aElement) {
var title = aElement.hasAttribute('title') ? aElement.getAttribute('title') : '';
var href = aElement.hasAttribute('href') ? aElement.getAttribute('href') : '';
tdContents.push(title + ' | ' + href);
// 提取id=XXX数据
var idMatch = href.match(/id=(\d+)/);
if (idMatch) {
extractedData.push(idMatch[1]);
}
} else {
tdContents.push('');
}
} else {
tdContents.push('');
}
} else {
// 提取文字内容时,忽略img和a标签的title属性
var textContent = td.textContent.trim();
if (textContent) {
tdContents.push(textContent);
} else {
tdContents.push('');
}
}
});
// 将同一个<tr>元素下的信息作为一行显示,中间用|分隔
var result = tdContents.join(' | ');
// 将结果添加到结果数组中
results.push(result);
});
// 将结果数组转换为字符串,每行一个结果
var outputString = results.join('\n');
// 创建一个Blob对象,用于存储输出内容
var blob = new Blob([outputString], {type: 'text/plain'});
// 创建一个下载链接
var a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = 'output.txt';
// 将下载链接添加到文档中并触发点击事件
document.body.appendChild(a);
a.click();
// 移除下载链接
document.body.removeChild(a);
});
// 下载按钮点击事件处理函数
downloadButton.addEventListener('click', function() {
// 生成下载链接列表
var downloadLinks = extractedData.map(function(id) {
return 'https://pt.btschool.club/download.php?id=' + id + '&passkey=你的key';
});
// 将下载链接列表转换为字符串,每行一个链接
var outputString = downloadLinks.join('\n');
// 创建一个Blob对象,用于存储输出内容
var blob = new Blob([outputString], {type: 'text/plain'});
// 创建一个下载链接
var a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = 'download_links.txt';
// 将下载链接添加到文档中并触发点击事件
document.body.appendChild(a);
a.click();
// 移除下载链接
document.body.removeChild(a);
});
})();