diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b1ee42 --- /dev/null +++ b/.gitignore @@ -0,0 +1,175 @@ +# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore + +# Logs + +logs +_.log +npm-debug.log_ +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Caches + +.cache + +# Diagnostic reports (https://nodejs.org/api/report.html) + +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# Runtime data + +pids +_.pid +_.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover + +lib-cov + +# Coverage directory used by tools like istanbul + +coverage +*.lcov + +# nyc test coverage + +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) + +.grunt + +# Bower dependency directory (https://bower.io/) + +bower_components + +# node-waf configuration + +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) + +build/Release + +# Dependency directories + +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) + +web_modules/ + +# TypeScript cache + +*.tsbuildinfo + +# Optional npm cache directory + +.npm + +# Optional eslint cache + +.eslintcache + +# Optional stylelint cache + +.stylelintcache + +# Microbundle cache + +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history + +.node_repl_history + +# Output of 'npm pack' + +*.tgz + +# Yarn Integrity file + +.yarn-integrity + +# dotenv environment variable files + +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) + +.parcel-cache + +# Next.js build output + +.next +out + +# Nuxt.js build / generate output + +.nuxt +dist + +# Gatsby files + +# Comment in the public line in if your project uses Gatsby and not Next.js + +# https://nextjs.org/blog/next-9-1#public-directory-support + +# public + +# vuepress build output + +.vuepress/dist + +# vuepress v2.x temp and cache directory + +.temp + +# Docusaurus cache and generated files + +.docusaurus + +# Serverless directories + +.serverless/ + +# FuseBox cache + +.fusebox/ + +# DynamoDB Local files + +.dynamodb/ + +# TernJS port file + +.tern-port + +# Stores VSCode versions used for testing VSCode extensions + +.vscode-test + +# yarn v2 + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +# IntelliJ based IDEs +.idea + +# Finder (MacOS) folder config +.DS_Store diff --git a/bun.lockb b/bun.lockb new file mode 100644 index 0000000..32c7a48 Binary files /dev/null and b/bun.lockb differ diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..0e002cd --- /dev/null +++ b/index.ts @@ -0,0 +1,52 @@ +const filterList = [ + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.amazon.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.apple.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.huawei.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.winoffice.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.samsung.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.tiktok.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.tiktok.extended.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.lgwebos.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.vivo.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.oppo-realme.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.xiaomi.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/fake.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/popupads.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/tif.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/tif-ips.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/dyndns.txt", + "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/hoster.txt" +] + +Bun.serve({ + async fetch(request, server) { + let rules: string[] = []; + + for (const filter of filterList) { + const listReq = await fetch(filter); + let list = await listReq.text(); + + list = list.replace("[Adblock Plus]", '').trim(); + list = list.replace(/^!.*$/gm, '').trim(); + + const listArray = list.split('\n') + + rules = rules.concat(listArray) + } + + rules = Array.from(new Set(rules)); + + const rulesText = rules.join('\n'); + + return new Response(rulesText, { + headers: { + "content-type": "text/plain; charset=utf-8", + "Cache-Control": "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0", + "Pragma": "no-cache", + "Expires": "0", + "Surrogate-Control": "no-store" + }, + }) + } +}) \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0d33f68 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "adguardhomejoiner", + "module": "index.ts", + "type": "module", + "devDependencies": { + "@types/bun": "latest" + }, + "peerDependencies": { + "typescript": "^5.0.0" + } +} \ No newline at end of file diff --git a/test.ts b/test.ts new file mode 100644 index 0000000..6f54b88 --- /dev/null +++ b/test.ts @@ -0,0 +1,159 @@ +const test = { + "filters": [ + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.amazon.txt", + "name": "HaGeZi's Amazon Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673071, + "rules_count": 335, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.apple.txt", + "name": "HaGeZi's Apple Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673072, + "rules_count": 93, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.huawei.txt", + "name": "HaGeZi's Huawei Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673073, + "rules_count": 95, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.winoffice.txt", + "name": "HaGeZi's Windows/Office Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673074, + "rules_count": 335, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.samsung.txt", + "name": "HaGeZi's Samsung Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673075, + "rules_count": 189, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.tiktok.txt", + "name": "HaGeZi's TikTok Fingerprinting DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673076, + "rules_count": 278, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.tiktok.extended.txt", + "name": "HaGeZi's TikTok Extended Fingerprinting DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673077, + "rules_count": 354, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.lgwebos.txt", + "name": "HaGeZi's LG webOS Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673078, + "rules_count": 16, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.vivo.txt", + "name": "HaGeZi's Vivo Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673079, + "rules_count": 88, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.oppo-realme.txt", + "name": "HaGeZi's OPPO & Realme Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673080, + "rules_count": 230, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/native.xiaomi.txt", + "name": "HaGeZi's Xiaomi Tracker DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673081, + "rules_count": 361, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/fake.txt", + "name": "HaGeZi's Fake DNS Blocklist", + "last_updated": "2025-01-14T20:51:46-05:00", + "id": 1732673082, + "rules_count": 10389, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/popupads.txt", + "name": "HaGeZi's Pop-Up Ads DNS Blocklist", + "last_updated": "2025-01-14T20:51:47-05:00", + "id": 1732673083, + "rules_count": 83577, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/tif.txt", + "name": "HaGeZi's Threat Intelligence Feeds DNS Blocklist", + "last_updated": "2025-01-14T20:51:51-05:00", + "id": 1732673084, + "rules_count": 695621, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/tif-ips.txt", + "name": "TIF IPs", + "last_updated": "2025-01-14T20:51:52-05:00", + "id": 1732673085, + "rules_count": 98895, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt", + "name": "HaGeZi's Pro DNS Blocklist", + "last_updated": "2025-01-14T20:51:53-05:00", + "id": 1736222077, + "rules_count": 191991, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/dyndns.txt", + "name": "HaGeZi's DynDNS Blocklist", + "last_updated": "2025-01-14T20:51:53-05:00", + "id": 1736222078, + "rules_count": 1469, + "enabled": true + }, + { + "url": "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/hoster.txt", + "name": "HaGeZi's Badware Hoster DNS Blocklist", + "last_updated": "2025-01-14T20:51:53-05:00", + "id": 1736222079, + "rules_count": 1851, + "enabled": true + } + ], + "whitelist_filters": null, + "user_rules": [ + "" + ], + "interval": 1, + "enabled": true +} +const filters = []; +for (const filter of test.filters) { + filters.push(filter.url); +} +console.log(filters); \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..238655f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + // Enable latest features + "lib": ["ESNext", "DOM"], + "target": "ESNext", + "module": "ESNext", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } +}