/* This file is part of the Notesnook project (https://notesnook.com/) Copyright (C) 2023 Streetwriters (Private) Limited This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /// /// declare const self: ServiceWorkerGlobalScope & typeof globalThis; self.addEventListener("activate", () => self.clients.claim()); const downloads = new Map(); // This allows the web app to trigger skipWaiting via // registration.waiting.postMessage({type: 'SKIP_WAITING'}) self.addEventListener("message", async (event) => { const { data } = event; if (!data) return; if (data.sharedService) { const client = await self.clients.get(event.data.clientId); client?.postMessage(event.data, event.ports as MessagePort[]); return; } switch (data.type) { // We send a heartbeat every x second to keep the // service worker alive if a transferable stream is not sent case "PING": break; case "SKIP_WAITING": self.skipWaiting(); break; case "GET_VERSION": { if (!event.source) return; event.source.postMessage({ type: data.type, version: APP_VERSION, hash: GIT_HASH, isBeta: IS_BETA }); } break; case "REGISTER_DOWNLOAD": { console.log("register download", data); const downloadUrl = data.url || self.registration.scope + Math.random() + "/" + (typeof data === "string" ? data : data.filename); const port = event.ports[0]; const metadata = new Array(3); // [stream, data, port] metadata[1] = data; metadata[2] = port; if (event.data.transferringReadable) { port.onmessage = (evt) => { port.onmessage = null; metadata[0] = evt.data.readableStream; }; } else { metadata[0] = createStream(port); } downloads.set(downloadUrl, metadata); port.postMessage({ download: downloadUrl }); } break; default: break; } }); self.addEventListener("fetch", (event) => { const url = event.request.url; if (url === self.registration.scope + "clientId") { return event.respondWith( new Response(event.clientId, { headers: { "Content-Type": "text/plain", "X-Client-Id": event.clientId } }) ); } // this only works for Firefox if (url.endsWith("/ping")) { return event.respondWith(new Response("pong")); } const metadata = downloads.get(url); if (!metadata) return null; const [stream, data, port] = metadata; downloads.delete(url); // Not comfortable letting any user control all headers // so we only copy over the length & disposition const responseHeaders = new Headers({ "Content-Type": "application/octet-stream; charset=utf-8", // To be on the safe side, The link can be opened in a iframe. // but octet-stream should stop it. "Content-Security-Policy": "default-src 'none'", "X-Content-Security-Policy": "default-src 'none'", "X-WebKit-CSP": "default-src 'none'", "X-XSS-Protection": "1; mode=block" }); const headers = new Headers(data.headers || {}); if (headers.has("Content-Length")) { responseHeaders.set("Content-Length", headers.get("Content-Length")!); } if (headers.has("Content-Disposition")) { responseHeaders.set( "Content-Disposition", headers.get("Content-Disposition")! ); } // data, data.filename and size should not be used anymore if (data.size) { console.warn("Depricated"); responseHeaders.set("Content-Length", data.size); } let fileName = typeof data === "string" ? data : data.filename; if (fileName) { console.warn("Depricated"); // Make filename RFC5987 compatible fileName = encodeURIComponent(fileName) .replace(/['()]/g, escape) .replace(/\*/g, "%2A"); responseHeaders.set( "Content-Disposition", "attachment; filename*=UTF-8''" + fileName ); } event.respondWith(new Response(stream, { headers: responseHeaders })); port.postMessage({ debug: "Download started" }); }); function createStream(port: MessagePort) { // ReadableStream is only supported by chrome 52 return new ReadableStream({ start(controller) { // When we receive data on the messageChannel, we write port.onmessage = ({ data }) => { if (data === "end") { return controller.close(); } if (data === "abort") { controller.error("Aborted the download"); return; } controller.enqueue(data); }; }, cancel(reason) { console.log("user aborted", reason); port.postMessage({ abort: true }); } }); }