-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice_worker.js
More file actions
288 lines (241 loc) · 5.71 KB
/
service_worker.js
File metadata and controls
288 lines (241 loc) · 5.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
"use strict";
// ################################## CONSTANTS #################################
var CACHE_NAME = 'xf-offline';
var CACHE_ROUTE = 'index.php?sw/cache.json';
var OFFLINE_ROUTE = 'index.php?sw/offline';
var supportPreloading = false;
// ############################### EVENT LISTENERS ##############################
self.addEventListener('install', function(event)
{
self.skipWaiting();
event.waitUntil(createCache());
});
self.addEventListener('activate', function(event)
{
self.clients.claim();
event.waitUntil(
new Promise(function(resolve)
{
if (self.registration.navigationPreload)
{
self.registration.navigationPreload[supportPreloading ? 'enable' : 'disable']();
}
resolve();
})
);
});
self.addEventListener('message', function(event)
{
var clientId = event.source.id;
var message = event.data;
if (typeof message !== 'object' || message === null)
{
console.error('Invalid message:', message);
return;
}
recieveMessage(clientId, message.type, message.payload);
});
self.addEventListener('fetch', function(event)
{
var request = event.request,
accept = request.headers.get('accept')
if (
request.mode !== 'navigate' ||
request.method !== 'GET' ||
(accept && !accept.includes('text/html'))
)
{
return;
}
// bypasses for: HTTP basic auth issues, file download issues (iOS), common ad blocker issues
if (request.url.match(/\/admin\.php|\/install\/|\/download($|&|\?)|[\/?]attachments\/|google-ad|adsense/))
{
if (supportPreloading && event.preloadResponse)
{
event.respondWith(event.preloadResponse);
}
return;
}
var response = Promise.resolve(event.preloadResponse)
.then(function(r)
{
return r || fetch(request)
});
event.respondWith(
response
.catch(function(error)
{
if (navigator.onLine)
{
// If we're online, don't display the offline error since it might be misleading
throw new Error(error);
}
return caches.open(CACHE_NAME)
.then(function(cache)
{
return cache.match(OFFLINE_ROUTE);
});
})
);
});
self.addEventListener('push', function(event)
{
if (!(self.Notification && self.Notification.permission === 'granted'))
{
return;
}
try
{
var data = event.data.json();
}
catch (e)
{
console.warn('Received push notification but payload not in the expected format.', e);
console.warn('Received data:', event.data.text());
return;
}
if (!data || !data.title || !data.body)
{
console.warn('Received push notification but no payload data or required fields missing.', data);
return;
}
data.last_count = 0;
var options = {
body: data.body,
dir: data.dir || 'ltr',
data: data
};
if (data.badge)
{
options.badge = data.badge;
}
if (data.icon)
{
options.icon = data.icon;
}
var notificationPromise;
if (data.tag && data.tag_phrase)
{
options.tag = data.tag;
options.renotify = true;
notificationPromise = self.registration.getNotifications({ tag: data.tag })
.then(function(notifications)
{
var lastKey = (notifications.length - 1),
notification = notifications[lastKey],
count = 0;
if (notification)
{
count = parseInt(notification.data.last_count, 10) + 1;
options.data.last_count = count;
options.body = options.body + ' ' + data.tag_phrase.replace('{count}', count.toString());
}
return self.registration.showNotification(data.title, options);
});
}
else
{
notificationPromise = self.registration.showNotification(data.title, options);
}
event.waitUntil(notificationPromise);
});
self.addEventListener('notificationclick', function(event)
{
var notification = event.notification;
notification.close();
if (notification.data.url)
{
event.waitUntil(clients.openWindow(notification.data.url));
}
});
// ################################## MESSAGING #################################
function sendMessage(clientId, type, payload)
{
if (typeof type !== 'string' || type === '')
{
console.error('Invalid message type:', type);
return;
}
if (typeof payload === 'undefined')
{
payload = {};
}
else if (typeof payload !== 'object' || payload === null)
{
console.error('Invalid message payload:', payload);
return;
}
clients.get(clientId)
.then(function (client)
{
client.postMessage({
type: type,
payload: payload
});
})
.catch(function(error)
{
console.error('An error occurred while sending a message:', error);
});
}
var messageHandlers = {};
function recieveMessage(clientId, type, payload)
{
if (typeof type !== 'string' || type === '')
{
console.error('Invalid message type:', type);
return;
}
if (typeof payload !== 'object' || payload === null)
{
console.error('Invalid message payload:', payload);
return;
}
var handler = messageHandlers[type];
if (typeof handler === 'undefined')
{
console.error('No handler available for message type:', type);
return;
}
handler(clientId, payload);
}
// ################################### CACHING ##################################
function createCache()
{
return caches.delete(CACHE_NAME)
.then(function()
{
return caches.open(CACHE_NAME);
})
.then(function(cache)
{
return fetch(CACHE_ROUTE)
.then(function(response)
{
return response.json();
})
.then(function(response)
{
var key = response.key || null;
var files = response.files || [];
files.push(OFFLINE_ROUTE);
return cache.addAll(files)
.then(function()
{
return key;
});
});
})
.catch(function(error)
{
console.error('There was an error setting up the cache:', error);
});
}
function updateCacheKey(clientId, key)
{
sendMessage(clientId, 'updateCacheKey', { 'key': key });
}
messageHandlers.updateCache = function(clientId, payload)
{
createCache();
};