Route North America to BackBlaze + CF #1

Merged
root merged 1 commit from rt-america-backblaze into master 2021-08-19 09:36:06 +00:00

View file

@ -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 });
}