123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- /*
- Copyright 2018 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 {assert} from 'workbox-core/_private/assert.mjs';
- import {cacheNames} from 'workbox-core/_private/cacheNames.mjs';
- import {cacheWrapper} from 'workbox-core/_private/cacheWrapper.mjs';
- import {fetchWrapper} from 'workbox-core/_private/fetchWrapper.mjs';
- import {WorkboxError} from 'workbox-core/_private/WorkboxError.mjs';
- import {cleanRedirect} from './utils/cleanRedirect.mjs';
- import {createCacheKey} from './utils/createCacheKey.mjs';
- import {printCleanupDetails} from './utils/printCleanupDetails.mjs';
- import {printInstallDetails} from './utils/printInstallDetails.mjs';
- import './_version.mjs';
- /**
- * Performs efficient precaching of assets.
- *
- * @memberof module:workbox-precaching
- */
- class PrecacheController {
- /**
- * Create a new PrecacheController.
- *
- * @param {string} [cacheName] An optional name for the cache, to override
- * the default precache name.
- */
- constructor(cacheName) {
- this._cacheName = cacheNames.getPrecacheName(cacheName);
- this._urlsToCacheKeys = new Map();
- }
- /**
- * This method will add items to the precache list, removing duplicates
- * and ensuring the information is valid.
- *
- * @param {
- * Array<module:workbox-precaching.PrecacheController.PrecacheEntry|string>
- * } entries Array of entries to precache.
- */
- addToCacheList(entries) {
- if (process.env.NODE_ENV !== 'production') {
- assert.isArray(entries, {
- moduleName: 'workbox-precaching',
- className: 'PrecacheController',
- funcName: 'addToCacheList',
- paramName: 'entries',
- });
- }
- for (const entry of entries) {
- const {cacheKey, url} = createCacheKey(entry);
- if (this._urlsToCacheKeys.has(url) &&
- this._urlsToCacheKeys.get(url) !== cacheKey) {
- throw new WorkboxError('add-to-cache-list-conflicting-entries', {
- firstEntry: this._urlsToCacheKeys.get(url),
- secondEntry: cacheKey,
- });
- }
- this._urlsToCacheKeys.set(url, cacheKey);
- }
- }
- /**
- * Precaches new and updated assets. Call this method from the service worker
- * install event.
- *
- * @param {Object} options
- * @param {Event} [options.event] The install event (if needed).
- * @param {Array<Object>} [options.plugins] Plugins to be used for fetching
- * and caching during install.
- * @return {Promise<workbox.precaching.InstallResult>}
- */
- async install({event, plugins} = {}) {
- if (process.env.NODE_ENV !== 'production') {
- if (plugins) {
- assert.isArray(plugins, {
- moduleName: 'workbox-precaching',
- className: 'PrecacheController',
- funcName: 'install',
- paramName: 'plugins',
- });
- }
- }
- const urlsToPrecache = [];
- const urlsAlreadyPrecached = [];
- const cache = await caches.open(this._cacheName);
- const alreadyCachedRequests = await cache.keys();
- const alreadyCachedURLs = new Set(alreadyCachedRequests.map(
- (request) => request.url));
- for (const cacheKey of this._urlsToCacheKeys.values()) {
- if (alreadyCachedURLs.has(cacheKey)) {
- urlsAlreadyPrecached.push(cacheKey);
- } else {
- urlsToPrecache.push(cacheKey);
- }
- }
- const precacheRequests = urlsToPrecache.map((url) => {
- return this._addURLToCache({event, plugins, url});
- });
- await Promise.all(precacheRequests);
- if (process.env.NODE_ENV !== 'production') {
- printInstallDetails(urlsToPrecache, urlsAlreadyPrecached);
- }
- return {
- updatedURLs: urlsToPrecache,
- notUpdatedURLs: urlsAlreadyPrecached,
- };
- }
- /**
- * Deletes assets that are no longer present in the current precache manifest.
- * Call this method from the service worker activate event.
- *
- * @return {Promise<workbox.precaching.CleanupResult>}
- */
- async activate() {
- const cache = await caches.open(this._cacheName);
- const currentlyCachedRequests = await cache.keys();
- const expectedCacheKeys = new Set(this._urlsToCacheKeys.values());
- const deletedURLs = [];
- for (const request of currentlyCachedRequests) {
- if (!expectedCacheKeys.has(request.url)) {
- await cache.delete(request);
- deletedURLs.push(request.url);
- }
- }
- if (process.env.NODE_ENV !== 'production') {
- printCleanupDetails(deletedURLs);
- }
- return {deletedURLs};
- }
- /**
- * Requests the entry and saves it to the cache if the response is valid.
- * By default, any response with a status code of less than 400 (including
- * opaque responses) is considered valid.
- *
- * If you need to use custom criteria to determine what's valid and what
- * isn't, then pass in an item in `options.plugins` that implements the
- * `cacheWillUpdate()` lifecycle event.
- *
- * @private
- * @param {Object} options
- * @param {string} options.url The URL to fetch and cache.
- * @param {Event} [options.event] The install event (if passed).
- * @param {Array<Object>} [options.plugins] An array of plugins to apply to
- * fetch and caching.
- */
- async _addURLToCache({url, event, plugins}) {
- const request = new Request(url, {credentials: 'same-origin'});
- let response = await fetchWrapper.fetch({
- event,
- plugins,
- request,
- });
- // Allow developers to override the default logic about what is and isn't
- // valid by passing in a plugin implementing cacheWillUpdate(), e.g.
- // a workbox.cacheableResponse.Plugin instance.
- let cacheWillUpdateCallback;
- for (const plugin of (plugins || [])) {
- if ('cacheWillUpdate' in plugin) {
- cacheWillUpdateCallback = plugin.cacheWillUpdate.bind(plugin);
- }
- }
- const isValidResponse = cacheWillUpdateCallback ?
- // Use a callback if provided. It returns a truthy value if valid.
- cacheWillUpdateCallback({event, request, response}) :
- // Otherwise, default to considering any response status under 400 valid.
- // This includes, by default, considering opaque responses valid.
- response.status < 400;
- // Consider this a failure, leading to the `install` handler failing, if
- // we get back an invalid response.
- if (!isValidResponse) {
- throw new WorkboxError('bad-precaching-response', {
- url,
- status: response.status,
- });
- }
- if (response.redirected) {
- response = await cleanRedirect(response);
- }
- await cacheWrapper.put({
- event,
- plugins,
- request,
- response,
- cacheName: this._cacheName,
- matchOptions: {
- ignoreSearch: true,
- },
- });
- }
- /**
- * Returns a mapping of a precached URL to the corresponding cache key, taking
- * into account the revision information for the URL.
- *
- * @return {Map<string, string>} A URL to cache key mapping.
- */
- getURLsToCacheKeys() {
- return this._urlsToCacheKeys;
- }
- /**
- * Returns a list of all the URLs that have been precached by the current
- * service worker.
- *
- * @return {Array<string>} The precached URLs.
- */
- getCachedURLs() {
- return [...this._urlsToCacheKeys.keys()];
- }
- /**
- * Returns the cache key used for storing a given URL. If that URL is
- * unversioned, like `/index.html', then the cache key will be the original
- * URL with a search parameter appended to it.
- *
- * @param {string} url A URL whose cache key you want to look up.
- * @return {string} The versioned URL that corresponds to a cache key
- * for the original URL, or undefined if that URL isn't precached.
- */
- getCacheKeyForURL(url) {
- const urlObject = new URL(url, location);
- return this._urlsToCacheKeys.get(urlObject.href);
- }
- }
- export {PrecacheController};
|