mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
1155 lines
37 KiB
Text
1155 lines
37 KiB
Text
this.workbox = this.workbox || {};
|
|
this.workbox.core = (function (exports) {
|
|
'use strict';
|
|
|
|
try {
|
|
self['workbox:core:6.5.3'] && _();
|
|
} catch (e) {}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
const logger = (() => {
|
|
// Don't overwrite this value if it's already set.
|
|
// See https://github.com/GoogleChrome/workbox/pull/2284#issuecomment-560470923
|
|
if (!('__WB_DISABLE_DEV_LOGS' in self)) {
|
|
self.__WB_DISABLE_DEV_LOGS = false;
|
|
}
|
|
|
|
let inGroup = false;
|
|
const methodToColorMap = {
|
|
debug: `#7f8c8d`,
|
|
log: `#2ecc71`,
|
|
warn: `#f39c12`,
|
|
error: `#c0392b`,
|
|
groupCollapsed: `#3498db`,
|
|
groupEnd: null // No colored prefix on groupEnd
|
|
|
|
};
|
|
|
|
const print = function (method, args) {
|
|
if (self.__WB_DISABLE_DEV_LOGS) {
|
|
return;
|
|
}
|
|
|
|
if (method === 'groupCollapsed') {
|
|
// Safari doesn't print all console.groupCollapsed() arguments:
|
|
// https://bugs.webkit.org/show_bug.cgi?id=182754
|
|
if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {
|
|
console[method](...args);
|
|
return;
|
|
}
|
|
}
|
|
|
|
const styles = [`background: ${methodToColorMap[method]}`, `border-radius: 0.5em`, `color: white`, `font-weight: bold`, `padding: 2px 0.5em`]; // When in a group, the workbox prefix is not displayed.
|
|
|
|
const logPrefix = inGroup ? [] : ['%cworkbox', styles.join(';')];
|
|
console[method](...logPrefix, ...args);
|
|
|
|
if (method === 'groupCollapsed') {
|
|
inGroup = true;
|
|
}
|
|
|
|
if (method === 'groupEnd') {
|
|
inGroup = false;
|
|
}
|
|
}; // eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
|
|
const api = {};
|
|
const loggerMethods = Object.keys(methodToColorMap);
|
|
|
|
for (const key of loggerMethods) {
|
|
const method = key;
|
|
|
|
api[method] = (...args) => {
|
|
print(method, args);
|
|
};
|
|
}
|
|
|
|
return api;
|
|
})();
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
const messages = {
|
|
'invalid-value': ({
|
|
paramName,
|
|
validValueDescription,
|
|
value
|
|
}) => {
|
|
if (!paramName || !validValueDescription) {
|
|
throw new Error(`Unexpected input to 'invalid-value' error.`);
|
|
}
|
|
|
|
return `The '${paramName}' parameter was given a value with an ` + `unexpected value. ${validValueDescription} Received a value of ` + `${JSON.stringify(value)}.`;
|
|
},
|
|
'not-an-array': ({
|
|
moduleName,
|
|
className,
|
|
funcName,
|
|
paramName
|
|
}) => {
|
|
if (!moduleName || !className || !funcName || !paramName) {
|
|
throw new Error(`Unexpected input to 'not-an-array' error.`);
|
|
}
|
|
|
|
return `The parameter '${paramName}' passed into ` + `'${moduleName}.${className}.${funcName}()' must be an array.`;
|
|
},
|
|
'incorrect-type': ({
|
|
expectedType,
|
|
paramName,
|
|
moduleName,
|
|
className,
|
|
funcName
|
|
}) => {
|
|
if (!expectedType || !paramName || !moduleName || !funcName) {
|
|
throw new Error(`Unexpected input to 'incorrect-type' error.`);
|
|
}
|
|
|
|
const classNameStr = className ? `${className}.` : '';
|
|
return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}` + `${funcName}()' must be of type ${expectedType}.`;
|
|
},
|
|
'incorrect-class': ({
|
|
expectedClassName,
|
|
paramName,
|
|
moduleName,
|
|
className,
|
|
funcName,
|
|
isReturnValueProblem
|
|
}) => {
|
|
if (!expectedClassName || !moduleName || !funcName) {
|
|
throw new Error(`Unexpected input to 'incorrect-class' error.`);
|
|
}
|
|
|
|
const classNameStr = className ? `${className}.` : '';
|
|
|
|
if (isReturnValueProblem) {
|
|
return `The return value from ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`;
|
|
}
|
|
|
|
return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`;
|
|
},
|
|
'missing-a-method': ({
|
|
expectedMethod,
|
|
paramName,
|
|
moduleName,
|
|
className,
|
|
funcName
|
|
}) => {
|
|
if (!expectedMethod || !paramName || !moduleName || !className || !funcName) {
|
|
throw new Error(`Unexpected input to 'missing-a-method' error.`);
|
|
}
|
|
|
|
return `${moduleName}.${className}.${funcName}() expected the ` + `'${paramName}' parameter to expose a '${expectedMethod}' method.`;
|
|
},
|
|
'add-to-cache-list-unexpected-type': ({
|
|
entry
|
|
}) => {
|
|
return `An unexpected entry was passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' The entry ` + `'${JSON.stringify(entry)}' isn't supported. You must supply an array of ` + `strings with one or more characters, objects with a url property or ` + `Request objects.`;
|
|
},
|
|
'add-to-cache-list-conflicting-entries': ({
|
|
firstEntry,
|
|
secondEntry
|
|
}) => {
|
|
if (!firstEntry || !secondEntry) {
|
|
throw new Error(`Unexpected input to ` + `'add-to-cache-list-duplicate-entries' error.`);
|
|
}
|
|
|
|
return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${firstEntry} but different revision details. Workbox is ` + `unable to cache and version the asset correctly. Please remove one ` + `of the entries.`;
|
|
},
|
|
'plugin-error-request-will-fetch': ({
|
|
thrownErrorMessage
|
|
}) => {
|
|
if (!thrownErrorMessage) {
|
|
throw new Error(`Unexpected input to ` + `'plugin-error-request-will-fetch', error.`);
|
|
}
|
|
|
|
return `An error was thrown by a plugins 'requestWillFetch()' method. ` + `The thrown error message was: '${thrownErrorMessage}'.`;
|
|
},
|
|
'invalid-cache-name': ({
|
|
cacheNameId,
|
|
value
|
|
}) => {
|
|
if (!cacheNameId) {
|
|
throw new Error(`Expected a 'cacheNameId' for error 'invalid-cache-name'`);
|
|
}
|
|
|
|
return `You must provide a name containing at least one character for ` + `setCacheDetails({${cacheNameId}: '...'}). Received a value of ` + `'${JSON.stringify(value)}'`;
|
|
},
|
|
'unregister-route-but-not-found-with-method': ({
|
|
method
|
|
}) => {
|
|
if (!method) {
|
|
throw new Error(`Unexpected input to ` + `'unregister-route-but-not-found-with-method' error.`);
|
|
}
|
|
|
|
return `The route you're trying to unregister was not previously ` + `registered for the method type '${method}'.`;
|
|
},
|
|
'unregister-route-route-not-registered': () => {
|
|
return `The route you're trying to unregister was not previously ` + `registered.`;
|
|
},
|
|
'queue-replay-failed': ({
|
|
name
|
|
}) => {
|
|
return `Replaying the background sync queue '${name}' failed.`;
|
|
},
|
|
'duplicate-queue-name': ({
|
|
name
|
|
}) => {
|
|
return `The Queue name '${name}' is already being used. ` + `All instances of backgroundSync.Queue must be given unique names.`;
|
|
},
|
|
'expired-test-without-max-age': ({
|
|
methodName,
|
|
paramName
|
|
}) => {
|
|
return `The '${methodName}()' method can only be used when the ` + `'${paramName}' is used in the constructor.`;
|
|
},
|
|
'unsupported-route-type': ({
|
|
moduleName,
|
|
className,
|
|
funcName,
|
|
paramName
|
|
}) => {
|
|
return `The supplied '${paramName}' parameter was an unsupported type. ` + `Please check the docs for ${moduleName}.${className}.${funcName} for ` + `valid input types.`;
|
|
},
|
|
'not-array-of-class': ({
|
|
value,
|
|
expectedClass,
|
|
moduleName,
|
|
className,
|
|
funcName,
|
|
paramName
|
|
}) => {
|
|
return `The supplied '${paramName}' parameter must be an array of ` + `'${expectedClass}' objects. Received '${JSON.stringify(value)},'. ` + `Please check the call to ${moduleName}.${className}.${funcName}() ` + `to fix the issue.`;
|
|
},
|
|
'max-entries-or-age-required': ({
|
|
moduleName,
|
|
className,
|
|
funcName
|
|
}) => {
|
|
return `You must define either config.maxEntries or config.maxAgeSeconds` + `in ${moduleName}.${className}.${funcName}`;
|
|
},
|
|
'statuses-or-headers-required': ({
|
|
moduleName,
|
|
className,
|
|
funcName
|
|
}) => {
|
|
return `You must define either config.statuses or config.headers` + `in ${moduleName}.${className}.${funcName}`;
|
|
},
|
|
'invalid-string': ({
|
|
moduleName,
|
|
funcName,
|
|
paramName
|
|
}) => {
|
|
if (!paramName || !moduleName || !funcName) {
|
|
throw new Error(`Unexpected input to 'invalid-string' error.`);
|
|
}
|
|
|
|
return `When using strings, the '${paramName}' parameter must start with ` + `'http' (for cross-origin matches) or '/' (for same-origin matches). ` + `Please see the docs for ${moduleName}.${funcName}() for ` + `more info.`;
|
|
},
|
|
'channel-name-required': () => {
|
|
return `You must provide a channelName to construct a ` + `BroadcastCacheUpdate instance.`;
|
|
},
|
|
'invalid-responses-are-same-args': () => {
|
|
return `The arguments passed into responsesAreSame() appear to be ` + `invalid. Please ensure valid Responses are used.`;
|
|
},
|
|
'expire-custom-caches-only': () => {
|
|
return `You must provide a 'cacheName' property when using the ` + `expiration plugin with a runtime caching strategy.`;
|
|
},
|
|
'unit-must-be-bytes': ({
|
|
normalizedRangeHeader
|
|
}) => {
|
|
if (!normalizedRangeHeader) {
|
|
throw new Error(`Unexpected input to 'unit-must-be-bytes' error.`);
|
|
}
|
|
|
|
return `The 'unit' portion of the Range header must be set to 'bytes'. ` + `The Range header provided was "${normalizedRangeHeader}"`;
|
|
},
|
|
'single-range-only': ({
|
|
normalizedRangeHeader
|
|
}) => {
|
|
if (!normalizedRangeHeader) {
|
|
throw new Error(`Unexpected input to 'single-range-only' error.`);
|
|
}
|
|
|
|
return `Multiple ranges are not supported. Please use a single start ` + `value, and optional end value. The Range header provided was ` + `"${normalizedRangeHeader}"`;
|
|
},
|
|
'invalid-range-values': ({
|
|
normalizedRangeHeader
|
|
}) => {
|
|
if (!normalizedRangeHeader) {
|
|
throw new Error(`Unexpected input to 'invalid-range-values' error.`);
|
|
}
|
|
|
|
return `The Range header is missing both start and end values. At least ` + `one of those values is needed. The Range header provided was ` + `"${normalizedRangeHeader}"`;
|
|
},
|
|
'no-range-header': () => {
|
|
return `No Range header was found in the Request provided.`;
|
|
},
|
|
'range-not-satisfiable': ({
|
|
size,
|
|
start,
|
|
end
|
|
}) => {
|
|
return `The start (${start}) and end (${end}) values in the Range are ` + `not satisfiable by the cached response, which is ${size} bytes.`;
|
|
},
|
|
'attempt-to-cache-non-get-request': ({
|
|
url,
|
|
method
|
|
}) => {
|
|
return `Unable to cache '${url}' because it is a '${method}' request and ` + `only 'GET' requests can be cached.`;
|
|
},
|
|
'cache-put-with-no-response': ({
|
|
url
|
|
}) => {
|
|
return `There was an attempt to cache '${url}' but the response was not ` + `defined.`;
|
|
},
|
|
'no-response': ({
|
|
url,
|
|
error
|
|
}) => {
|
|
let message = `The strategy could not generate a response for '${url}'.`;
|
|
|
|
if (error) {
|
|
message += ` The underlying error is ${error}.`;
|
|
}
|
|
|
|
return message;
|
|
},
|
|
'bad-precaching-response': ({
|
|
url,
|
|
status
|
|
}) => {
|
|
return `The precaching request for '${url}' failed` + (status ? ` with an HTTP status of ${status}.` : `.`);
|
|
},
|
|
'non-precached-url': ({
|
|
url
|
|
}) => {
|
|
return `createHandlerBoundToURL('${url}') was called, but that URL is ` + `not precached. Please pass in a URL that is precached instead.`;
|
|
},
|
|
'add-to-cache-list-conflicting-integrities': ({
|
|
url
|
|
}) => {
|
|
return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${url} with different integrity values. Please remove one of them.`;
|
|
},
|
|
'missing-precache-entry': ({
|
|
cacheName,
|
|
url
|
|
}) => {
|
|
return `Unable to find a precached response in ${cacheName} for ${url}.`;
|
|
},
|
|
'cross-origin-copy-response': ({
|
|
origin
|
|
}) => {
|
|
return `workbox-core.copyResponse() can only be used with same-origin ` + `responses. It was passed a response with origin ${origin}.`;
|
|
},
|
|
'opaque-streams-source': ({
|
|
type
|
|
}) => {
|
|
const message = `One of the workbox-streams sources resulted in an ` + `'${type}' response.`;
|
|
|
|
if (type === 'opaqueredirect') {
|
|
return `${message} Please do not use a navigation request that results ` + `in a redirect as a source.`;
|
|
}
|
|
|
|
return `${message} Please ensure your sources are CORS-enabled.`;
|
|
}
|
|
};
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
const generatorFunction = (code, details = {}) => {
|
|
const message = messages[code];
|
|
|
|
if (!message) {
|
|
throw new Error(`Unable to find message for code '${code}'.`);
|
|
}
|
|
|
|
return message(details);
|
|
};
|
|
|
|
const messageGenerator = generatorFunction;
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Workbox errors should be thrown with this class.
|
|
* This allows use to ensure the type easily in tests,
|
|
* helps developers identify errors from workbox
|
|
* easily and allows use to optimise error
|
|
* messages correctly.
|
|
*
|
|
* @private
|
|
*/
|
|
|
|
class WorkboxError extends Error {
|
|
/**
|
|
*
|
|
* @param {string} errorCode The error code that
|
|
* identifies this particular error.
|
|
* @param {Object=} details Any relevant arguments
|
|
* that will help developers identify issues should
|
|
* be added as a key on the context object.
|
|
*/
|
|
constructor(errorCode, details) {
|
|
const message = messageGenerator(errorCode, details);
|
|
super(message);
|
|
this.name = errorCode;
|
|
this.details = details;
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/*
|
|
* This method throws if the supplied value is not an array.
|
|
* The destructed values are required to produce a meaningful error for users.
|
|
* The destructed and restructured object is so it's clear what is
|
|
* needed.
|
|
*/
|
|
|
|
const isArray = (value, details) => {
|
|
if (!Array.isArray(value)) {
|
|
throw new WorkboxError('not-an-array', details);
|
|
}
|
|
};
|
|
|
|
const hasMethod = (object, expectedMethod, details) => {
|
|
const type = typeof object[expectedMethod];
|
|
|
|
if (type !== 'function') {
|
|
details['expectedMethod'] = expectedMethod;
|
|
throw new WorkboxError('missing-a-method', details);
|
|
}
|
|
};
|
|
|
|
const isType = (object, expectedType, details) => {
|
|
if (typeof object !== expectedType) {
|
|
details['expectedType'] = expectedType;
|
|
throw new WorkboxError('incorrect-type', details);
|
|
}
|
|
};
|
|
|
|
const isInstance = (object, // Need the general type to do the check later.
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
expectedClass, details) => {
|
|
if (!(object instanceof expectedClass)) {
|
|
details['expectedClassName'] = expectedClass.name;
|
|
throw new WorkboxError('incorrect-class', details);
|
|
}
|
|
};
|
|
|
|
const isOneOf = (value, validValues, details) => {
|
|
if (!validValues.includes(value)) {
|
|
details['validValueDescription'] = `Valid values are ${JSON.stringify(validValues)}.`;
|
|
throw new WorkboxError('invalid-value', details);
|
|
}
|
|
};
|
|
|
|
const isArrayOfClass = (value, // Need general type to do check later.
|
|
expectedClass, // eslint-disable-line
|
|
details) => {
|
|
const error = new WorkboxError('not-array-of-class', details);
|
|
|
|
if (!Array.isArray(value)) {
|
|
throw error;
|
|
}
|
|
|
|
for (const item of value) {
|
|
if (!(item instanceof expectedClass)) {
|
|
throw error;
|
|
}
|
|
}
|
|
};
|
|
|
|
const finalAssertExports = {
|
|
hasMethod,
|
|
isArray,
|
|
isInstance,
|
|
isOneOf,
|
|
isType,
|
|
isArrayOfClass
|
|
};
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
// Can't change Function type right now.
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
const quotaErrorCallbacks = new Set();
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Adds a function to the set of quotaErrorCallbacks that will be executed if
|
|
* there's a quota error.
|
|
*
|
|
* @param {Function} callback
|
|
* @memberof workbox-core
|
|
*/
|
|
// Can't change Function type
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
function registerQuotaErrorCallback(callback) {
|
|
{
|
|
finalAssertExports.isType(callback, 'function', {
|
|
moduleName: 'workbox-core',
|
|
funcName: 'register',
|
|
paramName: 'callback'
|
|
});
|
|
}
|
|
|
|
quotaErrorCallbacks.add(callback);
|
|
|
|
{
|
|
logger.log('Registered a callback to respond to quota errors.', callback);
|
|
}
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
const _cacheNameDetails = {
|
|
googleAnalytics: 'googleAnalytics',
|
|
precache: 'precache-v2',
|
|
prefix: 'workbox',
|
|
runtime: 'runtime',
|
|
suffix: typeof registration !== 'undefined' ? registration.scope : ''
|
|
};
|
|
|
|
const _createCacheName = cacheName => {
|
|
return [_cacheNameDetails.prefix, cacheName, _cacheNameDetails.suffix].filter(value => value && value.length > 0).join('-');
|
|
};
|
|
|
|
const eachCacheNameDetail = fn => {
|
|
for (const key of Object.keys(_cacheNameDetails)) {
|
|
fn(key);
|
|
}
|
|
};
|
|
|
|
const cacheNames$1 = {
|
|
updateDetails: details => {
|
|
eachCacheNameDetail(key => {
|
|
if (typeof details[key] === 'string') {
|
|
_cacheNameDetails[key] = details[key];
|
|
}
|
|
});
|
|
},
|
|
getGoogleAnalyticsName: userCacheName => {
|
|
return userCacheName || _createCacheName(_cacheNameDetails.googleAnalytics);
|
|
},
|
|
getPrecacheName: userCacheName => {
|
|
return userCacheName || _createCacheName(_cacheNameDetails.precache);
|
|
},
|
|
getPrefix: () => {
|
|
return _cacheNameDetails.prefix;
|
|
},
|
|
getRuntimeName: userCacheName => {
|
|
return userCacheName || _createCacheName(_cacheNameDetails.runtime);
|
|
},
|
|
getSuffix: () => {
|
|
return _cacheNameDetails.suffix;
|
|
}
|
|
};
|
|
|
|
/*
|
|
Copyright 2020 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.
|
|
*/
|
|
|
|
function stripParams(fullURL, ignoreParams) {
|
|
const strippedURL = new URL(fullURL);
|
|
|
|
for (const param of ignoreParams) {
|
|
strippedURL.searchParams.delete(param);
|
|
}
|
|
|
|
return strippedURL.href;
|
|
}
|
|
/**
|
|
* Matches an item in the cache, ignoring specific URL params. This is similar
|
|
* to the `ignoreSearch` option, but it allows you to ignore just specific
|
|
* params (while continuing to match on the others).
|
|
*
|
|
* @private
|
|
* @param {Cache} cache
|
|
* @param {Request} request
|
|
* @param {Object} matchOptions
|
|
* @param {Array<string>} ignoreParams
|
|
* @return {Promise<Response|undefined>}
|
|
*/
|
|
|
|
|
|
async function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) {
|
|
const strippedRequestURL = stripParams(request.url, ignoreParams); // If the request doesn't include any ignored params, match as normal.
|
|
|
|
if (request.url === strippedRequestURL) {
|
|
return cache.match(request, matchOptions);
|
|
} // Otherwise, match by comparing keys
|
|
|
|
|
|
const keysOptions = Object.assign(Object.assign({}, matchOptions), {
|
|
ignoreSearch: true
|
|
});
|
|
const cacheKeys = await cache.keys(request, keysOptions);
|
|
|
|
for (const cacheKey of cacheKeys) {
|
|
const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams);
|
|
|
|
if (strippedRequestURL === strippedCacheKeyURL) {
|
|
return cache.match(cacheKey, matchOptions);
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
let supportStatus$1;
|
|
/**
|
|
* A utility function that determines whether the current browser supports
|
|
* constructing a [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream)
|
|
* object.
|
|
*
|
|
* @return {boolean} `true`, if the current browser can successfully
|
|
* construct a `ReadableStream`, `false` otherwise.
|
|
*
|
|
* @private
|
|
*/
|
|
|
|
function canConstructReadableStream() {
|
|
if (supportStatus$1 === undefined) {
|
|
// See https://github.com/GoogleChrome/workbox/issues/1473
|
|
try {
|
|
new ReadableStream({
|
|
start() {}
|
|
|
|
});
|
|
supportStatus$1 = true;
|
|
} catch (error) {
|
|
supportStatus$1 = false;
|
|
}
|
|
}
|
|
|
|
return supportStatus$1;
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
let supportStatus;
|
|
/**
|
|
* A utility function that determines whether the current browser supports
|
|
* constructing a new `Response` from a `response.body` stream.
|
|
*
|
|
* @return {boolean} `true`, if the current browser can successfully
|
|
* construct a `Response` from a `response.body` stream, `false` otherwise.
|
|
*
|
|
* @private
|
|
*/
|
|
|
|
function canConstructResponseFromBodyStream() {
|
|
if (supportStatus === undefined) {
|
|
const testResponse = new Response('');
|
|
|
|
if ('body' in testResponse) {
|
|
try {
|
|
new Response(testResponse.body);
|
|
supportStatus = true;
|
|
} catch (error) {
|
|
supportStatus = false;
|
|
}
|
|
}
|
|
|
|
supportStatus = false;
|
|
}
|
|
|
|
return supportStatus;
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* A helper function that prevents a promise from being flagged as unused.
|
|
*
|
|
* @private
|
|
**/
|
|
|
|
function dontWaitFor(promise) {
|
|
// Effective no-op.
|
|
void promise.then(() => {});
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* The Deferred class composes Promises in a way that allows for them to be
|
|
* resolved or rejected from outside the constructor. In most cases promises
|
|
* should be used directly, but Deferreds can be necessary when the logic to
|
|
* resolve a promise must be separate.
|
|
*
|
|
* @private
|
|
*/
|
|
|
|
class Deferred {
|
|
/**
|
|
* Creates a promise and exposes its resolve and reject functions as methods.
|
|
*/
|
|
constructor() {
|
|
this.promise = new Promise((resolve, reject) => {
|
|
this.resolve = resolve;
|
|
this.reject = reject;
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Runs all of the callback functions, one at a time sequentially, in the order
|
|
* in which they were registered.
|
|
*
|
|
* @memberof workbox-core
|
|
* @private
|
|
*/
|
|
|
|
async function executeQuotaErrorCallbacks() {
|
|
{
|
|
logger.log(`About to run ${quotaErrorCallbacks.size} ` + `callbacks to clean up caches.`);
|
|
}
|
|
|
|
for (const callback of quotaErrorCallbacks) {
|
|
await callback();
|
|
|
|
{
|
|
logger.log(callback, 'is complete.');
|
|
}
|
|
}
|
|
|
|
{
|
|
logger.log('Finished running callbacks.');
|
|
}
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
const getFriendlyURL = url => {
|
|
const urlObj = new URL(String(url), location.href); // See https://github.com/GoogleChrome/workbox/issues/2323
|
|
// We want to include everything, except for the origin if it's same-origin.
|
|
|
|
return urlObj.href.replace(new RegExp(`^${location.origin}`), '');
|
|
};
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Returns a promise that resolves and the passed number of milliseconds.
|
|
* This utility is an async/await-friendly version of `setTimeout`.
|
|
*
|
|
* @param {number} ms
|
|
* @return {Promise}
|
|
* @private
|
|
*/
|
|
|
|
function timeout(ms) {
|
|
return new Promise(resolve => setTimeout(resolve, ms));
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
const MAX_RETRY_TIME = 2000;
|
|
/**
|
|
* Returns a promise that resolves to a window client matching the passed
|
|
* `resultingClientId`. For browsers that don't support `resultingClientId`
|
|
* or if waiting for the resulting client to apper takes too long, resolve to
|
|
* `undefined`.
|
|
*
|
|
* @param {string} [resultingClientId]
|
|
* @return {Promise<Client|undefined>}
|
|
* @private
|
|
*/
|
|
|
|
async function resultingClientExists(resultingClientId) {
|
|
if (!resultingClientId) {
|
|
return;
|
|
}
|
|
|
|
let existingWindows = await self.clients.matchAll({
|
|
type: 'window'
|
|
});
|
|
const existingWindowIds = new Set(existingWindows.map(w => w.id));
|
|
let resultingWindow;
|
|
const startTime = performance.now(); // Only wait up to `MAX_RETRY_TIME` to find a matching client.
|
|
|
|
while (performance.now() - startTime < MAX_RETRY_TIME) {
|
|
existingWindows = await self.clients.matchAll({
|
|
type: 'window'
|
|
});
|
|
resultingWindow = existingWindows.find(w => {
|
|
if (resultingClientId) {
|
|
// If we have a `resultingClientId`, we can match on that.
|
|
return w.id === resultingClientId;
|
|
} else {
|
|
// Otherwise match on finding a window not in `existingWindowIds`.
|
|
return !existingWindowIds.has(w.id);
|
|
}
|
|
});
|
|
|
|
if (resultingWindow) {
|
|
break;
|
|
} // Sleep for 100ms and retry.
|
|
|
|
|
|
await timeout(100);
|
|
}
|
|
|
|
return resultingWindow;
|
|
}
|
|
|
|
/*
|
|
Copyright 2020 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.
|
|
*/
|
|
/**
|
|
* A utility method that makes it easier to use `event.waitUntil` with
|
|
* async functions and return the result.
|
|
*
|
|
* @param {ExtendableEvent} event
|
|
* @param {Function} asyncFn
|
|
* @return {Function}
|
|
* @private
|
|
*/
|
|
|
|
function waitUntil(event, asyncFn) {
|
|
const returnPromise = asyncFn();
|
|
event.waitUntil(returnPromise);
|
|
return returnPromise;
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
var _private = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
assert: finalAssertExports,
|
|
cacheMatchIgnoreParams: cacheMatchIgnoreParams,
|
|
cacheNames: cacheNames$1,
|
|
canConstructReadableStream: canConstructReadableStream,
|
|
canConstructResponseFromBodyStream: canConstructResponseFromBodyStream,
|
|
dontWaitFor: dontWaitFor,
|
|
Deferred: Deferred,
|
|
executeQuotaErrorCallbacks: executeQuotaErrorCallbacks,
|
|
getFriendlyURL: getFriendlyURL,
|
|
logger: logger,
|
|
resultingClientExists: resultingClientExists,
|
|
timeout: timeout,
|
|
waitUntil: waitUntil,
|
|
WorkboxError: WorkboxError
|
|
});
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Get the current cache names and prefix/suffix used by Workbox.
|
|
*
|
|
* `cacheNames.precache` is used for precached assets,
|
|
* `cacheNames.googleAnalytics` is used by `workbox-google-analytics` to
|
|
* store `analytics.js`, and `cacheNames.runtime` is used for everything else.
|
|
*
|
|
* `cacheNames.prefix` can be used to retrieve just the current prefix value.
|
|
* `cacheNames.suffix` can be used to retrieve just the current suffix value.
|
|
*
|
|
* @return {Object} An object with `precache`, `runtime`, `prefix`, and
|
|
* `googleAnalytics` properties.
|
|
*
|
|
* @memberof workbox-core
|
|
*/
|
|
|
|
const cacheNames = {
|
|
get googleAnalytics() {
|
|
return cacheNames$1.getGoogleAnalyticsName();
|
|
},
|
|
|
|
get precache() {
|
|
return cacheNames$1.getPrecacheName();
|
|
},
|
|
|
|
get prefix() {
|
|
return cacheNames$1.getPrefix();
|
|
},
|
|
|
|
get runtime() {
|
|
return cacheNames$1.getRuntimeName();
|
|
},
|
|
|
|
get suffix() {
|
|
return cacheNames$1.getSuffix();
|
|
}
|
|
|
|
};
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Allows developers to copy a response and modify its `headers`, `status`,
|
|
* or `statusText` values (the values settable via a
|
|
* [`ResponseInit`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#Syntax}
|
|
* object in the constructor).
|
|
* To modify these values, pass a function as the second argument. That
|
|
* function will be invoked with a single object with the response properties
|
|
* `{headers, status, statusText}`. The return value of this function will
|
|
* be used as the `ResponseInit` for the new `Response`. To change the values
|
|
* either modify the passed parameter(s) and return it, or return a totally
|
|
* new object.
|
|
*
|
|
* This method is intentionally limited to same-origin responses, regardless of
|
|
* whether CORS was used or not.
|
|
*
|
|
* @param {Response} response
|
|
* @param {Function} modifier
|
|
* @memberof workbox-core
|
|
*/
|
|
|
|
async function copyResponse(response, modifier) {
|
|
let origin = null; // If response.url isn't set, assume it's cross-origin and keep origin null.
|
|
|
|
if (response.url) {
|
|
const responseURL = new URL(response.url);
|
|
origin = responseURL.origin;
|
|
}
|
|
|
|
if (origin !== self.location.origin) {
|
|
throw new WorkboxError('cross-origin-copy-response', {
|
|
origin
|
|
});
|
|
}
|
|
|
|
const clonedResponse = response.clone(); // Create a fresh `ResponseInit` object by cloning the headers.
|
|
|
|
const responseInit = {
|
|
headers: new Headers(clonedResponse.headers),
|
|
status: clonedResponse.status,
|
|
statusText: clonedResponse.statusText
|
|
}; // Apply any user modifications.
|
|
|
|
const modifiedResponseInit = modifier ? modifier(responseInit) : responseInit; // Create the new response from the body stream and `ResponseInit`
|
|
// modifications. Note: not all browsers support the Response.body stream,
|
|
// so fall back to reading the entire body into memory as a blob.
|
|
|
|
const body = canConstructResponseFromBodyStream() ? clonedResponse.body : await clonedResponse.blob();
|
|
return new Response(body, modifiedResponseInit);
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Claim any currently available clients once the service worker
|
|
* becomes active. This is normally used in conjunction with `skipWaiting()`.
|
|
*
|
|
* @memberof workbox-core
|
|
*/
|
|
|
|
function clientsClaim() {
|
|
self.addEventListener('activate', () => self.clients.claim());
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* Modifies the default cache names used by the Workbox packages.
|
|
* Cache names are generated as `<prefix>-<Cache Name>-<suffix>`.
|
|
*
|
|
* @param {Object} details
|
|
* @param {Object} [details.prefix] The string to add to the beginning of
|
|
* the precache and runtime cache names.
|
|
* @param {Object} [details.suffix] The string to add to the end of
|
|
* the precache and runtime cache names.
|
|
* @param {Object} [details.precache] The cache name to use for precache
|
|
* caching.
|
|
* @param {Object} [details.runtime] The cache name to use for runtime caching.
|
|
* @param {Object} [details.googleAnalytics] The cache name to use for
|
|
* `workbox-google-analytics` caching.
|
|
*
|
|
* @memberof workbox-core
|
|
*/
|
|
|
|
function setCacheNameDetails(details) {
|
|
{
|
|
Object.keys(details).forEach(key => {
|
|
finalAssertExports.isType(details[key], 'string', {
|
|
moduleName: 'workbox-core',
|
|
funcName: 'setCacheNameDetails',
|
|
paramName: `details.${key}`
|
|
});
|
|
});
|
|
|
|
if ('precache' in details && details['precache'].length === 0) {
|
|
throw new WorkboxError('invalid-cache-name', {
|
|
cacheNameId: 'precache',
|
|
value: details['precache']
|
|
});
|
|
}
|
|
|
|
if ('runtime' in details && details['runtime'].length === 0) {
|
|
throw new WorkboxError('invalid-cache-name', {
|
|
cacheNameId: 'runtime',
|
|
value: details['runtime']
|
|
});
|
|
}
|
|
|
|
if ('googleAnalytics' in details && details['googleAnalytics'].length === 0) {
|
|
throw new WorkboxError('invalid-cache-name', {
|
|
cacheNameId: 'googleAnalytics',
|
|
value: details['googleAnalytics']
|
|
});
|
|
}
|
|
}
|
|
|
|
cacheNames$1.updateDetails(details);
|
|
}
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
/**
|
|
* This method is deprecated, and will be removed in Workbox v7.
|
|
*
|
|
* Calling self.skipWaiting() is equivalent, and should be used instead.
|
|
*
|
|
* @memberof workbox-core
|
|
*/
|
|
|
|
function skipWaiting() {
|
|
// Just call self.skipWaiting() directly.
|
|
// See https://github.com/GoogleChrome/workbox/issues/2525
|
|
{
|
|
logger.warn(`skipWaiting() from workbox-core is no longer recommended ` + `and will be removed in Workbox v7. Using self.skipWaiting() instead ` + `is equivalent.`);
|
|
}
|
|
|
|
void self.skipWaiting();
|
|
}
|
|
|
|
exports._private = _private;
|
|
exports.cacheNames = cacheNames;
|
|
exports.clientsClaim = clientsClaim;
|
|
exports.copyResponse = copyResponse;
|
|
exports.registerQuotaErrorCallback = registerQuotaErrorCallback;
|
|
exports.setCacheNameDetails = setCacheNameDetails;
|
|
exports.skipWaiting = skipWaiting;
|
|
|
|
return exports;
|
|
|
|
}({}));
|
|
//# sourceMappingURL=workbox-core.dev.js.map
|