mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-14 02:00:37 +08:00
Update Reject Hosts & Improve Luminati Hosts collection
This commit is contained in:
parent
0fa6ee8a29
commit
e932928550
@ -1,17 +1,35 @@
|
|||||||
import { fetchRemoteTextByLine } from './lib/fetch-text-by-line';
|
import { fetchRemoteTextByLine, readFileByLine } from './lib/fetch-text-by-line';
|
||||||
import tldts from 'tldts';
|
import tldts from 'tldts';
|
||||||
|
import { HostnameSmolTrie } from './lib/trie';
|
||||||
|
import path from 'node:path';
|
||||||
|
import { SOURCE_DIR } from './constants/dir';
|
||||||
|
import { processLine } from './lib/process-line';
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
const lines = await Array.fromAsync(await fetchRemoteTextByLine('https://raw.githubusercontent.com/durablenapkin/block/master/luminati.txt', true));
|
const lines1 = await Array.fromAsync(await fetchRemoteTextByLine('https://raw.githubusercontent.com/durablenapkin/block/master/luminati.txt', true));
|
||||||
|
const lines2 = await Array.fromAsync(await fetchRemoteTextByLine('https://raw.githubusercontent.com/durablenapkin/block/master/tvstream.txt', true));
|
||||||
|
|
||||||
const set = new Set<string>();
|
const trie = new HostnameSmolTrie();
|
||||||
|
|
||||||
lines.forEach((line) => {
|
lines1.forEach((line) => {
|
||||||
const apexDomain = tldts.getDomain(line.slice(8));
|
const apexDomain = tldts.getDomain(line.slice(8));
|
||||||
if (apexDomain) {
|
if (apexDomain) {
|
||||||
set.add(apexDomain);
|
trie.add(apexDomain);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
lines2.forEach((line) => {
|
||||||
|
const apexDomain = tldts.getDomain(line.slice(8));
|
||||||
|
if (apexDomain) {
|
||||||
|
trie.add(apexDomain);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(Array.from(set).map(line => '.' + line).join('\n'));
|
for await (const line of readFileByLine(path.join(SOURCE_DIR, 'domainset', 'reject_sukka.conf'))) {
|
||||||
|
const l = processLine(line);
|
||||||
|
if (l) {
|
||||||
|
trie.whitelist(l);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(trie.dump().join('\n'));
|
||||||
})();
|
})();
|
||||||
|
|||||||
@ -2345,6 +2345,8 @@ tongji.tom.com
|
|||||||
.hola.com.sg
|
.hola.com.sg
|
||||||
.hola.sk
|
.hola.sk
|
||||||
.proxyway.com
|
.proxyway.com
|
||||||
|
.optmd.com
|
||||||
|
.adincube.com
|
||||||
# .hola.ph # expired
|
# .hola.ph # expired
|
||||||
.hola.ph
|
.hola.ph
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user