mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
* fix: download archive file `async` * feat: add `pay_link` property * feat: basic install using internal wallet for payment * fix: pop-up issues * chore: refactor * feat: detect paid extensions * fix: payment check * feat: small stuff * feat: show external invoice * fix: regression for extension install * feat: store previos successful payments * refactor: simplify, almost works * chore: gugu gaga * fix: pay and install * fix: do not pay invoice on the back-end * chore: code clean-up * feat: basic websocker listener * feat: use websocket to watch for invoice payment * feat: remember hanging invoices * refactor: extract `localStorage` methods * chore: code format * chore: code clean-up after test * feat: remember previous payment_hashes * chore: code format * refactor: rename `ExtensionPaymentInfo` to `ReleasePaymentInfo` * refactor: method rename * fix: release version matters now * chore: code format * refactor: method rename * refactor: extract method `_restore_payment_info` * refactor: extract method * chore: rollback `CACHE_VERSION` * chore: code format * feat: i18n * chore: update bundle * refactor: public method name * chore: code format * fix: websocket connection * Update installation.md (#2259) * Update installation.md (#2260) * fix: try to fix `openapi` error * chore: bundle * chore:bundle --------- Co-authored-by: benarc <ben@arc.wales> Co-authored-by: Arc <33088785+arcbtc@users.noreply.github.com>
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
// update cache version every time there is a new deployment
|
|
// so the service worker reinitializes the cache
|
|
const CACHE_VERSION = 121
|
|
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
|
|
|
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
|
|
}
|
|
|
|
// 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 => {
|
|
const currentCacheVersion = cacheName.split('-').slice(-2, 2)
|
|
if (currentCacheVersion !== CACHE_VERSION) {
|
|
return caches.delete(cacheName)
|
|
}
|
|
})
|
|
)
|
|
})
|
|
)
|
|
)
|
|
|
|
// 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 => {
|
|
if (
|
|
!event.request.url.startsWith(
|
|
self.location.origin + '/api/v1/payments/sse'
|
|
) &&
|
|
event.request.url.startsWith(self.location.origin) &&
|
|
event.request.method == 'GET'
|
|
) {
|
|
// Open the cache
|
|
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())
|
|
|
|
return fetchedResponse
|
|
})
|
|
.catch(() => {
|
|
// If the network is unavailable, get
|
|
return cache.match(event.request.url)
|
|
})
|
|
})
|
|
)
|
|
}
|
|
})
|
|
|
|
// 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))
|
|
})
|