This commit is contained in:
2026-04-29 07:39:29 +02:00
parent 41a5472582
commit b866845b6a
40 changed files with 71735 additions and 111 deletions

View File

@@ -1,21 +1,104 @@
// NOTE: This service worker is for the web/PWA build.
// For development we aggressively unregister SWs in `src/player.js`.
//
// Bump this value whenever caching logic changes to guarantee clients don't
// keep an old UI after updates.
const CACHE_NAME = 'radioplayer-pwa-v4';
// This value is rewritten automatically before each build so deployed clients
// refresh to the newest shell and cached assets.
const CACHE_NAME = 'radioplayer-pwa-v5-1777404493334';
const CORE_ASSETS = [
'./',
'index.html',
'privacy.html',
'data/radio-stations.json',
'stations.json',
'manifest.json',
'images/radio-placeholder.svg',
'assets/radioplayer-logo-192.png',
'assets/radioplayer-logo-512.png',
];
const CORE_PATHS = new Set(CORE_ASSETS.map((p) => new URL(p, self.registration.scope).pathname));
const DATA_PATHS = new Set([
new URL('data/radio-stations.json', self.registration.scope).pathname,
new URL('stations.json', self.registration.scope).pathname,
new URL('manifest.json', self.registration.scope).pathname,
]);
const IMAGE_FALLBACK_PATH = new URL('images/radio-placeholder.svg', self.registration.scope).pathname;
function isCacheableResponse(response) {
return Boolean(response && response.ok && response.type === 'basic');
}
async function putInCache(request, response) {
if (!isCacheableResponse(response)) return;
const cache = await caches.open(CACHE_NAME);
await cache.put(request, response.clone());
}
async function precacheBuiltAssets(cache) {
try {
const indexResp = await fetch(new Request('./', { cache: 'reload' }));
if (isCacheableResponse(indexResp)) {
await cache.put('./', indexResp.clone());
}
const indexText = await indexResp.text();
const assetUrls = [...indexText.matchAll(/(?:src|href)="([^"]+)"/g)]
.map((match) => match[1])
.filter((assetPath) => assetPath.startsWith('./assets/') || assetPath.startsWith('assets/'))
.map((assetPath) => new URL(assetPath, self.registration.scope).href);
await Promise.allSettled(assetUrls.map(async (assetUrl) => {
const assetResp = await fetch(new Request(assetUrl, { cache: 'reload' }));
if (!isCacheableResponse(assetResp)) return;
await cache.put(assetUrl, assetResp);
}));
} catch (e) {
// If HTML parsing fails, runtime caching below still catches assets.
}
}
async function networkFirst(request, fallbackRequest) {
try {
const networkResp = await fetch(request);
await putInCache(request, networkResp);
return networkResp;
} catch (error) {
const cached = await caches.match(request);
if (cached) return cached;
if (fallbackRequest) {
const fallback = await caches.match(fallbackRequest);
if (fallback) return fallback;
}
throw error;
}
}
async function staleWhileRevalidate(request, fallbackRequest) {
const cached = await caches.match(request);
const networkPromise = fetch(request)
.then(async (networkResp) => {
await putInCache(request, networkResp);
return networkResp;
})
.catch(async () => {
if (fallbackRequest) {
const fallback = await caches.match(fallbackRequest);
if (fallback) return fallback;
}
return null;
});
if (cached) {
return cached;
}
const networkResp = await networkPromise;
if (networkResp) return networkResp;
return new Response('', { status: 503, statusText: 'Service Unavailable' });
}
self.addEventListener('install', (event) => {
// Activate updated SW as soon as it's installed.
@@ -23,26 +106,15 @@ self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then(async (cache) => {
const reqs = CORE_ASSETS.map((p) => new Request(p, { cache: 'reload' }));
await cache.addAll(reqs);
await Promise.allSettled(reqs.map(async (request) => {
const response = await fetch(request);
if (!isCacheableResponse(response)) return;
await cache.put(request, response);
}));
// Vite fingerprints JS/CSS assets in production. Parse the built HTML so
// the installed PWA can launch offline after its first install.
try {
const indexResp = await fetch(new Request('./', { cache: 'reload' }));
const indexText = await indexResp.clone().text();
await cache.put('./', indexResp);
const assetUrls = [...indexText.matchAll(/(?:src|href)="([^"]+)"/g)]
.map((match) => match[1])
.filter((assetPath) => assetPath.startsWith('./assets/') || assetPath.startsWith('assets/'))
.map((assetPath) => new URL(assetPath, self.registration.scope).href);
await Promise.all(assetUrls.map((assetUrl) => {
return cache.add(new Request(assetUrl, { cache: 'reload' })).catch(() => {});
}));
} catch (e) {
// If HTML parsing fails, runtime caching below still catches assets.
}
await precacheBuiltAssets(cache);
})
);
});
@@ -61,6 +133,7 @@ self.addEventListener('activate', (event) => {
self.addEventListener('fetch', (event) => {
// Only handle GET requests
if (event.request.method !== 'GET') return;
if (event.request.headers.has('range')) return;
const url = new URL(event.request.url);
@@ -70,37 +143,46 @@ self.addEventListener('fetch', (event) => {
}
const isCore = CORE_PATHS.has(url.pathname);
const isDataRequest = DATA_PATHS.has(url.pathname);
const isHtmlNavigation = event.request.mode === 'navigate' || (event.request.headers.get('accept') || '').includes('text/html');
const isStaticAsset = ['script', 'style', 'font', 'worker'].includes(event.request.destination)
|| url.pathname.includes('/assets/');
const isImage = event.request.destination === 'image';
if (url.pathname.endsWith('/sw.js')) {
return;
}
// Network-first for navigations and core assets to prevent "old UI" issues.
if (isHtmlNavigation || isCore) {
if (isHtmlNavigation) {
event.respondWith(
fetch(event.request)
.then((networkResp) => {
const respClone = networkResp.clone();
caches.open(CACHE_NAME).then((cache) => cache.put(event.request, respClone)).catch(() => {});
return networkResp;
})
.catch(() => caches.match(event.request).then((cached) => cached || caches.match('./') || caches.match('index.html')))
networkFirst(event.request, './').catch(
() => caches.match('./') || caches.match('index.html') || new Response('', { status: 503, statusText: 'Offline' })
)
);
return;
}
if (isCore || isDataRequest) {
event.respondWith(
networkFirst(event.request).catch(
() => caches.match(event.request) || new Response('', { status: 503, statusText: 'Offline' })
)
);
return;
}
if (isStaticAsset) {
event.respondWith(staleWhileRevalidate(event.request));
return;
}
if (isImage) {
event.respondWith(staleWhileRevalidate(event.request, IMAGE_FALLBACK_PATH));
return;
}
event.respondWith(
caches.match(event.request).then((cached) => {
if (cached) return cached;
return fetch(event.request).then((networkResp) => {
// Optionally cache new resources (best-effort)
try {
const respClone = networkResp.clone();
caches.open(CACHE_NAME).then((cache) => cache.put(event.request, respClone)).catch(()=>{});
} catch (e) {}
return networkResp;
}).catch(() => {
// If offline and HTML navigation, return cached index.html
if (event.request.mode === 'navigate') return caches.match('./') || caches.match('index.html');
return new Response('', { status: 503, statusText: 'Service Unavailable' });
});
})
staleWhileRevalidate(event.request)
);
});