mirror of
https://github.com/immich-app/immich.git
synced 2025-07-17 20:38:25 +02:00
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import { build, files, version } from '$service-worker';
|
|
|
|
const sw = globalThis as unknown as ServiceWorkerGlobalScope;
|
|
const pendingLoads = new Map<string, AbortController>();
|
|
|
|
const useCache = true;
|
|
// Create a unique cache name for this deployment
|
|
const CACHE = `cache-${version}`;
|
|
|
|
export const APP_RESOURCES = [
|
|
...build, // the app itself
|
|
...files, // everything in `static`
|
|
];
|
|
|
|
export async function deleteOldCaches() {
|
|
for (const key of await caches.keys()) {
|
|
if (key !== CACHE) {
|
|
await caches.delete(key);
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function addFilesToCache() {
|
|
const cache = await caches.open(CACHE);
|
|
await cache.addAll(APP_RESOURCES);
|
|
}
|
|
|
|
export const isURL = (request: URL | RequestInfo): request is URL => (request as URL).href !== undefined;
|
|
export const isRequest = (request: RequestInfo): request is Request => (request as Request).url !== undefined;
|
|
|
|
export async function getCachedOrFetch(request: URL | Request | string, cancelable: boolean = false) {
|
|
const cached = await checkCache(request);
|
|
if (cached.response) {
|
|
return cached.response;
|
|
}
|
|
|
|
try {
|
|
if (!cancelable) {
|
|
const response = await fetch(request);
|
|
checkResponse(response);
|
|
return response;
|
|
}
|
|
|
|
return await fetchWithCancellation(request, cached.cache);
|
|
} catch {
|
|
console.log('getCachedOrFetch error', request);
|
|
return new Response(undefined, {
|
|
status: 499,
|
|
statusText: 'Request canceled: Instructions unclear, accidentally interrupted myself',
|
|
});
|
|
}
|
|
}
|
|
|
|
export async function cancelLoad(urlString: string) {
|
|
const pending = pendingLoads.get(urlString);
|
|
if (pending) {
|
|
pending.abort();
|
|
pendingLoads.delete(urlString);
|
|
}
|
|
}
|
|
|
|
async function fetchWithCancellation(request: URL | Request | string, cache: Cache) {
|
|
const cacheKey = getCacheKey(request);
|
|
const cancelToken = new AbortController();
|
|
|
|
try {
|
|
pendingLoads.set(cacheKey, cancelToken);
|
|
const response = await fetch(request, {
|
|
signal: cancelToken.signal,
|
|
});
|
|
|
|
checkResponse(response);
|
|
setCached(response, cache, cacheKey);
|
|
return response;
|
|
} finally {
|
|
pendingLoads.delete(cacheKey);
|
|
}
|
|
}
|
|
|
|
async function checkCache(url: URL | Request | string) {
|
|
const cache = await caches.open(CACHE);
|
|
const response = useCache ? await cache.match(url) : undefined;
|
|
return { cache, response };
|
|
}
|
|
|
|
async function setCached(response: Response, cache: Cache, cacheKey: URL | Request | string) {
|
|
if (response.status === 200) {
|
|
cache.put(cacheKey, response.clone());
|
|
}
|
|
}
|
|
|
|
function checkResponse(response: Response) {
|
|
if (!(response instanceof Response)) {
|
|
throw new TypeError('invalid response from fetch');
|
|
}
|
|
}
|
|
|
|
function getCacheKey(request: URL | Request | string) {
|
|
if (isURL(request)) {
|
|
return request.toString();
|
|
} else if (isRequest(request)) {
|
|
return request.url;
|
|
} else {
|
|
return request;
|
|
}
|
|
}
|