2018-12-11 15:31:48 +00:00
|
|
|
import {
|
|
|
|
assets as __assets__,
|
|
|
|
shell as __shell__,
|
|
|
|
routes as __routes__
|
|
|
|
} from '../__sapper__/service-worker.js'
|
2019-10-25 03:03:10 +01:00
|
|
|
import { get, post } from './routes/_utils/ajax'
|
2018-12-16 01:13:46 +00:00
|
|
|
|
2018-12-11 15:31:48 +00:00
|
|
|
const timestamp = process.env.SAPPER_TIMESTAMP
|
2018-03-26 05:31:40 +01:00
|
|
|
const ASSETS = `assets_${timestamp}`
|
2018-04-01 01:26:10 +01:00
|
|
|
const WEBPACK_ASSETS = `webpack_assets_${timestamp}`
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2019-10-23 04:45:30 +01:00
|
|
|
const ON_DEMAND_CACHE = [
|
|
|
|
{
|
|
|
|
regex: /tesseract-core\.wasm/,
|
|
|
|
cache: WEBPACK_ASSETS
|
|
|
|
},
|
|
|
|
{
|
|
|
|
regex: /traineddata\.gz/,
|
|
|
|
cache: ASSETS
|
2021-02-16 00:47:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
regex: /\$polyfill\$/,
|
|
|
|
cache: WEBPACK_ASSETS
|
2019-10-23 04:45:30 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-12-11 15:31:48 +00:00
|
|
|
// `static` is an array of everything in the `static` directory
|
2018-03-26 05:31:40 +01:00
|
|
|
const assets = __assets__
|
|
|
|
.map(file => file.startsWith('/') ? file : `/${file}`)
|
2018-12-08 19:21:54 +00:00
|
|
|
.filter(filename => !filename.endsWith('.map'))
|
2018-12-16 17:35:02 +00:00
|
|
|
.filter(filename => filename !== '/robots.txt')
|
2019-10-23 04:45:30 +01:00
|
|
|
.filter(filename => !filename.includes('traineddata.gz')) // cache on-demand
|
2019-09-24 08:50:42 +01:00
|
|
|
.filter(filename => !filename.endsWith('.webapp')) // KaiOS manifest
|
2020-12-19 04:02:36 +00:00
|
|
|
.filter(filename => !/emoji-.*?\.json$/.test(filename)) // useless to cache; it already goes in IndexedDB
|
2018-03-26 05:31:40 +01:00
|
|
|
|
|
|
|
// `shell` is an array of all the files generated by webpack
|
|
|
|
// also contains '/index.html' for some reason
|
2018-04-01 01:26:10 +01:00
|
|
|
const webpackAssets = __shell__
|
2018-12-16 01:13:46 +00:00
|
|
|
.filter(filename => !filename.endsWith('.map')) // don't bother with sourcemaps
|
2019-08-26 02:33:44 +01:00
|
|
|
.filter(filename => !filename.includes('tesseract-core.wasm')) // cache on-demand
|
2020-09-20 22:31:15 +01:00
|
|
|
.filter(filename => !filename.includes('LICENSE')) // don't bother with license files
|
2021-02-16 00:47:18 +00:00
|
|
|
.filter(filename => !filename.includes('$polyfill$')) // polyfills are cached dynamically
|
2018-03-26 05:31:40 +01:00
|
|
|
|
2018-01-06 23:51:25 +00:00
|
|
|
// `routes` is an array of `{ pattern: RegExp }` objects that
|
2018-12-11 15:31:48 +00:00
|
|
|
// match the pages in your src
|
2018-01-14 22:54:26 +00:00
|
|
|
const routes = __routes__
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
self.addEventListener('install', event => {
|
2018-03-23 05:30:48 +00:00
|
|
|
event.waitUntil((async () => {
|
2018-04-01 01:26:10 +01:00
|
|
|
await Promise.all([
|
|
|
|
caches.open(WEBPACK_ASSETS).then(cache => cache.addAll(webpackAssets)),
|
|
|
|
caches.open(ASSETS).then(cache => cache.addAll(assets))
|
|
|
|
])
|
2019-06-01 21:07:38 +01:00
|
|
|
// We shouldn't have to do this, but the previous page could be an old one,
|
|
|
|
// which would not send us a postMessage to skipWaiting().
|
|
|
|
// See https://github.com/nolanlawson/pinafore/issues/1243
|
2019-06-01 20:17:12 +01:00
|
|
|
self.skipWaiting()
|
2018-03-15 07:03:22 +00:00
|
|
|
})())
|
2018-01-14 22:54:26 +00:00
|
|
|
})
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
self.addEventListener('activate', event => {
|
2018-03-23 05:30:48 +00:00
|
|
|
event.waitUntil((async () => {
|
2019-08-03 21:49:37 +01:00
|
|
|
const keys = await caches.keys()
|
2018-03-26 05:31:40 +01:00
|
|
|
|
|
|
|
// delete old asset/ondemand caches
|
2019-08-03 21:49:37 +01:00
|
|
|
for (const key of keys) {
|
2018-04-01 01:26:10 +01:00
|
|
|
if (key !== ASSETS &&
|
2019-05-25 23:20:09 +01:00
|
|
|
!key.startsWith('webpack_assets_')) {
|
2018-03-15 07:03:22 +00:00
|
|
|
await caches.delete(key)
|
2018-01-14 22:54:26 +00:00
|
|
|
}
|
2018-03-15 07:03:22 +00:00
|
|
|
}
|
2018-03-26 05:31:40 +01:00
|
|
|
|
2018-12-11 15:31:48 +00:00
|
|
|
// for webpack static, keep the two latest builds because we may need
|
2018-04-01 01:26:10 +01:00
|
|
|
// them when the service worker has installed but the page has not
|
|
|
|
// yet reloaded (e.g. when it gives the toast saying "please reload"
|
|
|
|
// but then you don't refresh and instead load an async chunk)
|
2019-08-03 21:49:37 +01:00
|
|
|
const webpackKeysToDelete = keys
|
2018-04-01 01:26:10 +01:00
|
|
|
.filter(key => key.startsWith('webpack_assets_'))
|
|
|
|
.sort((a, b) => {
|
2019-08-03 21:49:37 +01:00
|
|
|
const aTimestamp = parseInt(a.substring(15), 10)
|
|
|
|
const bTimestamp = parseInt(b.substring(15), 10)
|
2018-04-01 01:26:10 +01:00
|
|
|
return bTimestamp < aTimestamp ? -1 : 1
|
|
|
|
})
|
|
|
|
.slice(2)
|
|
|
|
|
2019-08-03 21:49:37 +01:00
|
|
|
for (const key of webpackKeysToDelete) {
|
2018-04-01 01:26:10 +01:00
|
|
|
await caches.delete(key)
|
|
|
|
}
|
|
|
|
|
2018-03-15 07:03:22 +00:00
|
|
|
await self.clients.claim()
|
|
|
|
})())
|
2018-01-14 22:54:26 +00:00
|
|
|
})
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
self.addEventListener('fetch', event => {
|
2018-01-15 01:13:42 +00:00
|
|
|
const req = event.request
|
|
|
|
const url = new URL(req.url)
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-01-14 22:54:26 +00:00
|
|
|
// don't try to handle e.g. data: URIs
|
|
|
|
if (!url.protocol.startsWith('http')) {
|
2018-02-09 06:29:29 +00:00
|
|
|
return
|
2018-01-14 22:54:26 +00:00
|
|
|
}
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-03-23 05:30:48 +00:00
|
|
|
event.respondWith((async () => {
|
2019-08-03 21:49:37 +01:00
|
|
|
const sameOrigin = url.origin === self.origin
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-04-05 06:52:04 +01:00
|
|
|
if (sameOrigin) {
|
|
|
|
// always serve webpack-generated resources and
|
2018-12-11 15:31:48 +00:00
|
|
|
// static from the cache if possible
|
2019-08-03 21:49:37 +01:00
|
|
|
const response = await caches.match(req)
|
2018-04-05 06:52:04 +01:00
|
|
|
if (response) {
|
|
|
|
return response
|
|
|
|
}
|
2019-08-26 02:33:44 +01:00
|
|
|
|
2019-10-23 04:45:30 +01:00
|
|
|
for (const { regex, cache } of ON_DEMAND_CACHE) {
|
|
|
|
if (regex.test(url.pathname)) {
|
|
|
|
// cache this on-demand
|
|
|
|
const response = await fetch(req)
|
|
|
|
if (response && response.status >= 200 && response.status < 300) {
|
|
|
|
const clonedResponse = response.clone()
|
|
|
|
/* no await */
|
|
|
|
caches.open(cache).then(cache => cache.put(req, clonedResponse))
|
|
|
|
}
|
|
|
|
return response
|
2019-08-26 02:33:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 15:31:48 +00:00
|
|
|
// for routes, serve the /service-worker-index.html file from the most recent
|
|
|
|
// static cache
|
2018-04-05 06:52:04 +01:00
|
|
|
if (routes.find(route => route.pattern.test(url.pathname))) {
|
2019-08-03 21:49:37 +01:00
|
|
|
const response = await caches.match('/service-worker-index.html')
|
2018-08-24 16:51:09 +01:00
|
|
|
if (response) {
|
|
|
|
return response
|
|
|
|
}
|
2018-04-05 06:52:04 +01:00
|
|
|
}
|
2018-03-15 07:03:22 +00:00
|
|
|
}
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-03-15 07:03:22 +00:00
|
|
|
// for everything else, go network-only
|
|
|
|
return fetch(req)
|
|
|
|
})())
|
2018-01-14 22:54:26 +00:00
|
|
|
})
|
2018-10-06 21:06:10 +01:00
|
|
|
|
|
|
|
self.addEventListener('push', event => {
|
|
|
|
event.waitUntil((async () => {
|
|
|
|
const data = event.data.json()
|
2019-12-08 17:56:23 +00:00
|
|
|
const { origin } = event.target
|
2018-10-06 21:06:10 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
const notification = await get(`${origin}/api/v1/notifications/${data.notification_id}`, {
|
2019-08-03 21:49:37 +01:00
|
|
|
Authorization: `Bearer ${data.access_token}`
|
2018-10-06 21:06:10 +01:00
|
|
|
}, { timeout: 2000 })
|
|
|
|
|
|
|
|
await showRichNotification(data, notification)
|
|
|
|
} catch (e) {
|
|
|
|
await showSimpleNotification(data)
|
|
|
|
}
|
|
|
|
})())
|
|
|
|
})
|
|
|
|
|
|
|
|
async function showSimpleNotification (data) {
|
|
|
|
await self.registration.showNotification(data.title, {
|
|
|
|
icon: data.icon,
|
2019-08-08 04:38:38 +01:00
|
|
|
body: data.body,
|
|
|
|
data: {
|
|
|
|
url: `${self.origin}/notifications`
|
|
|
|
}
|
2018-10-06 21:06:10 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function showRichNotification (data, notification) {
|
2019-05-25 23:20:09 +01:00
|
|
|
const { icon, body } = data
|
|
|
|
const tag = notification.id
|
|
|
|
const { origin } = self.location
|
2019-05-27 22:25:45 +01:00
|
|
|
const badge = '/icon-push-badge.png'
|
2018-10-06 21:06:10 +01:00
|
|
|
|
|
|
|
switch (notification.type) {
|
|
|
|
case 'follow': {
|
|
|
|
await self.registration.showNotification(data.title, {
|
2019-05-27 22:25:45 +01:00
|
|
|
badge,
|
2019-05-25 23:20:09 +01:00
|
|
|
icon,
|
|
|
|
body,
|
|
|
|
tag,
|
2018-10-06 21:06:10 +01:00
|
|
|
data: {
|
2019-05-25 23:20:09 +01:00
|
|
|
url: `${origin}/accounts/${notification.account.id}`
|
2018-10-06 21:06:10 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
break
|
|
|
|
}
|
2019-05-25 23:20:09 +01:00
|
|
|
case 'reblog':
|
|
|
|
case 'favourite':
|
2019-08-20 03:08:59 +01:00
|
|
|
case 'poll': {
|
2019-05-25 23:20:09 +01:00
|
|
|
await self.registration.showNotification(data.title, {
|
2019-05-27 22:25:45 +01:00
|
|
|
badge,
|
2019-05-25 23:20:09 +01:00
|
|
|
icon,
|
|
|
|
body,
|
|
|
|
tag,
|
|
|
|
data: {
|
|
|
|
url: `${origin}/statuses/${notification.status.id}`
|
|
|
|
}
|
|
|
|
})
|
|
|
|
break
|
2019-08-20 03:08:59 +01:00
|
|
|
}
|
|
|
|
case 'mention': {
|
2019-05-25 23:20:09 +01:00
|
|
|
const isPublic = ['public', 'unlisted'].includes(notification.status.visibility)
|
|
|
|
const actions = [
|
|
|
|
isPublic && {
|
2018-10-28 22:28:55 +00:00
|
|
|
action: 'reblog',
|
2019-05-27 22:01:02 +01:00
|
|
|
icon: '/icon-push-fa-retweet.png', // generated manually from font-awesome-svg
|
2020-11-29 22:13:27 +00:00
|
|
|
title: 'intl.reblog'
|
2019-05-27 22:01:02 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
action: 'favourite',
|
|
|
|
icon: '/icon-push-fa-star.png', // generated manually from font-awesome-svg
|
2020-11-29 22:13:27 +00:00
|
|
|
title: 'intl.favorite'
|
2019-05-25 23:20:09 +01:00
|
|
|
}
|
|
|
|
].filter(Boolean)
|
2018-10-28 22:28:55 +00:00
|
|
|
|
2018-10-06 21:06:10 +01:00
|
|
|
await self.registration.showNotification(data.title, {
|
2019-05-27 22:25:45 +01:00
|
|
|
badge,
|
2019-05-25 23:20:09 +01:00
|
|
|
icon,
|
|
|
|
body,
|
|
|
|
tag,
|
2018-10-06 21:06:10 +01:00
|
|
|
data: {
|
2019-05-25 23:20:09 +01:00
|
|
|
instance: new URL(data.icon).origin,
|
2018-10-06 21:06:10 +01:00
|
|
|
status_id: notification.status.id,
|
|
|
|
access_token: data.access_token,
|
2019-05-25 23:20:09 +01:00
|
|
|
url: `${origin}/statuses/${notification.status.id}`
|
2018-10-06 21:06:10 +01:00
|
|
|
},
|
|
|
|
actions
|
|
|
|
})
|
|
|
|
break
|
2019-08-20 03:08:59 +01:00
|
|
|
}
|
2018-10-06 21:06:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const cloneNotification = notification => {
|
2019-05-25 23:20:09 +01:00
|
|
|
const clone = {}
|
2018-10-06 21:06:10 +01:00
|
|
|
|
2019-08-03 21:49:37 +01:00
|
|
|
for (const k in notification) {
|
2019-05-27 22:01:02 +01:00
|
|
|
// deliberately not doing a hasOwnProperty check, but skipping
|
|
|
|
// functions and null props like onclick and onshow and showTrigger
|
|
|
|
if (typeof notification[k] !== 'function' && notification[k] !== null) {
|
|
|
|
clone[k] = notification[k]
|
|
|
|
}
|
2018-10-06 21:06:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return clone
|
|
|
|
}
|
|
|
|
|
|
|
|
const updateNotificationWithoutAction = (notification, action) => {
|
|
|
|
const newNotification = cloneNotification(notification)
|
|
|
|
|
|
|
|
newNotification.actions = newNotification.actions.filter(item => item.action !== action)
|
|
|
|
|
|
|
|
return self.registration.showNotification(newNotification.title, newNotification)
|
|
|
|
}
|
|
|
|
|
|
|
|
self.addEventListener('notificationclick', event => {
|
|
|
|
event.waitUntil((async () => {
|
|
|
|
switch (event.action) {
|
|
|
|
case 'reblog': {
|
2019-05-25 23:20:09 +01:00
|
|
|
const url = `${event.notification.data.instance}/api/v1/statuses/${event.notification.data.status_id}/reblog`
|
|
|
|
await post(url, null, {
|
2019-08-03 21:49:37 +01:00
|
|
|
Authorization: `Bearer ${event.notification.data.access_token}`
|
2019-05-25 23:20:09 +01:00
|
|
|
})
|
2018-10-06 21:06:10 +01:00
|
|
|
await updateNotificationWithoutAction(event.notification, 'reblog')
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case 'favourite': {
|
2019-05-25 23:20:09 +01:00
|
|
|
const url = `${event.notification.data.instance}/api/v1/statuses/${event.notification.data.status_id}/favourite`
|
|
|
|
await post(url, null, {
|
2019-08-03 21:49:37 +01:00
|
|
|
Authorization: `Bearer ${event.notification.data.access_token}`
|
2019-05-25 23:20:09 +01:00
|
|
|
})
|
2018-10-06 21:06:10 +01:00
|
|
|
await updateNotificationWithoutAction(event.notification, 'favourite')
|
|
|
|
break
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
await self.clients.openWindow(event.notification.data.url)
|
|
|
|
await event.notification.close()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})())
|
|
|
|
})
|
2019-06-01 21:07:38 +01:00
|
|
|
|
|
|
|
self.addEventListener('message', (event) => {
|
|
|
|
switch (event.data) {
|
|
|
|
case 'skip-waiting':
|
|
|
|
self.skipWaiting()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
})
|