| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- const { isIP } = require('net');
- const { fetchWithRetry } = require('./fetch-retry');
- const { isDomainLoose } = require('./is-domain-loose');
- const DEBUG_DOMAIN_TO_FIND = null; // example.com | null
- const warnOnceUrl = new Set();
- const warnOnce = (url, isWhite, ...message) => {
- const key = `${url}${isWhite ? 'white' : 'black'}`;
- if (warnOnceUrl.has(key)) {
- return;
- }
- warnOnceUrl.add(key);
- console.warn(url, isWhite ? '(white)' : '(black)', ...message);
- }
- /**
- * @param {string | URL} domainListsUrl
- */
- async function processDomainLists (domainListsUrl) {
- if (typeof domainListsUrl === 'string') {
- domainListsUrl = new URL(domainListsUrl);
- }
- /** @type Set<string> */
- const domainSets = new Set();
- /** @type string[] */
- const domains = (await (await fetchWithRetry(domainListsUrl)).text()).split('\n');
- domains.forEach(line => {
- if (
- line.startsWith('#')
- || line.startsWith('!')
- || line.startsWith(' ')
- || line === ''
- || line.startsWith('\r')
- || line.startsWith('\n')
- ) {
- return;
- }
- const domainToAdd = line.trim();
- if (DEBUG_DOMAIN_TO_FIND && domainToAdd.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(domainListsUrl.toString(), false, DEBUG_DOMAIN_TO_FIND);
- }
- domainSets.add(domainToAdd);
- });
- return [...domainSets];
- }
- /**
- * @param {string | URL} hostsUrl
- */
- async function processHosts (hostsUrl, includeAllSubDomain = false) {
- console.time(` - processHosts: ${hostsUrl}`);
- if (typeof hostsUrl === 'string') {
- hostsUrl = new URL(hostsUrl);
- }
- /** @type Set<string> */
- const domainSets = new Set();
- /** @type string[] */
- const hosts = (await (await fetchWithRetry(hostsUrl)).text()).split('\n');
- hosts.forEach(line => {
- if (line.includes('#')) {
- return;
- }
- if (line.startsWith(' ') || line.startsWith('\r') || line.startsWith('\n') || line.trim() === '') {
- return;
- }
- const [, ...domains] = line.split(' ');
- const domain = domains.join(' ').trim();
- if (DEBUG_DOMAIN_TO_FIND && domain.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(hostsUrl.toString(), false, DEBUG_DOMAIN_TO_FIND);
- }
- if (isDomainLoose(domain)) {
- if (includeAllSubDomain) {
- domainSets.add(`.${domain}`);
- } else {
- domainSets.add(domain);
- }
- }
- });
- console.timeEnd(` - processHosts: ${hostsUrl}`);
- return [...domainSets];
- }
- /**
- * @param {string | URL} filterRulesUrl
- * @param {(string | URL)[] | undefined} fallbackUrls
- * @returns {Promise<{ white: Set<string>, black: Set<string> }>}
- */
- async function processFilterRules (filterRulesUrl, fallbackUrls) {
- console.time(` - processFilterRules: ${filterRulesUrl}`);
- /** @type Set<string> */
- const whitelistDomainSets = new Set();
- /** @type Set<string> */
- const blacklistDomainSets = new Set();
- let filterRules;
- try {
- /** @type string[] */
- filterRules = (
- await Promise.any(
- [filterRulesUrl, ...(fallbackUrls || [])].map(
- async url => (await fetchWithRetry(url)).text()
- )
- )
- ).split('\n').map(line => line.trim());
- } catch (e) {
- console.log('Download Rule for [' + filterRulesUrl + '] failed');
- throw e;
- }
- for (let i = 0, len = filterRules.length; i < len; i++) {
- const line = filterRules[i];
- const lineStartsWithDoubleVerticalBar = line.startsWith('||');
- if (
- line === ''
- || line.includes('#')
- || line.includes('!')
- || line.includes('*')
- || line.includes('/')
- || line.includes('[')
- || line.includes('$') && !lineStartsWithDoubleVerticalBar
- || line === ''
- || isIP(line) !== 0
- ) {
- continue;
- }
- const lineEndsWithCaret = line.endsWith('^');
- const lineEndsWithCaretVerticalBar = line.endsWith('^|');
- if (lineStartsWithDoubleVerticalBar && line.endsWith('^$badfilter')) {
- const domain = line.replace('||', '').replace('^$badfilter', '').trim();
- if (isDomainLoose(domain)) {
- if (DEBUG_DOMAIN_TO_FIND && domain.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(filterRulesUrl.toString(), true, DEBUG_DOMAIN_TO_FIND);
- }
- whitelistDomainSets.add(domain);
- } else {
- console.warn(' * [parse-filter white] ' + domain + ' is not a valid domain');
- }
- } else if (line.startsWith('@@||')
- && (
- lineEndsWithCaret
- || lineEndsWithCaretVerticalBar
- || line.endsWith('^$badfilter')
- || line.endsWith('^$1p')
- )
- ) {
- const domain = line
- .replaceAll('@@||', '')
- .replaceAll('^$badfilter', '')
- .replaceAll('^$1p', '')
- .replaceAll('^|', '')
- .replaceAll('^', '')
- .trim();
- if (isDomainLoose(domain)) {
- if (DEBUG_DOMAIN_TO_FIND && domain.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(filterRulesUrl.toString(), true, DEBUG_DOMAIN_TO_FIND);
- }
- whitelistDomainSets.add(domain);
- } else {
- console.warn(' * [parse-filter white] ' + domain + ' is not a valid domain');
- }
- } else if (
- lineStartsWithDoubleVerticalBar
- && (
- lineEndsWithCaret
- || lineEndsWithCaretVerticalBar
- || line.endsWith('^$all')
- )
- ) {
- const domain = line
- .replaceAll('||', '')
- .replaceAll('^|', '')
- .replaceAll('^$all', '')
- .replaceAll('^', '')
- .trim();
- if (isDomainLoose(domain)) {
- if (DEBUG_DOMAIN_TO_FIND && domain.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(filterRulesUrl.toString(), false, DEBUG_DOMAIN_TO_FIND);
- }
- blacklistDomainSets.add(`.${domain}`);
- }
- } else if (
- line.startsWith('://')
- && (
- lineEndsWithCaret
- || lineEndsWithCaretVerticalBar
- )
- ) {
- const domain = `${line.replaceAll('://', '').replaceAll('^|', '').replaceAll('^', '')}`.trim();
- if (isDomainLoose(domain)) {
- if (DEBUG_DOMAIN_TO_FIND && domain.includes(DEBUG_DOMAIN_TO_FIND)) {
- warnOnce(filterRulesUrl.toString(), false, DEBUG_DOMAIN_TO_FIND);
- }
- blacklistDomainSets.add(domain);
- }
- }
- }
- console.timeEnd(` - processFilterRules: ${filterRulesUrl}`);
- return {
- white: whitelistDomainSets,
- black: blacklistDomainSets
- };
- }
- function preprocessFullDomainSetBeforeUsedAsWorkerData (data) {
- return data.filter(domain => (
- domain.charCodeAt(0) === 46
- ));
- }
- module.exports.processDomainLists = processDomainLists;
- module.exports.processHosts = processHosts;
- module.exports.processFilterRules = processFilterRules;
- module.exports.preprocessFullDomainSetBeforeUsedAsWorkerData = preprocessFullDomainSetBeforeUsedAsWorkerData;
|