mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
// Any copyright is dedicated to the Public Domain.
|
|
// http://creativecommons.org/licenses/publicdomain/
|
|
|
|
this.onpush = handlePush;
|
|
this.onmessage = handleMessage;
|
|
|
|
function getJSON(data) {
|
|
var result = {
|
|
ok: false,
|
|
};
|
|
try {
|
|
result.value = data.json();
|
|
result.ok = true;
|
|
} catch (e) {
|
|
// Ignore syntax errors for invalid JSON.
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function handlePush(event) {
|
|
|
|
self.clients.matchAll().then(function(result) {
|
|
if (event instanceof PushEvent) {
|
|
if (!('data' in event)) {
|
|
result[0].postMessage({type: "finished", okay: "yes"});
|
|
return;
|
|
}
|
|
var message = {
|
|
type: "finished",
|
|
okay: "yes",
|
|
};
|
|
if (event.data) {
|
|
message.data = {
|
|
text: event.data.text(),
|
|
arrayBuffer: event.data.arrayBuffer(),
|
|
json: getJSON(event.data),
|
|
blob: event.data.blob(),
|
|
};
|
|
}
|
|
result[0].postMessage(message);
|
|
return;
|
|
}
|
|
result[0].postMessage({type: "finished", okay: "no"});
|
|
});
|
|
}
|
|
|
|
function handleMessage(event) {
|
|
// FIXME(kitcambridge): Enable when `ServiceWorkerMessageEvent` is
|
|
// implemented (bug 1143717).
|
|
/*
|
|
if (event.data.type == "publicKey") {
|
|
self.registration.pushManager.getSubscription().then(subscription => {
|
|
event.ports[0].postMessage(subscription.getKey("p256dh"));
|
|
});
|
|
}
|
|
*/
|
|
}
|