| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- // @ts-check
- const fs = require('fs');
- const fse = require('fs-extra');
- const { resolve: pathResolve } = require('path');
- const tldts = require('tldts');
- const { processHosts, processFilterRules } = require('./lib/parse-filter');
- const Trie = require('./lib/trie');
- const { HOSTS, ADGUARD_FILTERS, PREDEFINED_WHITELIST, PREDEFINED_ENFORCED_BACKLIST } = require('./lib/reject-data-source');
- const { withBannerArray } = require('./lib/with-banner');
- const { compareAndWriteFile } = require('./lib/string-array-compare');
- const { processLine } = require('./lib/process-line');
- const { domainDeduper } = require('./lib/domain-deduper');
- const createKeywordFilter = require('./lib/aho-corasick');
- const { readFileByLine } = require('./lib/fetch-remote-text-by-line');
- const domainSorter = require('./lib/stable-sort-domain');
- const { surgeDomainsetToClashDomainset } = require('./lib/clash');
- /** Whitelists */
- const filterRuleWhitelistDomainSets = new Set(PREDEFINED_WHITELIST);
- /** @type {Set<string>} Dedupe domains inclued by DOMAIN-KEYWORD */
- const domainKeywordsSet = new Set();
- /** @type {Set<string>} Dedupe domains included by DOMAIN-SUFFIX */
- const domainSuffixSet = new Set();
- (async () => {
- console.time('Total Time - build-reject-domain-set');
- /** @type Set<string> */
- const domainSets = new Set();
- // Parse from AdGuard Filters
- console.time('* Download and process Hosts / AdBlock Filter Rules');
- let shouldStop = false;
- await Promise.all([
- // Parse from remote hosts & domain lists
- Promise.all(HOSTS.map(entry => processHosts(entry[0], entry[1])))
- .then(r => r.forEach(hosts => {
- hosts.forEach(host => {
- if (host) {
- domainSets.add(host);
- }
- });
- })),
- Promise.all(ADGUARD_FILTERS.map(input => {
- const promise = typeof input === 'string'
- ? processFilterRules(input, undefined, false)
- : processFilterRules(input[0], input[1] || undefined, input[2] ?? false);
- return promise.then((i) => {
- if (i) {
- const { white, black, foundDebugDomain } = i;
- if (foundDebugDomain) {
- shouldStop = true;
- }
- white.forEach(i => {
- // if (PREDEFINED_ENFORCED_BACKLIST.some(j => i.endsWith(j))) {
- // return;
- // }
- filterRuleWhitelistDomainSets.add(i);
- });
- black.forEach(i => domainSets.add(i));
- } else {
- process.exit(1);
- }
- });
- })),
- Promise.all([
- 'https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt',
- 'https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt'
- ].map(
- input => processFilterRules(input).then((i) => {
- if (i) {
- const { white, black } = i;
- white.forEach(i => {
- // if (PREDEFINED_ENFORCED_BACKLIST.some(j => i.endsWith(j))) {
- // return;
- // }
- filterRuleWhitelistDomainSets.add(i);
- });
- black.forEach(i => {
- // if (PREDEFINED_ENFORCED_BACKLIST.some(j => i.endsWith(j))) {
- // return;
- // }
- filterRuleWhitelistDomainSets.add(i);
- });
- } else {
- process.exit(1);
- }
- })
- ))
- ]);
- const trie0 = Trie.from(Array.from(filterRuleWhitelistDomainSets));
- PREDEFINED_ENFORCED_BACKLIST.forEach(enforcedBlack => {
- trie0.find(enforcedBlack).forEach(found => filterRuleWhitelistDomainSets.delete(found));
- });
- console.timeEnd('* Download and process Hosts / AdBlock Filter Rules');
- if (shouldStop) {
- process.exit(1);
- }
- let previousSize = domainSets.size;
- console.log(`Import ${previousSize} rules from Hosts / AdBlock Filter Rules!`);
- for await (const line of readFileByLine(pathResolve(__dirname, '../Source/domainset/reject_sukka.conf'))) {
- const l = processLine(line);
- if (l) {
- domainSets.add(l);
- }
- }
- previousSize = domainSets.size - previousSize;
- console.log(`Import ${previousSize} rules from reject_sukka.conf!`);
- for await (const line of readFileByLine(pathResolve(__dirname, '../List/non_ip/reject.conf'))) {
- if (line.startsWith('DOMAIN-KEYWORD')) {
- const [, ...keywords] = line.split(',');
- domainKeywordsSet.add(keywords.join(',').trim());
- } else if (line.startsWith('DOMAIN-SUFFIX')) {
- const [, ...keywords] = line.split(',');
- domainSuffixSet.add(keywords.join(',').trim());
- }
- }
- for await (const line of readFileByLine(pathResolve(__dirname, '../List/domainset/reject_phishing.conf'))) {
- const l = processLine(line);
- if (l && l[0] === '.') {
- domainSuffixSet.add(l.slice(1));
- }
- }
- console.log(`Import ${domainKeywordsSet.size} black keywords and ${domainSuffixSet.size} black suffixes!`);
- previousSize = domainSets.size;
- // Dedupe domainSets
- console.log(`Start deduping from black keywords/suffixes! (${previousSize})`);
- console.time('* Dedupe from black keywords/suffixes');
- const kwfilter = createKeywordFilter(Array.from(domainKeywordsSet));
- const trie1 = Trie.from(Array.from(domainSets));
- domainSuffixSet.forEach(suffix => {
- trie1.find(suffix, true).forEach(f => domainSets.delete(f));
- });
- filterRuleWhitelistDomainSets.forEach(suffix => {
- trie1.find(suffix, true).forEach(f => domainSets.delete(f));
- });
- // Build whitelist trie, to handle case like removing `g.msn.com` due to white `.g.msn.com` (`@@||g.msn.com`)
- const trieWhite = Trie.from(Array.from(filterRuleWhitelistDomainSets));
- for (const domain of domainSets) {
- if (domain[0] === '.') {
- if (trieWhite.contains(domain)) {
- domainSets.delete(domain);
- continue;
- }
- } else if (trieWhite.has(`.${domain}`)) {
- domainSets.delete(domain);
- continue;
- }
- // Remove keyword
- if (kwfilter.search(domain)) {
- domainSets.delete(domain);
- }
- }
- console.timeEnd('* Dedupe from black keywords/suffixes');
- console.log(`Deduped ${previousSize} - ${domainSets.size} = ${previousSize - domainSets.size} from black keywords and suffixes!`);
- previousSize = domainSets.size;
- // Dedupe domainSets
- console.log(`Start deduping! (${previousSize})`);
- const START_TIME = Date.now();
- const dudupedDominArray = domainDeduper(Array.from(domainSets));
- console.log(`* Dedupe from covered subdomain - ${(Date.now() - START_TIME) / 1000}s`);
- console.log(`Deduped ${previousSize - dudupedDominArray.length} rules!`);
- console.time('* Write reject.conf');
- /** @type {Record<string, number>} */
- const rejectDomainsStats = dudupedDominArray.reduce((acc, cur) => {
- const suffix = tldts.getDomain(cur, { allowPrivateDomains: false });
- if (suffix) {
- acc[suffix] = (acc[suffix] ?? 0) + 1;
- }
- return acc;
- }, {});
- const description = [
- 'License: AGPL 3.0',
- 'Homepage: https://ruleset.skk.moe',
- 'GitHub: https://github.com/SukkaW/Surge',
- '',
- 'The domainset supports AD blocking, tracking protection, privacy protection, anti-phishing, anti-mining',
- '',
- 'Build from:',
- ...HOSTS.map(host => ` - ${host[0]}`),
- ...ADGUARD_FILTERS.map(filter => ` - ${Array.isArray(filter) ? filter[0] : filter}`)
- ];
- const domainset = dudupedDominArray.sort(domainSorter);
- await Promise.all([
- compareAndWriteFile(
- withBannerArray(
- 'Sukka\'s Ruleset - Reject Base',
- description,
- new Date(),
- domainset
- ),
- pathResolve(__dirname, '../List/domainset/reject.conf')
- ),
- compareAndWriteFile(
- withBannerArray(
- 'Sukka\'s Ruleset - Reject Base',
- description,
- new Date(),
- surgeDomainsetToClashDomainset(domainset)
- ),
- pathResolve(__dirname, '../Clash/domainset/reject.txt')
- ),
- fs.promises.writeFile(
- pathResolve(__dirname, '../List/internal/reject-stats.txt'),
- Object.entries(rejectDomainsStats)
- .sort((a, b) => {
- const t = b[1] - a[1];
- if (t === 0) {
- return a[0].localeCompare(b[0]);
- }
- return t;
- })
- .map(([domain, count]) => `${domain}${' '.repeat(100 - domain.length)}${count}`)
- .join('\n')
- ),
- // Copy reject_sukka.conf for backward compatibility
- fse.copy(pathResolve(__dirname, '../Source/domainset/reject_sukka.conf'), pathResolve(__dirname, '../List/domainset/reject_sukka.conf'))
- ]);
- console.timeEnd('* Write reject.conf');
- console.timeEnd('Total Time - build-reject-domain-set');
- })();
|