2018-05-19 17:22:11 +00:00
|
|
|
import { freeStorage, storageFreeable } from '../storage/modifier';
|
2017-07-13 20:15:32 +00:00
|
|
|
import './web_push_notifications';
|
2017-07-17 22:19:17 +00:00
|
|
|
|
2018-03-27 10:32:30 +00:00
|
|
|
function openSystemCache() {
|
|
|
|
return caches.open('mastodon-system');
|
|
|
|
}
|
|
|
|
|
|
|
|
function openWebCache() {
|
2018-03-18 14:14:38 +00:00
|
|
|
return caches.open('mastodon-web');
|
|
|
|
}
|
|
|
|
|
2018-03-17 11:35:13 +00:00
|
|
|
function fetchRoot() {
|
2018-05-16 02:59:44 +00:00
|
|
|
return fetch('/', { credentials: 'include', redirect: 'manual' });
|
2018-03-17 11:35:13 +00:00
|
|
|
}
|
|
|
|
|
2018-05-15 19:42:31 +00:00
|
|
|
const firefox = navigator.userAgent.match(/Firefox\/(\d+)/);
|
|
|
|
const invalidOnlyIfCached = firefox && firefox[1] < 60;
|
2018-05-15 18:14:30 +00:00
|
|
|
|
2017-07-17 22:19:17 +00:00
|
|
|
// Cause a new version of a registered Service Worker to replace an existing one
|
|
|
|
// that is already installed, and replace the currently active worker on open pages.
|
|
|
|
self.addEventListener('install', function(event) {
|
2018-03-27 10:32:30 +00:00
|
|
|
event.waitUntil(Promise.all([openWebCache(), fetchRoot()]).then(([cache, root]) => cache.put('/', root)));
|
2017-07-17 22:19:17 +00:00
|
|
|
});
|
|
|
|
self.addEventListener('activate', function(event) {
|
|
|
|
event.waitUntil(self.clients.claim());
|
|
|
|
});
|
2018-03-17 11:35:13 +00:00
|
|
|
self.addEventListener('fetch', function(event) {
|
|
|
|
const url = new URL(event.request.url);
|
|
|
|
|
|
|
|
if (url.pathname.startsWith('/web/')) {
|
2018-03-18 14:14:38 +00:00
|
|
|
const asyncResponse = fetchRoot();
|
2018-03-27 10:32:30 +00:00
|
|
|
const asyncCache = openWebCache();
|
2018-03-18 14:14:38 +00:00
|
|
|
|
2018-05-16 02:59:44 +00:00
|
|
|
event.respondWith(asyncResponse.then(
|
|
|
|
response => asyncCache.then(cache => cache.put('/', response.clone()))
|
|
|
|
.then(() => response),
|
|
|
|
() => asyncCache.then(cache => cache.match('/'))));
|
2018-03-18 14:14:38 +00:00
|
|
|
} else if (url.pathname === '/auth/sign_out') {
|
|
|
|
const asyncResponse = fetch(event.request);
|
2018-03-27 10:32:30 +00:00
|
|
|
const asyncCache = openWebCache();
|
2018-03-18 14:14:38 +00:00
|
|
|
|
2018-05-14 17:58:11 +00:00
|
|
|
event.respondWith(asyncResponse.then(response => {
|
2018-03-18 14:14:38 +00:00
|
|
|
if (response.ok || response.type === 'opaqueredirect') {
|
2018-05-14 17:58:11 +00:00
|
|
|
return Promise.all([
|
2018-04-08 11:32:39 +00:00
|
|
|
asyncCache.then(cache => cache.delete('/')),
|
|
|
|
indexedDB.deleteDatabase('mastodon'),
|
2018-05-14 17:58:11 +00:00
|
|
|
]).then(() => response);
|
2018-03-18 14:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
|
|
|
}));
|
2018-05-19 17:22:11 +00:00
|
|
|
} else if (storageFreeable && process.env.CDN_HOST ? url.host === process.env.CDN_HOST : url.pathname.startsWith('/system/')) {
|
2018-05-14 17:58:11 +00:00
|
|
|
event.respondWith(openSystemCache().then(cache => {
|
|
|
|
return cache.match(event.request.url).then(cached => {
|
|
|
|
if (cached === undefined) {
|
2018-05-15 18:14:30 +00:00
|
|
|
const asyncResponse = invalidOnlyIfCached && event.request.cache === 'only-if-cached' ?
|
|
|
|
fetch(event.request, { cache: 'no-cache' }) : fetch(event.request);
|
|
|
|
|
|
|
|
return asyncResponse.then(response => {
|
|
|
|
if (response.ok) {
|
|
|
|
const put = cache.put(event.request.url, response.clone());
|
2018-03-27 10:32:30 +00:00
|
|
|
|
2018-05-14 17:58:11 +00:00
|
|
|
put.catch(() => freeStorage());
|
2018-03-27 10:32:30 +00:00
|
|
|
|
2018-05-14 17:58:11 +00:00
|
|
|
return put.then(() => {
|
|
|
|
freeStorage();
|
2018-05-15 18:14:30 +00:00
|
|
|
return response;
|
2018-05-14 17:58:11 +00:00
|
|
|
});
|
|
|
|
}
|
2018-03-27 10:32:30 +00:00
|
|
|
|
2018-05-15 18:14:30 +00:00
|
|
|
return response;
|
2018-05-14 17:58:11 +00:00
|
|
|
});
|
|
|
|
}
|
2018-03-27 10:32:30 +00:00
|
|
|
|
2018-05-14 17:58:11 +00:00
|
|
|
return cached;
|
|
|
|
});
|
2018-03-27 10:32:30 +00:00
|
|
|
}));
|
2018-03-17 11:35:13 +00:00
|
|
|
}
|
|
|
|
});
|