پرش به مطلب اصلی

پروکسی درخواست‌ها با تغییر Origin

در این نمونه، درخواست‌های ورودی بر اساس نام‌شان بررسی شده و اگر با دامنه‌های تعریف‌شده مطابقت داشته باشند به مقاصد مرتبط پروکسی می‌شوند.


addEventListener("fetch", (event) => {
event.respondWith(handleRequest(event.request));
});

async function handleRequest(request) {
/**
* An object with different URLs to fetch
* @param {Object} ORIGINS
*/
const ORIGINS = {
"starwarsapi.yourdomain.com": "swapi.dev",
"google.yourdomain.com": "www.google.com",
};

const url = new URL(request.url);

// Check if incoming hostname is a key in the ORIGINS object
if (url.hostname in ORIGINS) {
const target = ORIGINS[url.hostname];
url.hostname = target;
// If it is, proxy request to that third party origin
return fetch(url.toString(), request);
}
// Otherwise, process request as normal
return fetch(request);
}