2018-12-13 04:03:50 +11:00
|
|
|
import runtime from 'serviceworker-webpack-plugin/lib/runtime'
|
|
|
|
|
2018-12-07 00:34:00 +11:00
|
|
|
function urlBase64ToUint8Array (base64String) {
|
|
|
|
const padding = '='.repeat((4 - base64String.length % 4) % 4)
|
|
|
|
const base64 = (base64String + padding)
|
|
|
|
.replace(/-/g, '+')
|
|
|
|
.replace(/_/g, '/')
|
|
|
|
|
|
|
|
const rawData = window.atob(base64)
|
|
|
|
return Uint8Array.from([...rawData].map((char) => char.charCodeAt(0)))
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPushSupported () {
|
|
|
|
return 'serviceWorker' in navigator && 'PushManager' in window
|
|
|
|
}
|
|
|
|
|
|
|
|
function registerServiceWorker () {
|
2018-12-13 04:03:50 +11:00
|
|
|
return runtime.register()
|
2018-12-09 23:25:43 +11:00
|
|
|
.catch((err) => console.error('Unable to register service worker.', err))
|
2018-12-07 00:34:00 +11:00
|
|
|
}
|
|
|
|
|
2018-12-20 17:17:59 +11:00
|
|
|
function unregisterServiceWorker () {
|
|
|
|
return runtime.register()
|
|
|
|
.then((registration) => registration.unregister())
|
|
|
|
.catch((err) => console.error('Unable to unregister serviceworker', err))
|
|
|
|
}
|
|
|
|
|
2018-12-09 23:25:43 +11:00
|
|
|
function subscribe (registration, isEnabled, vapidPublicKey) {
|
|
|
|
if (!isEnabled) return Promise.reject(new Error('Web Push is disabled in config'))
|
|
|
|
if (!vapidPublicKey) return Promise.reject(new Error('VAPID public key is not found'))
|
2018-12-07 18:57:35 +11:00
|
|
|
|
2018-12-07 00:34:00 +11:00
|
|
|
const subscribeOptions = {
|
|
|
|
userVisibleOnly: true,
|
2018-12-09 23:25:43 +11:00
|
|
|
applicationServerKey: urlBase64ToUint8Array(vapidPublicKey)
|
2018-12-07 00:34:00 +11:00
|
|
|
}
|
|
|
|
return registration.pushManager.subscribe(subscribeOptions)
|
|
|
|
}
|
|
|
|
|
2018-12-09 23:25:43 +11:00
|
|
|
function sendSubscriptionToBackEnd (subscription, token) {
|
2018-12-07 00:34:00 +11:00
|
|
|
return window.fetch('/api/v1/push/subscription/', {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
2018-12-09 23:25:43 +11:00
|
|
|
'Authorization': `Bearer ${token}`
|
2018-12-07 00:34:00 +11:00
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
subscription,
|
|
|
|
data: {
|
|
|
|
alerts: {
|
|
|
|
follow: true,
|
|
|
|
favourite: true,
|
|
|
|
mention: true,
|
|
|
|
reblog: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2018-12-09 23:25:43 +11:00
|
|
|
.then((response) => {
|
|
|
|
if (!response.ok) throw new Error('Bad status code from server.')
|
2018-12-07 00:34:00 +11:00
|
|
|
return response.json()
|
|
|
|
})
|
2018-12-09 23:25:43 +11:00
|
|
|
.then((responseData) => {
|
|
|
|
if (!responseData.id) throw new Error('Bad response from server.')
|
2018-12-07 00:34:00 +11:00
|
|
|
return responseData
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-12-20 17:17:59 +11:00
|
|
|
export function registerPushNotifications (isEnabled, vapidPublicKey, token) {
|
2018-12-07 00:34:00 +11:00
|
|
|
if (isPushSupported()) {
|
|
|
|
registerServiceWorker()
|
2018-12-13 22:04:09 +11:00
|
|
|
.then((registration) => subscribe(registration, isEnabled, vapidPublicKey))
|
|
|
|
.then((subscription) => sendSubscriptionToBackEnd(subscription, token))
|
|
|
|
.catch((e) => console.warn(`Failed to setup Web Push Notifications: ${e.message}`))
|
2018-12-07 00:34:00 +11:00
|
|
|
}
|
|
|
|
}
|
2018-12-20 17:17:59 +11:00
|
|
|
|
|
|
|
export function unregisterPushNotifications (isEnabled, vapidPublicKey, token) {
|
|
|
|
if (isPushSupported()) {
|
|
|
|
unregisterServiceWorker()
|
|
|
|
.then((registration) => subscribe(registration, isEnabled, vapidPublicKey))
|
|
|
|
.then((subscription) => sendSubscriptionToBackEnd(subscription, token))
|
|
|
|
.catch((e) => console.warn(`Failed to setup Web Push Notifications: ${e.message}`))
|
|
|
|
}
|
|
|
|
}
|