2023-04-25 10:25:09 +02:00
|
|
|
// update cache version every time there is a new deployment
|
|
|
|
// so the service worker reinitializes the cache
|
2023-11-13 10:46:02 +01:00
|
|
|
const CACHE_VERSION = 70
|
2022-07-05 16:16:46 -06:00
|
|
|
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
2022-07-04 11:01:08 -06:00
|
|
|
|
2022-07-05 16:16:46 -06:00
|
|
|
const getApiKey = request => {
|
2022-09-29 20:40:58 +02:00
|
|
|
let api_key = request.headers.get('X-Api-Key')
|
|
|
|
if (!api_key || api_key == 'undefined') {
|
|
|
|
api_key = 'no_api_key'
|
|
|
|
}
|
|
|
|
return api_key
|
2022-07-04 12:32:28 -06:00
|
|
|
}
|
2022-07-04 11:01:08 -06:00
|
|
|
|
|
|
|
// on activation we clean up the previously registered service workers
|
|
|
|
self.addEventListener('activate', evt =>
|
|
|
|
evt.waitUntil(
|
|
|
|
caches.keys().then(cacheNames => {
|
|
|
|
return Promise.all(
|
|
|
|
cacheNames.map(cacheName => {
|
2022-07-04 14:17:46 -06:00
|
|
|
const currentCacheVersion = cacheName.split('-').slice(-2, 2)
|
2022-07-04 12:32:28 -06:00
|
|
|
if (currentCacheVersion !== CACHE_VERSION) {
|
2022-07-05 16:16:46 -06:00
|
|
|
return caches.delete(cacheName)
|
2022-07-04 11:01:08 -06:00
|
|
|
}
|
|
|
|
})
|
2022-07-05 16:16:46 -06:00
|
|
|
)
|
2022-07-04 11:01:08 -06:00
|
|
|
})
|
|
|
|
)
|
2022-07-05 16:16:46 -06:00
|
|
|
)
|
2022-07-04 11:01:08 -06:00
|
|
|
|
2022-07-04 14:17:46 -06:00
|
|
|
// The fetch handler serves responses for same-origin resources from a cache.
|
|
|
|
// If no response is found, it populates the runtime cache with the response
|
|
|
|
// from the network before returning it to the page.
|
|
|
|
self.addEventListener('fetch', event => {
|
2022-07-05 16:16:46 -06:00
|
|
|
if (
|
2022-09-29 20:40:58 +02:00
|
|
|
!event.request.url.startsWith(
|
|
|
|
self.location.origin + '/api/v1/payments/sse'
|
|
|
|
) &&
|
2022-07-05 16:16:46 -06:00
|
|
|
event.request.url.startsWith(self.location.origin) &&
|
|
|
|
event.request.method == 'GET'
|
|
|
|
) {
|
2022-07-04 14:17:46 -06:00
|
|
|
// Open the cache
|
2022-07-05 16:16:46 -06:00
|
|
|
event.respondWith(
|
|
|
|
caches.open(CURRENT_CACHE + getApiKey(event.request)).then(cache => {
|
|
|
|
// Go to the network first
|
|
|
|
return fetch(event.request)
|
|
|
|
.then(fetchedResponse => {
|
|
|
|
cache.put(event.request, fetchedResponse.clone())
|
2022-07-04 11:01:08 -06:00
|
|
|
|
2022-07-05 16:16:46 -06:00
|
|
|
return fetchedResponse
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
// If the network is unavailable, get
|
|
|
|
return cache.match(event.request.url)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
)
|
2022-07-04 14:17:46 -06:00
|
|
|
}
|
2022-07-05 16:16:46 -06:00
|
|
|
})
|
2023-09-11 15:48:49 +02:00
|
|
|
|
|
|
|
// Handle and show incoming push notifications
|
|
|
|
self.addEventListener('push', function (event) {
|
|
|
|
if (!(self.Notification && self.Notification.permission === 'granted')) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let data = event.data.json()
|
|
|
|
const title = data.title
|
|
|
|
const body = data.body
|
|
|
|
const url = data.url
|
|
|
|
|
|
|
|
event.waitUntil(
|
|
|
|
self.registration.showNotification(title, {
|
|
|
|
body: body,
|
|
|
|
icon: '/favicon.ico',
|
|
|
|
data: {
|
|
|
|
url: url
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
// User can click on the notification message to open wallet
|
|
|
|
// Installed app will open when `url_handlers` in web app manifest is supported
|
|
|
|
self.addEventListener('notificationclick', function (event) {
|
|
|
|
event.notification.close()
|
|
|
|
event.waitUntil(clients.openWindow(event.notification.data.url))
|
|
|
|
})
|