|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- /*
- Copyright 2017 Google Inc. All Rights Reserved.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
-
- import {assert} from 'workbox-core/_private/assert.mjs';
- import {logger} from 'workbox-core/_private/logger.mjs';
- import {WorkboxError} from 'workbox-core/_private/WorkboxError.mjs';
- import {getFriendlyURL} from 'workbox-core/_private/getFriendlyURL.mjs';
-
- import normalizeHandler from './utils/normalizeHandler.mjs';
- import './_version.mjs';
-
- /**
- * The Router can be used to process a FetchEvent through one or more
- * [Routes]{@link workbox.routing.Route} responding with a Request if
- * a matching route exists.
- *
- * If no route matches a given a request, the Router will use a "default"
- * handler if one is defined.
- *
- * Should the matching Route throw an error, the Router will use a "catch"
- * handler if one is defined to gracefully deal with issues and respond with a
- * Request.
- *
- * If a request matches multiple routes, the **earliest** registered route will
- * be used to respond to the request.
- *
- * @memberof workbox.routing
- */
- class Router {
- /**
- * Initializes a new Router.
- */
- constructor() {
- // _routes will contain a mapping of HTTP method name ('GET', etc.) to an
- // array of all the corresponding Route instances that are registered.
- this._routes = new Map();
- }
-
- /**
- * Apply the routing rules to a FetchEvent object to get a Response from an
- * appropriate Route's handler.
- *
- * @param {FetchEvent} event The event from a service worker's 'fetch' event
- * listener.
- * @return {Promise<Response>|undefined} A promise is returned if a
- * registered route can handle the FetchEvent's request. If there is no
- * matching route and there's no `defaultHandler`, `undefined` is returned.
- */
- handleRequest(event) {
- if (process.env.NODE_ENV !== 'production') {
- assert.isInstance(event, FetchEvent, {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'handleRequest',
- paramName: 'event',
- });
- }
-
- const url = new URL(event.request.url);
- if (!url.protocol.startsWith('http')) {
- if (process.env.NODE_ENV !== 'production') {
- logger.debug(
- `Workbox Router only supports URLs that start with 'http'.`);
- }
- return;
- }
-
- let route = null;
- let handler = null;
- let params = null;
- let debugMessages = [];
-
- const result = this._findHandlerAndParams(event, url);
- handler = result.handler;
- params = result.params;
- route = result.route;
- if (process.env.NODE_ENV !== 'production') {
- if (handler) {
- debugMessages.push([
- `Found a route to handle this request:`, route,
- ]);
-
- if (params) {
- debugMessages.push([
- `Passing the following params to the route's handler:`, params,
- ]);
- }
- }
- }
-
- // If we don't have a handler because there was no matching route, then
- // fall back to defaultHandler if that's defined.
- if (!handler && this._defaultHandler) {
- if (process.env.NODE_ENV !== 'production') {
- debugMessages.push(`Failed to find a matching route. Falling ` +
- `back to the default handler.`);
-
- // This is used for debugging in logs in the case of an error.
- route = '[Default Handler]';
- }
- handler = this._defaultHandler;
- }
-
- if (!handler) {
- if (process.env.NODE_ENV !== 'production') {
- // No handler so Workbox will do nothing. If logs is set of debug
- // i.e. verbose, we should print out this information.
- logger.debug(`No route found for: ${getFriendlyURL(url)}`);
- }
- return;
- }
-
- if (process.env.NODE_ENV !== 'production') {
- // We have a handler, meaning Workbox is going to handle the route.
- // print the routing details to the console.
- logger.groupCollapsed(`Router is responding to: ${getFriendlyURL(url)}`);
- debugMessages.forEach((msg) => {
- if (Array.isArray(msg)) {
- logger.log(...msg);
- } else {
- logger.log(msg);
- }
- });
-
- // The Request and Response objects contains a great deal of information,
- // hide it under a group in case developers want to see it.
- logger.groupCollapsed(`View request details here.`);
- logger.unprefixed.log(event.request);
- logger.groupEnd();
-
- logger.groupEnd();
- }
-
- // Wrap in try and catch in case the handle method throws a synchronous
- // error. It should still callback to the catch handler.
- let responsePromise;
- try {
- responsePromise = handler.handle({url, event, params});
- } catch (err) {
- responsePromise = Promise.reject(err);
- }
-
- if (responsePromise && this._catchHandler) {
- responsePromise = responsePromise.catch((err) => {
- if (process.env.NODE_ENV !== 'production') {
- // Still include URL here as it will be async from the console group
- // and may not make sense without the URL
- logger.groupCollapsed(`Error thrown when responding to: ` +
- ` ${getFriendlyURL(url)}. Falling back to Catch Handler.`);
- logger.unprefixed.error(`Error thrown by:`, route);
- logger.unprefixed.error(err);
- logger.groupEnd();
- }
- return this._catchHandler.handle({url, event, err});
- });
- }
-
- return responsePromise;
- }
-
- /**
- * Checks the incoming `event.request` against the registered routes, and if
- * there's a match, returns the corresponding handler along with any params
- * generated by the match.
- *
- * @param {FetchEvent} event
- * @param {URL} url
- * @return {Object} Returns an object with `handler` and `params` properties.
- * They are populated if a matching route was found or `undefined` otherwise.
- *
- * @private
- */
- _findHandlerAndParams(event, url) {
- const routes = this._routes.get(event.request.method) || [];
- for (const route of routes) {
- let matchResult = route.match({url, event});
- if (matchResult) {
- if (Array.isArray(matchResult) && matchResult.length === 0) {
- // Instead of passing an empty array in as params, use undefined.
- matchResult = undefined;
- } else if ((matchResult.constructor === Object &&
- Object.keys(matchResult).length === 0) || matchResult === true) {
- // Instead of passing an empty object in as params, use undefined.
- matchResult = undefined;
- }
-
- // Break out of the loop and return the appropriate values as soon as
- // we have a match.
- return {
- route,
- params: matchResult,
- handler: route.handler,
- };
- }
- }
-
- // If we didn't have a match, then return undefined values.
- return {handler: undefined, params: undefined};
- }
-
- /**
- * Define a default `handler` that's called when no routes explicitly
- * match the incoming request.
- *
- * Without a default handler, unmatched requests will go against the
- * network as if there were no service worker present.
- *
- * @param {workbox.routing.Route~handlerCallback} handler A callback
- * function that returns a Promise resulting in a Response.
- */
- setDefaultHandler(handler) {
- this._defaultHandler = normalizeHandler(handler);
- }
-
- /**
- * If a Route throws an error while handling a request, this `handler`
- * will be called and given a chance to provide a response.
- *
- * @param {workbox.routing.Route~handlerCallback} handler A callback
- * function that returns a Promise resulting in a Response.
- */
- setCatchHandler(handler) {
- this._catchHandler = normalizeHandler(handler);
- }
-
- /**
- * Registers a route with the router.
- *
- * @param {workbox.routing.Route} route The route to register.
- */
- registerRoute(route) {
- if (process.env.NODE_ENV !== 'production') {
- assert.isType(route, 'object', {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'registerRoute',
- paramName: 'route',
- });
-
- assert.hasMethod(route, 'match', {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'registerRoute',
- paramName: 'route',
- });
-
- assert.isType(route.handler, 'object', {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'registerRoute',
- paramName: 'route',
- });
-
- assert.hasMethod(route.handler, 'handle', {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'registerRoute',
- paramName: 'route.handler',
- });
-
- assert.isType(route.method, 'string', {
- moduleName: 'workbox-routing',
- className: 'Router',
- funcName: 'registerRoute',
- paramName: 'route.method',
- });
- }
-
- if (!this._routes.has(route.method)) {
- this._routes.set(route.method, []);
- }
-
- // Give precedence to all of the earlier routes by adding this additional
- // route to the end of the array.
- this._routes.get(route.method).push(route);
- }
-
- /**
- * Unregisters a route with the router.
- *
- * @param {workbox.routing.Route} route The route to unregister.
- */
- unregisterRoute(route) {
- if (!this._routes.has(route.method)) {
- throw new WorkboxError(
- 'unregister-route-but-not-found-with-method', {
- method: route.method,
- }
- );
- }
-
- const routeIndex = this._routes.get(route.method).indexOf(route);
- if (routeIndex > -1) {
- this._routes.get(route.method).splice(routeIndex, 1);
- } else {
- throw new WorkboxError('unregister-route-route-not-registered');
- }
- }
- }
-
- export {Router};
|