update service worker

This commit is contained in:
2026-06-11 11:15:45 -07:00
parent 7b0224a45a
commit c68b1e2d99
2 changed files with 66 additions and 2 deletions
+38 -1
View File
@@ -1,8 +1,13 @@
const CACHE_NAME = 'api-mediaplayer-v1'
const CACHE_NAME = 'api-mediaplayer-v2'
const MEDIA_CACHE_NAME = 'api-mediaplayer-media-v2'
const ASSETS = ['/', '/index.html', '/manifest.json', '/no-image.svg']
const MAX_MEDIA_CACHE_ITEMS = 12
function isNavigationRequest(request, acceptHeader) {
if (!request) return false
return request.mode === 'navigate' || acceptHeader.includes('text/html')
}
function getRangeBounds(rangeHeader, size) {
const match = /^bytes=(\d*)-(\d*)$/i.exec(rangeHeader || '')
if (!match) return null
@@ -83,6 +88,33 @@ async function handleMediaRequest(event) {
return networkResponse
}
async function updateShellCache(cache, response) {
if (!response || !response.ok || response.status !== 200) return
await Promise.allSettled([
cache.put('/index.html', response.clone()),
cache.put('/', response.clone()),
])
}
async function handleShellRequest(event) {
const appCache = await caches.open(CACHE_NAME)
try {
const networkResponse = await fetch(event.request)
event.waitUntil(updateShellCache(appCache, networkResponse.clone()))
return networkResponse
} catch {
const cachedIndex = await appCache.match('/index.html').catch(() => null)
if (cachedIndex) return cachedIndex
const cachedRoot = await appCache.match('/').catch(() => null)
if (cachedRoot) return cachedRoot
return new Response('Network error', { status: 502, statusText: 'Bad Gateway' })
}
}
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
@@ -122,6 +154,11 @@ self.addEventListener('fetch', (event) => {
return
}
if (isNavigationRequest(event.request, acceptHeader)) {
event.respondWith(handleShellRequest(event))
return
}
event.respondWith((async () => {
try {
const cached = await caches.match(event.request).catch(() => null)