mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
127 lines
3.3 KiB
JavaScript
127 lines
3.3 KiB
JavaScript
var staticFileCacheName = 'staticfiles';
|
|
var staticFileList;
|
|
|
|
var baseUrl = self.location.toString().substring(0, self.location.toString().lastIndexOf('/'));
|
|
var staticFileBaseUrl = baseUrl + '/staticfiles';
|
|
|
|
console.log('service worker location: ' + self.location);
|
|
console.log('service worker base url: ' + baseUrl);
|
|
|
|
function getStaticFileList() {
|
|
|
|
if (staticFileList) {
|
|
return Promise.resolve(staticFileList);
|
|
}
|
|
|
|
return fetch('staticfiles').then(function (response) {
|
|
return response.json().then(function (list) {
|
|
staticFileList = list;
|
|
return list;
|
|
});
|
|
});
|
|
}
|
|
|
|
self.addEventListener('install', function (event) {
|
|
event.waitUntil(
|
|
caches.open(staticFileCacheName).then(function (cache) {
|
|
return getStaticFileList().then(function (files) {
|
|
return cache.addAll(files);
|
|
});
|
|
})
|
|
);
|
|
});
|
|
|
|
function isCacheable(request) {
|
|
|
|
if ((request.method || '').toUpperCase() !== 'GET') {
|
|
return false;
|
|
}
|
|
|
|
var url = request.url || '';
|
|
|
|
if (url.indexOf(baseUrl) != 0) {
|
|
return false;
|
|
}
|
|
|
|
if (url.indexOf(staticFileBaseUrl) == 0) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (self.location.toString().indexOf('localhost') == -1) {
|
|
self.addEventListener('fetch', function (event) {
|
|
|
|
if (!isCacheable(event.request)) {
|
|
return;
|
|
}
|
|
|
|
event.respondWith(
|
|
caches.open(staticFileCacheName).then(function (cache) {
|
|
return cache.match(event.request).then(function (response) {
|
|
return response || fetch(event.request).then(function (response) {
|
|
cache.put(event.request, response.clone());
|
|
return response;
|
|
});
|
|
});
|
|
})
|
|
);
|
|
});
|
|
}
|
|
|
|
self.addEventListener('activate', function (event) {
|
|
|
|
event.waitUntil(
|
|
caches.open(staticFileCacheName).then(function (cache) {
|
|
return getStaticFileList().then(function (staticFiles) {
|
|
|
|
var setOfExpectedUrls = new Set(staticFiles);
|
|
|
|
return cache.keys().then(function (existingRequests) {
|
|
|
|
var existingBaseUrl = baseUrl + '/';
|
|
|
|
return Promise.all(
|
|
existingRequests.map(function (existingRequest) {
|
|
if (!setOfExpectedUrls.has(existingRequest.url.replace(existingBaseUrl, ''))) {
|
|
|
|
console.log('deleting cached file: ' + existingRequest.url);
|
|
return cache.delete(existingRequest);
|
|
}
|
|
})
|
|
);
|
|
});
|
|
});
|
|
}).then(function () {
|
|
return self.clients.claim();
|
|
})
|
|
);
|
|
});
|
|
|
|
self.addEventListener('notificationclick', function (event) {
|
|
|
|
var notification = event.notification;
|
|
notification.close();
|
|
|
|
var data = notification.data;
|
|
var serverId = data.serverId;
|
|
var action = event.action;
|
|
var promise;
|
|
|
|
switch (action) {
|
|
case 'cancel-install':
|
|
var id = data.id;
|
|
console.log('cancel: ' + id);
|
|
break;
|
|
case 'restart':
|
|
break;
|
|
default:
|
|
clients.openWindow("/");
|
|
break;
|
|
}
|
|
|
|
promise = promise || Promise.resolve();
|
|
event.waitUntil(promise);
|
|
|
|
}, false); |