Spaces:
Running
Running
File size: 11,799 Bytes
678f3be 0afb9bd 678f3be 91a84e2 0afb9bd 678f3be 0afb9bd 678f3be fb00c77 5131b7d 561793f fb00c77 5131b7d fb00c77 5131b7d fb00c77 678f3be 5131b7d 678f3be fb00c77 678f3be 91a84e2 678f3be fb00c77 0afb9bd fb00c77 0afb9bd fb00c77 91a84e2 fb00c77 0afb9bd fb00c77 91a84e2 149646c 4511427 149646c 4511427 db82b83 4511427 db82b83 91a84e2 db82b83 91a84e2 0afb9bd 91a84e2 678f3be 0afb9bd 91a84e2 678f3be 91a84e2 678f3be 0afb9bd 91a84e2 | 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | /**
* Cloudflare Proxy: Transparent Fix for Blocked Domains
*
* Patches https.request/http.request and undici/fetch to redirect traffic
* for blocked hosts through a Cloudflare Worker proxy.
*/
"use strict";
// Use stderr for logs to avoid breaking child processes that communicate via stdout JSON
const log = (...args) => console.error(...args);
log("🦞 Cloudflare Proxy: Transparent redirector active");
const https = require("https");
const http = require("http");
let PROXY_URL = process.env.CLOUDFLARE_PROXY_URL;
if (
PROXY_URL &&
!PROXY_URL.startsWith("http://") &&
!PROXY_URL.startsWith("https://")
) {
PROXY_URL = `https://${PROXY_URL}`;
}
const DEBUG = process.env.CLOUDFLARE_PROXY_DEBUG === "true" || true;
const PROXY_SHARED_SECRET = (process.env.CLOUDFLARE_PROXY_SECRET || "").trim();
const PROXY_DOMAINS = process.env.CLOUDFLARE_PROXY_DOMAINS || "*";
const BLOCKED_DOMAINS = PROXY_DOMAINS.split(",")
.map((domain) => domain.trim())
.filter(Boolean);
const PROXY_ALL = PROXY_DOMAINS === "*";
if (PROXY_URL) {
try {
const proxy = new URL(PROXY_URL);
const originalHttpsRequest = https.request;
const originalHttpRequest = http.request;
const originalFetch =
typeof globalThis.fetch === "function" ? globalThis.fetch.bind(globalThis) : null;
const shouldProxyHost = (hostname) => {
const normalized = String(hostname || "").trim().toLowerCase();
if (!normalized) return false;
const isInternal =
normalized === "localhost" ||
normalized === "127.0.0.1" ||
normalized === "::1" ||
normalized === "0.0.0.0" ||
normalized === proxy.hostname ||
normalized.endsWith(".hf.space") ||
normalized.endsWith(".huggingface.co") ||
normalized === "huggingface.co";
const should = PROXY_ALL ? !isInternal : BLOCKED_DOMAINS.some(
(domain) => normalized === domain || normalized.endsWith(`.${domain}`)
);
if (DEBUG && should && normalized !== proxy.hostname) {
log(`[cloudflare-proxy] Host match: ${normalized}`);
}
return should;
};
const patch = (original, originalModuleName) => {
return function patchedRequest(options, callback) {
let hostname = "";
let path = "";
let headers = {};
if (typeof options === "string") {
const parsed = new URL(options);
hostname = parsed.hostname;
path = parsed.pathname + parsed.search;
} else if (options instanceof URL) {
hostname = options.hostname;
path = options.pathname + options.search;
headers = options.headers || {};
} else if (options && typeof options === "object") {
hostname =
options.hostname ||
(options.host ? String(options.host).split(":")[0] : "");
path = options.path || "/";
headers = options.headers || {};
}
const shouldProxy = shouldProxyHost(hostname);
const alreadyProxied =
options && typeof options === "object" && options._proxied;
const hasTargetHeader =
headers &&
(headers["x-target-host"] || headers["X-Target-Host"]);
if (shouldProxy && !alreadyProxied && !hasTargetHeader) {
if (DEBUG) {
log(
`[cloudflare-proxy] Redirecting ${originalModuleName}://${hostname}${path} -> ${proxy.hostname}`,
);
}
const newOptions =
typeof options === "string" || options instanceof URL
? { protocol: "https:", path }
: { ...options };
newOptions._proxied = true;
newOptions.protocol = "https:";
newOptions.hostname = proxy.hostname;
newOptions.port = proxy.port || 443;
newOptions.servername = proxy.hostname;
delete newOptions.host;
delete newOptions.agent;
newOptions.headers = {
...(newOptions.headers || {}),
host: proxy.host,
"x-target-host": hostname,
};
if (PROXY_SHARED_SECRET) {
newOptions.headers["x-proxy-key"] = PROXY_SHARED_SECRET;
}
return originalHttpsRequest.call(https, newOptions, callback);
}
return original.call(this, options, callback);
};
};
https.request = patch(originalHttpsRequest, "https");
http.request = patch(originalHttpRequest, "http");
if (originalFetch) {
globalThis.fetch = async function patchedFetch(input, init) {
const request = input instanceof Request ? input : null;
const urlStr = request ? request.url : String(input);
let url;
try {
url = new URL(urlStr);
} catch (e) {
return originalFetch(input, init);
}
const hostname = url.hostname;
const shouldProxy = shouldProxyHost(hostname);
let headers;
if (request) {
headers = new Headers(request.headers);
} else {
headers = new Headers(init?.headers || {});
}
const alreadyProxied =
headers.has("x-target-host") || headers.has("X-Target-Host");
if (!shouldProxy || alreadyProxied) {
return originalFetch(input, init);
}
if (DEBUG) {
log(
`[cloudflare-proxy] Redirecting fetch://${hostname}${url.pathname}${url.search} -> ${proxy.hostname}`,
);
}
headers.set("x-target-host", hostname);
if (PROXY_SHARED_SECRET) {
headers.set("x-proxy-key", PROXY_SHARED_SECRET);
}
const proxiedUrl = new URL(url.pathname + url.search, proxy);
if (request) {
const newInit = {
method: request.method,
headers,
body: request.body,
redirect: request.redirect,
duplex: "half",
};
return originalFetch(new Request(proxiedUrl, newInit));
}
return originalFetch(proxiedUrl, {
...init,
headers,
});
};
}
const patchUndiciInstance = (exports) => {
if (!exports) return;
const patchDispatch = (proto, name) => {
if (proto && proto.dispatch && !proto.dispatch._patched) {
const origDispatch = proto.dispatch;
proto.dispatch = function(options, handler) {
let origin = options.origin || this.origin;
if (origin && typeof origin !== 'string') {
try { origin = origin.origin || origin.toString(); } catch (e) { origin = ""; }
}
let hostname = "";
try {
hostname = new URL(String(origin)).hostname;
} catch(e) {
hostname = String(origin || "").split(':')[0];
}
if (hostname && shouldProxyHost(hostname)) {
if (DEBUG) log(`[cloudflare-proxy] Redirecting undici ${name}.dispatch: ${hostname}${options.path || ""} -> ${proxy.hostname}`);
let headers = options.headers;
const targetHeader = "x-target-host";
const secretHeader = "x-proxy-key";
if (Array.isArray(headers)) {
let foundTarget = false;
for (let i = 0; i < headers.length; i += 2) {
if (String(headers[i]).toLowerCase() === targetHeader) {
foundTarget = true;
break;
}
}
if (!foundTarget) {
headers.push(targetHeader, hostname);
if (PROXY_SHARED_SECRET) headers.push(secretHeader, PROXY_SHARED_SECRET);
}
} else {
options.headers = headers || {};
if (options.headers instanceof Map || (typeof options.headers.set === 'function')) {
options.headers.set(targetHeader, hostname);
if (PROXY_SHARED_SECRET) options.headers.set(secretHeader, PROXY_SHARED_SECRET);
} else {
options.headers[targetHeader] = hostname;
if (PROXY_SHARED_SECRET) options.headers[secretHeader] = PROXY_SHARED_SECRET;
}
}
options.origin = `https://${proxy.hostname}`;
}
return origDispatch.call(this, options, handler);
};
proto.dispatch._patched = true;
if (DEBUG) log(`[cloudflare-proxy] Patched undici ${name}.prototype.dispatch`);
}
};
// Discover and patch all Dispatcher-like classes in the module
for (const key in exports) {
if (exports[key] && exports[key].prototype && typeof exports[key].prototype.dispatch === 'function') {
patchDispatch(exports[key].prototype, key);
}
}
// Patch the current global dispatcher instance
if (exports.getGlobalDispatcher) {
try {
const globalDispatcher = exports.getGlobalDispatcher();
if (globalDispatcher && globalDispatcher.dispatch && !globalDispatcher.dispatch._patched) {
patchDispatch(globalDispatcher, "GlobalDispatcherInstance");
}
} catch (e) {}
}
if (exports.fetch && !exports.fetch._patched) {
exports.fetch = async function (input, init) {
return globalThis.fetch(input, init);
};
exports.fetch._patched = true;
if (DEBUG) log("[cloudflare-proxy] Patched undici.fetch");
}
if (exports.request && !exports.request._patched) {
const origUndiciRequest = exports.request;
exports.request = async function(url, options) {
let parsedUrl;
try {
parsedUrl = new URL(url);
} catch(e) {
return origUndiciRequest.apply(this, arguments);
}
if (shouldProxyHost(parsedUrl.hostname)) {
if (DEBUG) log(`[cloudflare-proxy] Redirecting undici.request://${parsedUrl.hostname} -> ${proxy.hostname}`);
const headers = options?.headers || {};
headers["x-target-host"] = parsedUrl.hostname;
if (PROXY_SHARED_SECRET) headers["x-proxy-key"] = PROXY_SHARED_SECRET;
const proxiedUrl = new URL(parsedUrl.pathname + parsedUrl.search, proxy);
return origUndiciRequest.call(this, proxiedUrl, { ...options, headers });
}
return origUndiciRequest.apply(this, arguments);
};
exports.request._patched = true;
if (DEBUG) log("[cloudflare-proxy] Patched undici.request");
}
};
// Patch already loaded undici instances
for (const key in require.cache) {
if (key.includes('/undici/') || key.endsWith('/undici/index.js')) {
try { patchUndiciInstance(require.cache[key].exports); } catch (e) {}
}
}
// Try to require undici immediately to patch it before others use it
try {
const undici = require("undici");
patchUndiciInstance(undici);
} catch (e) {}
// Intercept future undici requirements
const Module = require("module");
const originalRequire = Module.prototype.require;
Module.prototype.require = function (id) {
const exports = originalRequire.apply(this, arguments);
if (id === "undici" || id.includes("/undici/")) {
patchUndiciInstance(exports);
}
return exports;
};
if (DEBUG) {
log(`[cloudflare-proxy] Target proxy: ${proxy.hostname}`);
log(`[cloudflare-proxy] Proxying: ${PROXY_ALL ? "ALL (except internal)" : BLOCKED_DOMAINS.join(", ")}`);
}
} catch (error) {
log(`[cloudflare-proxy] Failed to initialize: ${error.message}`);
}
}
|