Route North America to BackBlaze + CF #1
1 changed files with 20 additions and 4 deletions
24
src/index.ts
24
src/index.ts
|
@ -1,7 +1,5 @@
|
|||
export {};
|
||||
|
||||
const SERVERS = ['https://cdn-eu1.organicmaps.app/', 'https://cdn-eu2.organicmaps.app/', 'https://cdn.organicmaps.app/'];
|
||||
|
||||
addEventListener('fetch', (event) => {
|
||||
event.respondWith(handleRequest(event.request).catch((err) => new Response(err.stack, { status: 500 })));
|
||||
});
|
||||
|
@ -10,10 +8,28 @@ async function handleRequest(request: Request) {
|
|||
const { pathname } = new URL(request.url);
|
||||
|
||||
switch (pathname) {
|
||||
case '/servers':
|
||||
return new Response(JSON.stringify(SERVERS), {
|
||||
case '/servers': {
|
||||
let servers;
|
||||
switch (request.cf?.continent) {
|
||||
case 'NA': // North America
|
||||
servers = [
|
||||
'https://cdn4.organicmaps.app/', // BackBlaze US-West + CF, unmetered
|
||||
'https://cdn.organicmaps.app/', // Hetzner BareMetal DE unmetered
|
||||
];
|
||||
break;
|
||||
default:
|
||||
// Everything else
|
||||
servers = [
|
||||
'https://cdn-pl1.organicmaps.app/', // OVH PL, unmetered
|
||||
'https://cdn-fi1.organicmaps.app/', // Hetzner Cloud FI, 20TB
|
||||
'https://cdn-eu2.organicmaps.app/', // Hetzner Cloud DE, 20TB
|
||||
'https://cdn.organicmaps.app/', // Hetzner BareMetal DE unmetered
|
||||
];
|
||||
}
|
||||
return new Response(JSON.stringify(servers), {
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
});
|
||||
}
|
||||
}
|
||||
return new Response('', { status: 404 });
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue