lnbits-legend/lnbits/static/js/service-worker.js

88 lines
2.5 KiB
JavaScript
Raw Normal View History

// update cache version every time there is a new deployment
// so the service worker reinitializes the cache
const CACHE_VERSION = 72
2022-07-05 16:16:46 -06:00
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
2022-07-05 16:16:46 -06:00
const getApiKey = request => {
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
}
// 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-05 16:16:46 -06:00
)
})
)
2022-07-05 16:16:46 -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 (
!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-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
})
[FEAT] Push notification integration into core (#1393) * push notification integration into core added missing component fixed bell working on all pages - made pubkey global template env var - had to move `get_push_notification_pubkey` to `helpers.py` because of circular reference with `tasks.py` formay trying to fix mypy added py-vapid to requirements Trying to fix stub mypy issue * removed key files * webpush key pair is saved in db `webpush_settings` * removed lnaddress extension changes * support for multi user account subscriptions, subscriptions are stored user based fixed syntax error fixed syntax error removed unused line * fixed subscribed user storage with local storage, no get request required * method is singular now * cleanup unsubscribed or expired push subscriptions fixed flake8 errors fixed poetry errors * updating to latest lnbits formatting, rebase error fix * remove unused? * revert * relock * remove * do not create settings table use adminsettings mypy fix * cleanup old code * catch case when client tries to recreate existing webpush subscription e.g. on cleared local storage * show notification bell on user related pages only * use local storage with one key like array, some refactoring * fixed crud import * fixed too long line * removed unused imports * ruff * make webpush editable * fixed privkey encoding * fix ruff * fix migration --------- Co-authored-by: schneimi <admin@schneimi.de> Co-authored-by: schneimi <dev@schneimi.de> Co-authored-by: dni ⚡ <office@dnilabs.com>
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))
})