forked from nlepage/go-wasm-http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
51 lines (44 loc) · 1.18 KB
/
sw.js
File metadata and controls
51 lines (44 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
function registerWasmHTTPListener(
wasm,
{ base, cacheName, passthrough, args = [] } = {},
) {
let path = new URL(registration.scope).pathname;
if (base && base !== "")
path = `${trimEnd(path, "/")}/${trimStart(base, "/")}`;
const handlerPromise = new Promise((setHandler) => {
self.wasmhttp = {
path,
setHandler,
};
});
const go = new Go();
go.argv = [wasm, ...args];
const source = cacheName
? caches
.open(cacheName)
.then((cache) => cache.match(wasm))
.then((response) => response ?? fetch(wasm))
: caches.match(wasm).then((response) => response ?? fetch(wasm));
WebAssembly.instantiateStreaming(source, go.importObject).then(
({ instance }) => go.run(instance),
);
addEventListener("fetch", (e) => {
if (passthrough?.(e.request)) {
e.respondWith(fetch(e.request));
return;
}
const { pathname } = new URL(e.request.url);
if (!pathname.startsWith(path)) return;
e.respondWith(handlerPromise.then((handler) => handler(e.request)));
});
}
function trimStart(s, c) {
let r = s;
while (r.startsWith(c)) r = r.slice(c.length);
return r;
}
function trimEnd(s, c) {
let r = s;
while (r.endsWith(c)) r = r.slice(0, -c.length);
return r;
}