-
Notifications
You must be signed in to change notification settings - Fork 822
/
Workbox.mjs
480 lines (429 loc) · 18.2 KB
/
Workbox.mjs
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*
Copyright 2019 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
import {Deferred} from 'workbox-core/_private/Deferred.mjs';
import {logger} from 'workbox-core/_private/logger.mjs';
import {messageSW} from './messageSW.mjs';
import {EventTargetShim} from './utils/EventTargetShim.mjs';
import {urlsMatch} from './utils/urlsMatch.mjs';
import {WorkboxEvent} from './utils/WorkboxEvent.mjs';
import './_version.mjs';
// The time a SW must be in the waiting phase before we can conclude
// `skipWaiting()` wasn't called. This 200 amount wasn't scientifically
// chosen, but it seems to avoid false positives in my testing.
const WAITING_TIMEOUT_DURATION = 200;
// The amount of time to wait for a `messageSW` response from a controlling SW.
// If this amount of time passes, the assumption is there's no mesage listener.
const GET_VERSION_TIMEOUT_DURATION = 1000;
// The amount of time after a registration that we can reasonably conclude
// that the registration didn't trigger an update.
const REGISTRATION_TIMEOUT_DURATION = 60000;
/**
* A class to aid in handling service worker registration, updates, and
* reacting to service worker lifecycle events.
*
* @memberof module:workbox-window
*/
class Workbox extends EventTargetShim {
/**
* Creates a new Workbox instance with a script URL and service worker
* options. The script URL and options are the same as those used when
* calling `navigator.serviceWorker.register(scriptURL, options)`. See:
* https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/register
*
* @param {string} scriptURL The service worker script associated with this
* instance.
* @param {Object} [options] The service worker options associated with this
* instance.
*/
constructor({scriptURL, scriptVersion = null, registerOptions = {}} = {}) {
super();
this._scriptURL = scriptURL;
this._scriptVersion = scriptVersion;
this._registerOptions = registerOptions;
this._updateFoundCount = 0;
// Deferreds we can resolve later.
this._swDeferred = new Deferred();
this._activeDeferred = new Deferred();
this._controllingDeferred = new Deferred();
// Bind event handler callbacks.
this._onMessage = this._onMessage.bind(this);
this._onStateChange = this._onStateChange.bind(this);
this._onUpdateFound = this._onUpdateFound.bind(this);
this._onControllerChange = this._onControllerChange.bind(this);
}
/**
* Registers a service worker for this instances script URL and service
* worker options. By default this method delays registration until after
* the window has loaded.
*
* @param {Object} [options]
* @param {Function} [options.immediate=false] Setting this to true will
* register the service worker immediately, even if the window has
* not loaded (not recommended).
*/
async register({immediate = false} = {}) {
if (process.env.NODE_ENV !== 'production') {
if (this._registrationTime) {
logger.error('Cannot re-register a Workbox instance after it has ' +
'been registered. Create a new instance instead.');
return;
}
}
if (!immediate && document.readyState !== 'complete') {
await new Promise((res) => addEventListener('load', res));
}
// Before registering, attempt to determine if a SW is already controlling
// the page, and if that SW script (and version, if specified) matches this
// instance's script.
this._compatibleControllingSW = await this._getControllingSWIfCompatible();
this._registration = await this._registerScript();
// Only resolve deferreds now if we know we have a compatible controller.
if (this._compatibleControllingSW) {
this._sw = this._compatibleControllingSW;
this._swDeferred.resolve(this._compatibleControllingSW);
this._activeDeferred.resolve(this._compatibleControllingSW);
this._controllingDeferred.resolve(this._compatibleControllingSW);
this._reportWindowReady(this._compatibleControllingSW);
this._compatibleControllingSW.addEventListener(
'statechange', this._onStateChange, {once: true});
}
if (process.env.NODE_ENV !== 'production') {
logger.log('Successfully registered service worker.', this._scriptURL);
if (navigator.serviceWorker.controller) {
if (this._compatibleControllingSW) {
logger.debug('A service worker with the same script URL ' +
(this._scriptVersion ? 'and version ' : '') +
'is already controlling this page.');
} else if (!urlsMatch(
navigator.serviceWorker.controller.scriptURL, this._scriptURL)) {
logger.debug('A service worker with a different script URL is ' +
'currently controlling the page. The browser is now fetching ' +
'the new script now...');
} else {
logger.debug('An older version of your service worker script is ' +
'currently controlling the page. The browser is fetching the ' +
'new script now...');
}
}
// If there's an active and waiting service worker before the
// `updatefound` event fires, it means there was a waiting service worker
// in the queue before this one was registered.
if (this._registration.waiting && this._registration.active) {
logger.warn('A service worker was already waiting to activate ' +
'before this script was registered...');
}
const currentPageIsOutOfScope = () => {
const scopeURL = new URL(
this._registerOptions.scope || this._scriptURL, document.baseURI);
const scopeURLBasePath = new URL('./', scopeURL.href).pathname;
return !location.pathname.startsWith(scopeURLBasePath);
};
if (currentPageIsOutOfScope()) {
logger.warn('The current page is not in scope for the registered ' +
'service worker. Was this a mistake?');
}
}
this._registration.addEventListener('updatefound', this._onUpdateFound);
navigator.serviceWorker.addEventListener(
'controllerchange', this._onControllerChange, {once: true});
// Add message listeners.
if ('BroadcastChannel' in self) {
this._broadcastChannel = new BroadcastChannel('workbox');
this._broadcastChannel.addEventListener('message', this._onMessage);
}
navigator.serviceWorker.addEventListener('message', this._onMessage);
return this._registration;
}
/**
* Resolves to the service worker registered by this instance as soon as it
* is active. If a service worker was already controlling at registration
* time then it will resolve to that if the script URLs (and optionally
* script versions) match, otherwise it will wait until an update is found
* and activates.
*
* @return {Promise<ServiceWorker>}
*/
get active() {
return this._activeDeferred.promise;
}
/**
* Resolves to the service worker registered by this instance as soon as it
* is controlling the page. If a service worker was already controlling at
* registration time then it will resolve to that if the script URLs (and
* optionally script versions) match, otherwise it will wait until an update
* is found and starts controlling the page.
* Note: the first time a service worker is installed it will active but
* not start controlling the page unless `clients.claim()` is called in the
* service worker.
*
* @return {Promise<ServiceWorker>}
*/
get controlling() {
return this._controllingDeferred.promise;
}
/**
* Resolves with a reference to a service worker that matches the script URL
* of this instance, as soon as it's available.
*
* If, at registration time, there’s already an active service worker with a
* matching script URL, that will be what is resolved. If there’s no active
* and matching service worker at registration time then the promise will
* not resolve until an update is found and starts installing, at which
* point the installing service worker is resolved.
*
* @return {Promise<ServiceWorker>}
*/
async getSW() {
return this._swDeferred.promise;
}
/**
* Sends the passed data object to the service worker registered by this
* instance and resolves with a response (if any).
*
* A response can be set in a message handler in the service worker by
* calling `event.ports[0].postMessage(...)`, which will resolve the promise
* returned by `messageSW()`. If no response is set, the promise will never
* resolve.
*
* @param {Object} data An object to send to the service worker
* @return {Promise<Object>}
*/
async messageSW(data) {
const sw = await this.getSW();
return new Promise((resolve) => {
let messageChannel = new MessageChannel();
messageChannel.port1.onmessage = (evt) => resolve(evt.data);
sw.postMessage(data, [messageChannel.port2]);
});
}
/**
* Checks for a service worker already controlling the page and returns
* it if its script URL (and optionally script version) match. The
* script version is determined by sending a message to the controlling
* service worker and waiting for a response. If no response is returned
* the service worker is assumed to not have a version.
*
* @private
* @return {ServiceWorker|undefined}
*/
async _getControllingSWIfCompatible() {
const controller = navigator.serviceWorker.controller;
if (controller && urlsMatch(controller.scriptURL, this._scriptURL)) {
// If the URLs match and no script version is specified, assume the
// SW is the same. NOTE: without a script version, this isn't a
// particularly good test. Using a script version is encouraged if
// you need to send messages to your service worker on all page loads.
if (!this._scriptVersion) {
return controller;
}
// Message the SW to get its version, but use a timeout in case it
// doesn't support responding to messages.
const swVersion = await messageSW(controller, {
type: 'GET_VERSION',
meta: 'workbox-window',
}, GET_VERSION_TIMEOUT_DURATION);
if (swVersion === this._scriptVersion) {
return controller;
}
}
}
/**
* Registers a service worker for this instances script URL and register
* options and tracks the time registration was complete.
*
* @private
*/
async _registerScript() {
try {
const reg = await navigator.serviceWorker.register(
this._scriptURL, this._registerOptions);
// Keep track of when registration happened, so it can be used in the
// `this._onUpdateFound` heuristic. Also use the presence of this
// property as a way to see if `.register()` has been called.
this._registrationTime = performance.now();
return reg;
} catch (error) {
if (process.env.NODE_ENV !== 'production') {
logger.error(error);
}
// Re-throw the error.
throw error;
}
}
/**
* Sends a message to the passed service worker that the window is ready.
*
* @param {ServiceWorker} sw
* @private
*/
_reportWindowReady(sw) {
messageSW(sw, {
type: 'WINDOW_READY',
meta: 'workbox-window',
});
}
/**
* @private
*/
_onUpdateFound() {
const installingSW = this._registration.installing;
// If the script URL passed to `navigator.serviceWorker.register()` is
// different from the current controlling SW's script URL, we know any
// successful registration calls will trigger an `updatefound` event.
// But if the registered script URL is the same as the current controlling
// SW's script URL, we'll only get an `updatefound` event if the file
// changed since it was last registered. This can be a problem if the user
// opens up the same page in a different tab, and that page registers
// a SW that triggers an update. It's a problem because this page has no
// good way of knowing whether the `updatefound` event came from the SW
// script it registered or from a registration attempt made by a newer
// version of the page running in another tab.
// To minimize the possibility of a false positive, we use the logic here:
let updateLikelyTriggeredExternally =
// Since we enforce only calling `register()` once, and since we don't
// add the `updatefound` event listener until the `register()` call, if
// `_updateFoundCount` is > 0 then it means this method has already
// been called, thus this SW must be external
this._updateFoundCount > 0 ||
// If the script URL of the installing SW is different from this
// instance's script URL, we know it's definitely not from our
// registration.
!urlsMatch(installingSW.scriptURL, this._scriptURL) ||
// If we already have a compatible controlling SW, and if the
// `scriptVersion` options was set, then it's fairly safe to assume
// any update is from an external register.
(this._scriptVersion && this._compatibleControllingSW) ||
// If all of the above are false, then we use a time-based heuristic:
// Any `updatefound` event that occurs long after our registration is
// assumed to be external.
(performance.now() >
this._registrationTime + REGISTRATION_TIMEOUT_DURATION) ?
// If any of the above are not true, we assume the update was
// triggered by this instance.
true : false;
if (updateLikelyTriggeredExternally) {
this._externalSW = installingSW;
this._registration.removeEventListener(
'updatefound', this._onUpdateFound);
} else {
// If the update was not triggered externally we know the installing
// SW is the one we registered, so we set it.
this._sw = installingSW;
this._swDeferred.resolve(installingSW);
// The `installing` state isn't something we have a dedicated
// callback for, but we do log messages for it in development.
if (process.env.NODE_ENV !== 'production') {
if (navigator.serviceWorker.controller) {
logger.log('Updated service worker found. Installing now...');
} else {
logger.log('Service worker is installing...');
}
}
}
// Increment the `updatefound` count, so future invocations of this
// method can be sure they were triggered externally.
++this._updateFoundCount;
// Add a `statechange` listener regardless of whether this update was
// triggered externally, since we have callbacks for both.
installingSW.addEventListener('statechange', this._onStateChange);
}
/**
* @private
* @param {Event} originalEvent
*/
_onStateChange(originalEvent) {
const sw = originalEvent.target;
const {state} = sw;
const isExternal = sw === this._externalSW;
const eventPrefix = isExternal ? 'external' : '';
this.dispatchEvent(new WorkboxEvent(
eventPrefix + state, {sw, originalEvent}));
if (state === 'installed') {
// This timeout is used to ignore cases where the service worker calls
// `skipWaiting()` in the install event, thus moving it directly in the
// activating state. (Since all service workers *must* go through the
// waiting phase, the only way to detect `skipWaiting()` called in the
// install event is to observe that the time spent in the waiting phase
// is very short.)
// NOTE: we don't need separate timeouts for the own and external SWs
// since they can't go through these phases at the same time.
this._waitingTimeout = setTimeout(() => {
// Ensure the SW is still waiting (it may now be redundant).
if (state === 'installed' && this._registration.waiting === sw) {
this.dispatchEvent(new WorkboxEvent(
eventPrefix + 'waiting', {sw, originalEvent}));
if (process.env.NODE_ENV !== 'production') {
if (isExternal) {
logger.warn('An external service worker has installed but is ' +
'waiting for this client to close before activating...');
} else {
logger.warn('The service worker has installed but is waiting ' +
' for existing clients to close before activating...');
}
}
}
}, WAITING_TIMEOUT_DURATION);
} else if (state === 'activating') {
clearTimeout(this._waitingTimeout);
if (!isExternal) {
this._activeDeferred.resolve(sw);
}
}
if (process.env.NODE_ENV !== 'production') {
switch (state) {
case 'installed':
if (isExternal) {
logger.warn('An external service worker has installed. ' +
'You may want to suggest users reload this page.');
} else {
logger.log('Registered service worker installed.');
}
break;
case 'activated':
if (isExternal) {
logger.warn('An external service worker has activated.');
} else {
logger.log('Registered service worker activated.');
if (sw !== navigator.serviceWorker.controller) {
logger.warn('The registered service worker is active but ' +
'not yet controlling the page. Reload or run ' +
'`clients.claim()` in the service worker.');
}
}
break;
case 'redundant':
if (!isExternal) {
logger.log('Registered service worker now redundant!');
}
break;
}
}
}
/**
* @private
* @param {Event} originalEvent
*/
_onControllerChange(originalEvent) {
const sw = this._sw;
if (sw === navigator.serviceWorker.controller) {
if (process.env.NODE_ENV !== 'production') {
logger.log('Registered service worker now controlling this page.');
}
this.dispatchEvent(new WorkboxEvent('controlling', {sw, originalEvent}));
this._controllingDeferred.resolve(sw);
}
}
/**
* @private
* @param {Event} originalEvent
*/
_onMessage(originalEvent) {
const {data} = originalEvent;
this.dispatchEvent(new WorkboxEvent('message', {data, originalEvent}));
}
}
export {Workbox};