2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-10-05 18:40:06 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-10-15 22:42:16 +05:30
|
|
|
const VERSION = "%%VERSION%%";
|
2020-10-02 23:24:24 +05:30
|
|
|
const GLOBAL_HASH = "%%GLOBAL_HASH%%";
|
2021-03-23 19:48:07 +05:30
|
|
|
const UNHASHED_PRECACHED_ASSETS = [];
|
|
|
|
const HASHED_PRECACHED_ASSETS = [];
|
|
|
|
const HASHED_CACHED_ON_REQUEST_ASSETS = [];
|
2021-03-25 04:42:57 +05:30
|
|
|
const NOTIFICATION_BADGE_ICON = "assets/icon.png";
|
2020-10-02 23:24:24 +05:30
|
|
|
const unhashedCacheName = `hydrogen-assets-${GLOBAL_HASH}`;
|
|
|
|
const hashedCacheName = `hydrogen-assets`;
|
2020-10-20 20:58:42 +05:30
|
|
|
const mediaThumbnailCacheName = `hydrogen-media-thumbnails-v2`;
|
2019-09-15 18:02:12 +05:30
|
|
|
|
|
|
|
self.addEventListener('install', function(e) {
|
2020-10-02 23:24:24 +05:30
|
|
|
e.waitUntil((async () => {
|
|
|
|
const unhashedCache = await caches.open(unhashedCacheName);
|
|
|
|
await unhashedCache.addAll(UNHASHED_PRECACHED_ASSETS);
|
|
|
|
const hashedCache = await caches.open(hashedCacheName);
|
|
|
|
await Promise.all(HASHED_PRECACHED_ASSETS.map(async asset => {
|
|
|
|
if (!await hashedCache.match(asset)) {
|
|
|
|
await hashedCache.add(asset);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
})());
|
2019-09-15 18:02:12 +05:30
|
|
|
});
|
|
|
|
|
2021-03-19 00:04:41 +05:30
|
|
|
self.addEventListener('activate', (event) => {
|
|
|
|
// on a first page load/sw install,
|
|
|
|
// start using the service worker on all pages straight away
|
|
|
|
self.clients.claim();
|
|
|
|
event.waitUntil(purgeOldCaches());
|
|
|
|
});
|
|
|
|
|
2020-10-02 23:24:24 +05:30
|
|
|
async function purgeOldCaches() {
|
|
|
|
// remove any caches we don't know about
|
|
|
|
const keyList = await caches.keys();
|
|
|
|
for (const key of keyList) {
|
2020-10-05 19:28:29 +05:30
|
|
|
if (key !== unhashedCacheName && key !== hashedCacheName && key !== mediaThumbnailCacheName) {
|
2020-10-02 23:24:24 +05:30
|
|
|
await caches.delete(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// remove the cache for any old hashed resource
|
|
|
|
const hashedCache = await caches.open(hashedCacheName);
|
|
|
|
const keys = await hashedCache.keys();
|
|
|
|
const hashedAssetURLs =
|
|
|
|
HASHED_PRECACHED_ASSETS
|
|
|
|
.concat(HASHED_CACHED_ON_REQUEST_ASSETS)
|
|
|
|
.map(a => new URL(a, self.registration.scope).href);
|
|
|
|
|
|
|
|
for (const request of keys) {
|
|
|
|
if (!hashedAssetURLs.some(url => url === request.url)) {
|
|
|
|
hashedCache.delete(request);
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
2020-10-02 23:24:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 18:02:12 +05:30
|
|
|
self.addEventListener('fetch', (event) => {
|
2020-10-05 18:40:06 +05:30
|
|
|
event.respondWith(handleRequest(event.request));
|
2019-09-15 18:02:12 +05:30
|
|
|
});
|
2020-10-02 23:24:24 +05:30
|
|
|
|
2020-10-20 20:58:42 +05:30
|
|
|
function isCacheableThumbnail(url) {
|
|
|
|
if (url.pathname.startsWith("/_matrix/media/r0/thumbnail/")) {
|
|
|
|
const width = parseInt(url.searchParams.get("width"), 10);
|
|
|
|
const height = parseInt(url.searchParams.get("height"), 10);
|
|
|
|
if (width <= 50 && height <= 50) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-23 16:28:45 +05:30
|
|
|
const baseURL = new URL(self.registration.scope);
|
2021-03-19 00:04:41 +05:30
|
|
|
let pendingFetchAbortController = new AbortController();
|
2020-10-02 23:24:24 +05:30
|
|
|
async function handleRequest(request) {
|
2020-11-06 03:21:21 +05:30
|
|
|
try {
|
|
|
|
const url = new URL(request.url);
|
2021-03-19 00:04:41 +05:30
|
|
|
// rewrite / to /index.html so it hits the cache
|
2020-11-06 03:21:21 +05:30
|
|
|
if (url.origin === baseURL.origin && url.pathname === baseURL.pathname) {
|
|
|
|
request = new Request(new URL("index.html", baseURL.href));
|
|
|
|
}
|
|
|
|
let response = await readCache(request);
|
|
|
|
if (!response) {
|
|
|
|
// use cors so the resource in the cache isn't opaque and uses up to 7mb
|
|
|
|
// https://developers.google.com/web/tools/chrome-devtools/progressive-web-apps?utm_source=devtools#opaque-responses
|
|
|
|
if (isCacheableThumbnail(url)) {
|
2021-03-19 00:04:41 +05:30
|
|
|
response = await fetch(request, {signal: pendingFetchAbortController.signal, mode: "cors", credentials: "omit"});
|
2020-11-06 03:21:21 +05:30
|
|
|
} else {
|
2021-03-19 00:04:41 +05:30
|
|
|
response = await fetch(request, {signal: pendingFetchAbortController.signal});
|
2020-11-06 03:21:21 +05:30
|
|
|
}
|
|
|
|
await updateCache(request, response);
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
} catch (err) {
|
2021-03-19 00:04:41 +05:30
|
|
|
if (err.name !== "TypeError" && err.name !== "AbortError") {
|
2020-11-06 03:21:21 +05:30
|
|
|
console.error("error in service worker", err);
|
2020-10-20 20:58:42 +05:30
|
|
|
}
|
2020-11-06 03:21:21 +05:30
|
|
|
throw err;
|
2020-10-02 23:24:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateCache(request, response) {
|
2020-11-06 03:01:00 +05:30
|
|
|
// don't write error responses to the cache
|
|
|
|
if (response.status >= 400) {
|
|
|
|
return;
|
|
|
|
}
|
2020-10-05 19:28:29 +05:30
|
|
|
const url = new URL(request.url);
|
2020-10-02 23:24:24 +05:30
|
|
|
const baseURL = self.registration.scope;
|
2020-10-20 20:58:42 +05:30
|
|
|
if (isCacheableThumbnail(url)) {
|
|
|
|
const cache = await caches.open(mediaThumbnailCacheName);
|
|
|
|
cache.put(request, response.clone());
|
2020-10-05 19:28:29 +05:30
|
|
|
} else if (request.url.startsWith(baseURL)) {
|
|
|
|
let assetName = request.url.substr(baseURL.length);
|
|
|
|
if (HASHED_CACHED_ON_REQUEST_ASSETS.includes(assetName)) {
|
|
|
|
const cache = await caches.open(hashedCacheName);
|
|
|
|
await cache.put(request, response.clone());
|
|
|
|
}
|
2020-10-02 23:24:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function readCache(request) {
|
|
|
|
const unhashedCache = await caches.open(unhashedCacheName);
|
|
|
|
let response = await unhashedCache.match(request);
|
|
|
|
if (response) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
const hashedCache = await caches.open(hashedCacheName);
|
|
|
|
response = await hashedCache.match(request);
|
2020-10-05 19:28:29 +05:30
|
|
|
if (response) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = new URL(request.url);
|
2020-10-20 20:58:42 +05:30
|
|
|
if (isCacheableThumbnail(url)) {
|
2020-10-05 19:28:29 +05:30
|
|
|
const mediaThumbnailCache = await caches.open(mediaThumbnailCacheName);
|
|
|
|
response = await mediaThumbnailCache.match(request);
|
2020-11-06 03:01:00 +05:30
|
|
|
// added in 0.1.26, remove previously cached error responses, remove this in some time
|
2020-11-06 03:15:20 +05:30
|
|
|
if (response?.status >= 400) {
|
2020-11-06 03:01:00 +05:30
|
|
|
await mediaThumbnailCache.delete(request);
|
|
|
|
response = null;
|
|
|
|
}
|
2020-10-05 19:28:29 +05:30
|
|
|
}
|
2020-10-02 23:24:24 +05:30
|
|
|
return response;
|
|
|
|
}
|
2020-10-16 16:20:19 +05:30
|
|
|
|
|
|
|
self.addEventListener('message', (event) => {
|
|
|
|
const reply = payload => event.source.postMessage({replyTo: event.data.id, payload});
|
|
|
|
const {replyTo} = event.data;
|
|
|
|
if (replyTo) {
|
|
|
|
const resolve = pendingReplies.get(replyTo);
|
|
|
|
if (resolve) {
|
|
|
|
pendingReplies.delete(replyTo);
|
|
|
|
resolve(event.data.payload);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (event.data?.type) {
|
|
|
|
case "version":
|
|
|
|
reply({version: VERSION, buildHash: GLOBAL_HASH});
|
|
|
|
break;
|
|
|
|
case "skipWaiting":
|
|
|
|
self.skipWaiting();
|
|
|
|
break;
|
2021-03-19 00:04:41 +05:30
|
|
|
case "haltRequests":
|
2021-03-19 00:19:06 +05:30
|
|
|
event.waitUntil(haltRequests().finally(() => reply()));
|
2021-03-19 00:04:41 +05:30
|
|
|
break;
|
2020-10-16 16:20:19 +05:30
|
|
|
case "closeSession":
|
|
|
|
event.waitUntil(
|
|
|
|
closeSession(event.data.payload.sessionId, event.source.id)
|
2021-03-19 00:19:06 +05:30
|
|
|
.finally(() => reply())
|
2020-10-16 16:20:19 +05:30
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-03-24 19:53:01 +05:30
|
|
|
const NOTIF_TAG_NEW_MESSAGE = "new_message";
|
|
|
|
|
2021-03-19 01:16:11 +05:30
|
|
|
async function openClientFromNotif(event) {
|
2021-03-24 19:55:59 +05:30
|
|
|
if (event.notification.tag !== NOTIF_TAG_NEW_MESSAGE) {
|
2021-03-25 14:41:05 +05:30
|
|
|
console.log("clicked notif with tag", event.notification.tag);
|
2021-03-24 19:55:59 +05:30
|
|
|
return;
|
|
|
|
}
|
2021-03-19 01:16:11 +05:30
|
|
|
const {sessionId, roomId} = event.notification.data;
|
|
|
|
const sessionHash = `#/session/${sessionId}`;
|
|
|
|
const roomHash = `${sessionHash}/room/${roomId}`;
|
2021-03-24 19:55:59 +05:30
|
|
|
const clientWithSession = await findClient(async client => {
|
|
|
|
return await sendAndWaitForReply(client, "hasSessionOpen", {sessionId});
|
|
|
|
});
|
|
|
|
if (clientWithSession) {
|
|
|
|
console.log("notificationclick: client has session open, showing room there");
|
2021-03-31 20:21:25 +05:30
|
|
|
// use a message rather than clientWithSession.navigate here as this refreshes the page on chrome
|
|
|
|
clientWithSession.postMessage({type: "openRoom", payload: {roomId}});
|
2021-03-24 19:55:59 +05:30
|
|
|
if ('focus' in clientWithSession) {
|
2021-03-25 14:33:44 +05:30
|
|
|
try {
|
|
|
|
await clientWithSession.focus();
|
|
|
|
} catch (err) { console.error(err); } // I've had this throw on me on Android
|
2021-03-19 01:16:11 +05:30
|
|
|
}
|
2021-03-25 14:31:25 +05:30
|
|
|
} else if (self.clients.openWindow) {
|
2021-03-24 19:55:59 +05:30
|
|
|
console.log("notificationclick: no client found with session open, opening new window");
|
2021-03-31 20:04:37 +05:30
|
|
|
const roomURL = new URL(`./${roomHash}`, baseURL).href;
|
2021-03-19 01:16:11 +05:30
|
|
|
await self.clients.openWindow(roomURL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.addEventListener('notificationclick', event => {
|
|
|
|
event.notification.close();
|
|
|
|
event.waitUntil(openClientFromNotif(event));
|
|
|
|
});
|
|
|
|
|
2021-03-24 19:53:01 +05:30
|
|
|
async function handlePushNotification(n) {
|
2021-03-19 01:15:46 +05:30
|
|
|
console.log("got a push message", n);
|
2021-03-24 19:53:01 +05:30
|
|
|
const sessionId = n.session_id;
|
2021-03-19 01:15:46 +05:30
|
|
|
let sender = n.sender_display_name || n.sender;
|
|
|
|
if (sender && n.event_id) {
|
2021-03-24 19:53:01 +05:30
|
|
|
const roomId = n.room_id;
|
|
|
|
const hasFocusedClientOnRoom = !!await findClient(async client => {
|
|
|
|
if (client.visibilityState === "visible" && client.focused) {
|
|
|
|
return await sendAndWaitForReply(client, "hasRoomOpen", {sessionId, roomId});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (hasFocusedClientOnRoom) {
|
|
|
|
console.log("client is focused, room is open, don't show notif");
|
|
|
|
return;
|
|
|
|
}
|
2021-03-25 14:38:38 +05:30
|
|
|
const newMessageNotifs = Array.from(await self.registration.getNotifications({tag: NOTIF_TAG_NEW_MESSAGE}));
|
|
|
|
const notifsForRoom = newMessageNotifs.filter(n => n.data.roomId === roomId);
|
|
|
|
const hasMultiNotification = notifsForRoom.some(n => n.data.multi);
|
2021-03-25 15:43:54 +05:30
|
|
|
const hasSingleNotifsForRoom = newMessageNotifs.some(n => !n.data.multi);
|
|
|
|
const roomName = n.room_name || n.room_alias;
|
2021-03-25 14:38:38 +05:30
|
|
|
let multi = false;
|
2021-03-19 01:15:46 +05:30
|
|
|
let label;
|
2021-03-25 14:38:38 +05:30
|
|
|
let body;
|
|
|
|
if (hasMultiNotification) {
|
|
|
|
console.log("already have a multi message, don't do anything");
|
|
|
|
return;
|
2021-03-25 15:43:54 +05:30
|
|
|
} else if (hasSingleNotifsForRoom) {
|
2021-03-25 14:38:38 +05:30
|
|
|
console.log("showing multi message notification");
|
|
|
|
multi = true;
|
|
|
|
label = roomName || sender;
|
|
|
|
body = "New messages";
|
2021-03-19 01:15:46 +05:30
|
|
|
} else {
|
2021-03-25 14:38:38 +05:30
|
|
|
console.log("showing new message notification");
|
|
|
|
if (roomName && roomName !== sender) {
|
|
|
|
label = `${sender} in ${roomName}`;
|
|
|
|
} else {
|
|
|
|
label = sender;
|
|
|
|
}
|
|
|
|
body = n.content?.body || "New message";
|
2021-03-19 01:15:46 +05:30
|
|
|
}
|
2021-03-24 19:53:01 +05:30
|
|
|
await self.registration.showNotification(label, {
|
2021-03-19 01:15:46 +05:30
|
|
|
body,
|
2021-03-25 14:38:38 +05:30
|
|
|
data: {sessionId, roomId, multi},
|
|
|
|
tag: NOTIF_TAG_NEW_MESSAGE,
|
2021-03-25 04:42:57 +05:30
|
|
|
badge: NOTIFICATION_BADGE_ICON
|
2021-03-19 01:15:46 +05:30
|
|
|
});
|
|
|
|
}
|
2021-03-25 14:38:38 +05:30
|
|
|
// we could consider hiding previous notifications here based on the unread count
|
|
|
|
// (although we can't really figure out which notifications to hide) and also hiding
|
|
|
|
// notifications makes it hard to ensure we always show a notification after a push message
|
|
|
|
// when no client is visible, see https://goo.gl/yqv4Q4
|
2021-03-24 19:53:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
self.addEventListener('push', event => {
|
|
|
|
event.waitUntil(handlePushNotification(event.data.json()));
|
2021-03-19 01:15:46 +05:30
|
|
|
});
|
2020-10-16 16:20:19 +05:30
|
|
|
|
|
|
|
async function closeSession(sessionId, requestingClientId) {
|
|
|
|
const clients = await self.clients.matchAll();
|
|
|
|
await Promise.all(clients.map(async client => {
|
|
|
|
if (client.id !== requestingClientId) {
|
|
|
|
await sendAndWaitForReply(client, "closeSession", {sessionId});
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2021-03-19 00:04:41 +05:30
|
|
|
async function haltRequests() {
|
|
|
|
// first ask all clients to block sending any more requests
|
|
|
|
const clients = await self.clients.matchAll({type: "window"});
|
|
|
|
await Promise.all(clients.map(client => {
|
|
|
|
return sendAndWaitForReply(client, "haltRequests");
|
|
|
|
}));
|
|
|
|
// and only then abort the current requests
|
|
|
|
pendingFetchAbortController.abort();
|
|
|
|
}
|
|
|
|
|
2020-10-16 16:20:19 +05:30
|
|
|
const pendingReplies = new Map();
|
|
|
|
let messageIdCounter = 0;
|
|
|
|
function sendAndWaitForReply(client, type, payload) {
|
|
|
|
messageIdCounter += 1;
|
|
|
|
const id = messageIdCounter;
|
|
|
|
const promise = new Promise(resolve => {
|
|
|
|
pendingReplies.set(id, resolve);
|
|
|
|
});
|
|
|
|
client.postMessage({type, id, payload});
|
|
|
|
return promise;
|
|
|
|
}
|
2021-03-24 19:53:01 +05:30
|
|
|
|
|
|
|
async function findClient(predicate) {
|
|
|
|
const clientList = await self.clients.matchAll({type: "window"});
|
|
|
|
for (const client of clientList) {
|
|
|
|
if (await predicate(client)) {
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|