| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | // This service worker is required to expose an exported Godot project as a
 | 
					
						
							|  |  |  | // Progressive Web App. It provides an offline fallback page telling the user
 | 
					
						
							| 
									
										
										
										
											2021-05-20 12:07:26 +02:00
										 |  |  | // that they need an Internet connection to run the project if desired.
 | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | // Incrementing CACHE_VERSION will kick off the install event and force
 | 
					
						
							|  |  |  | // previously cached resources to be updated from the network.
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | /** @type {string} */ | 
					
						
							|  |  |  | const CACHE_VERSION = '___GODOT_VERSION___'; | 
					
						
							|  |  |  | /** @type {string} */ | 
					
						
							|  |  |  | const CACHE_PREFIX = '___GODOT_NAME___-sw-cache-'; | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION; | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | /** @type {string} */ | 
					
						
							|  |  |  | const OFFLINE_URL = '___GODOT_OFFLINE_PAGE___'; | 
					
						
							|  |  |  | /** @type {boolean} */ | 
					
						
							|  |  |  | const ENSURE_CROSSORIGIN_ISOLATION_HEADERS = ___GODOT_ENSURE_CROSSORIGIN_ISOLATION_HEADERS___; | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | // Files that will be cached on load.
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | /** @type {string[]} */ | 
					
						
							| 
									
										
										
										
											2023-12-01 13:39:09 -05:00
										 |  |  | const CACHED_FILES = ___GODOT_CACHE___; | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | // Files that we might not want the user to preload, and will only be cached on first load.
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | /** @type {string[]} */ | 
					
						
							| 
									
										
										
										
											2023-12-01 13:39:09 -05:00
										 |  |  | const CACHABLE_FILES = ___GODOT_OPT_CACHE___; | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | const FULL_CACHE = CACHED_FILES.concat(CACHABLE_FILES); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | self.addEventListener('install', (event) => { | 
					
						
							|  |  |  | 	event.waitUntil(caches.open(CACHE_NAME).then((cache) => cache.addAll(CACHED_FILES))); | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | self.addEventListener('activate', (event) => { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	event.waitUntil(caches.keys().then( | 
					
						
							|  |  |  | 		function (keys) { | 
					
						
							|  |  |  | 			// Remove old caches.
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 			return Promise.all(keys.filter((key) => key.startsWith(CACHE_PREFIX) && key !== CACHE_NAME).map((key) => caches.delete(key))); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	).then(function () { | 
					
						
							|  |  |  | 		// Enable navigation preload if available.
 | 
					
						
							|  |  |  | 		return ('navigationPreload' in self.registration) ? self.registration.navigationPreload.enable() : Promise.resolve(); | 
					
						
							|  |  |  | 	})); | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Ensures that the response has the correct COEP/COOP headers | 
					
						
							|  |  |  |  * @param {Response} response | 
					
						
							|  |  |  |  * @returns {Response} | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | function ensureCrossOriginIsolationHeaders(response) { | 
					
						
							|  |  |  | 	if (response.headers.get('Cross-Origin-Embedder-Policy') === 'require-corp' | 
					
						
							|  |  |  | 		&& response.headers.get('Cross-Origin-Opener-Policy') === 'same-origin') { | 
					
						
							|  |  |  | 		return response; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const crossOriginIsolatedHeaders = new Headers(response.headers); | 
					
						
							|  |  |  | 	crossOriginIsolatedHeaders.set('Cross-Origin-Embedder-Policy', 'require-corp'); | 
					
						
							|  |  |  | 	crossOriginIsolatedHeaders.set('Cross-Origin-Opener-Policy', 'same-origin'); | 
					
						
							|  |  |  | 	const newResponse = new Response(response.body, { | 
					
						
							|  |  |  | 		status: response.status, | 
					
						
							|  |  |  | 		statusText: response.statusText, | 
					
						
							|  |  |  | 		headers: crossOriginIsolatedHeaders, | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return newResponse; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Calls fetch and cache the result if it is cacheable | 
					
						
							|  |  |  |  * @param {FetchEvent} event | 
					
						
							|  |  |  |  * @param {Cache} cache | 
					
						
							|  |  |  |  * @param {boolean} isCacheable | 
					
						
							|  |  |  |  * @returns {Response} | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | async function fetchAndCache(event, cache, isCacheable) { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	// Use the preloaded response, if it's there
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 	/** @type { Response } */ | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	let response = await event.preloadResponse; | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 	if (response == null) { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 		// Or, go over network.
 | 
					
						
							|  |  |  | 		response = await self.fetch(event.request); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) { | 
					
						
							|  |  |  | 		response = ensureCrossOriginIsolationHeaders(response); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (isCacheable) { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 		// And update the cache
 | 
					
						
							|  |  |  | 		cache.put(event.request, response.clone()); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	return response; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | self.addEventListener( | 
					
						
							|  |  |  | 	'fetch', | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Triggered on fetch | 
					
						
							|  |  |  | 	 * @param {FetchEvent} event | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	(event) => { | 
					
						
							|  |  |  | 		const isNavigate = event.request.mode === 'navigate'; | 
					
						
							|  |  |  | 		const url = event.request.url || ''; | 
					
						
							|  |  |  | 		const referrer = event.request.referrer || ''; | 
					
						
							|  |  |  | 		const base = referrer.slice(0, referrer.lastIndexOf('/') + 1); | 
					
						
							|  |  |  | 		const local = url.startsWith(base) ? url.replace(base, '') : ''; | 
					
						
							|  |  |  | 		const isCachable = FULL_CACHE.some((v) => v === local) || (base === referrer && base.endsWith(CACHED_FILES[0])); | 
					
						
							|  |  |  | 		if (isNavigate || isCachable) { | 
					
						
							|  |  |  | 			event.respondWith((async () => { | 
					
						
							|  |  |  | 				// Try to use cache first
 | 
					
						
							|  |  |  | 				const cache = await caches.open(CACHE_NAME); | 
					
						
							|  |  |  | 				if (isNavigate) { | 
					
						
							|  |  |  | 					// Check if we have full cache during HTML page request.
 | 
					
						
							|  |  |  | 					/** @type {Response[]} */ | 
					
						
							|  |  |  | 					const fullCache = await Promise.all(FULL_CACHE.map((name) => cache.match(name))); | 
					
						
							|  |  |  | 					const missing = fullCache.some((v) => v === undefined); | 
					
						
							|  |  |  | 					if (missing) { | 
					
						
							|  |  |  | 						try { | 
					
						
							|  |  |  | 							// Try network if some cached file is missing (so we can display offline page in case).
 | 
					
						
							|  |  |  | 							const response = await fetchAndCache(event, cache, isCachable); | 
					
						
							|  |  |  | 							return response; | 
					
						
							|  |  |  | 						} catch (e) { | 
					
						
							|  |  |  | 							// And return the hopefully always cached offline page in case of network failure.
 | 
					
						
							|  |  |  | 							console.error('Network error: ', e); // eslint-disable-line no-console
 | 
					
						
							|  |  |  | 							return caches.match(OFFLINE_URL); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 				let cached = await cache.match(event.request); | 
					
						
							|  |  |  | 				if (cached != null) { | 
					
						
							|  |  |  | 					if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) { | 
					
						
							|  |  |  | 						cached = ensureCrossOriginIsolationHeaders(cached); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					return cached; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 				// Try network if don't have it in cache.
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 				const response = await fetchAndCache(event, cache, isCachable); | 
					
						
							|  |  |  | 				return response; | 
					
						
							|  |  |  | 			})()); | 
					
						
							|  |  |  | 		} else if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) { | 
					
						
							|  |  |  | 			event.respondWith((async () => { | 
					
						
							|  |  |  | 				let response = await fetch(event.request); | 
					
						
							|  |  |  | 				response = ensureCrossOriginIsolationHeaders(response); | 
					
						
							|  |  |  | 				return response; | 
					
						
							|  |  |  | 			})()); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-03-08 15:39:14 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | ); | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | self.addEventListener('message', (event) => { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	// No cross origin
 | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 	if (event.origin !== self.origin) { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 	const id = event.source.id || ''; | 
					
						
							|  |  |  | 	const msg = event.data || ''; | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 	// Ensure it's one of our clients.
 | 
					
						
							|  |  |  | 	self.clients.get(id).then(function (client) { | 
					
						
							|  |  |  | 		if (!client) { | 
					
						
							|  |  |  | 			return; // Not a valid client.
 | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 		if (msg === 'claim') { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 			self.skipWaiting().then(() => self.clients.claim()); | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 		} else if (msg === 'clear') { | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 			caches.delete(CACHE_NAME); | 
					
						
							| 
									
										
										
										
											2023-12-12 15:39:25 -05:00
										 |  |  | 		} else if (msg === 'update') { | 
					
						
							|  |  |  | 			self.skipWaiting().then(() => self.clients.claim()).then(() => self.clients.matchAll()).then((all) => all.forEach((c) => c.navigate(c.url))); | 
					
						
							| 
									
										
										
										
											2021-12-21 14:41:26 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | }); |