2020-05-13 13:57:21 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2020 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.
|
|
|
|
*/
|
2022-06-22 13:25:44 +00:00
|
|
|
import {Protocol} from 'devtools-protocol';
|
|
|
|
import {ProtocolMapping} from 'devtools-protocol/types/protocol-mapping.js';
|
2022-08-17 12:39:41 +00:00
|
|
|
import {assert} from '../util/assert.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {ProtocolError} from './Errors.js';
|
|
|
|
import {EventEmitter} from './EventEmitter.js';
|
2022-08-17 15:45:45 +00:00
|
|
|
import {Frame} from './Frame.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {debugError, isString} from './util.js';
|
|
|
|
import {HTTPResponse} from './HTTPResponse.js';
|
2020-05-13 13:57:21 +00:00
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface ContinueRequestOverrides {
|
|
|
|
/**
|
|
|
|
* If set, the request URL will change. This is not a redirect.
|
|
|
|
*/
|
|
|
|
url?: string;
|
|
|
|
method?: string;
|
|
|
|
postData?: string;
|
|
|
|
headers?: Record<string, string>;
|
|
|
|
}
|
|
|
|
|
2021-12-07 07:48:42 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface InterceptResolutionState {
|
|
|
|
action: InterceptResolutionAction;
|
|
|
|
priority?: number;
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Required response data to fulfill a request with.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface ResponseForRequest {
|
|
|
|
status: number;
|
2021-03-25 11:26:35 +00:00
|
|
|
/**
|
|
|
|
* Optional response headers. All values are converted to strings.
|
|
|
|
*/
|
|
|
|
headers: Record<string, unknown>;
|
2020-07-03 13:28:45 +00:00
|
|
|
contentType: string;
|
|
|
|
body: string | Buffer;
|
|
|
|
}
|
|
|
|
|
2021-02-17 09:14:38 +00:00
|
|
|
/**
|
|
|
|
* Resource types for HTTPRequests as perceived by the rendering engine.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export type ResourceType = Lowercase<Protocol.Network.ResourceType>;
|
|
|
|
|
2021-12-07 07:48:42 +00:00
|
|
|
/**
|
|
|
|
* The default cooperative request interception resolution priority
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export const DEFAULT_INTERCEPT_RESOLUTION_PRIORITY = 0;
|
|
|
|
|
2021-11-23 07:19:14 +00:00
|
|
|
interface CDPSession extends EventEmitter {
|
|
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
|
|
|
method: T,
|
|
|
|
...paramArgs: ProtocolMapping.Commands[T]['paramsType']
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Represents an HTTP request sent by a page.
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* Whenever the page sends a request, such as for a network resource, the
|
|
|
|
* following events are emitted by Puppeteer's `page`:
|
|
|
|
*
|
2022-08-12 12:15:26 +00:00
|
|
|
* - `request`: emitted when the request is issued by the page.
|
2020-07-03 13:28:45 +00:00
|
|
|
* - `requestfinished` - emitted when the response body is downloaded and the
|
|
|
|
* request is complete.
|
|
|
|
*
|
|
|
|
* If request fails at some point, then instead of `requestfinished` event the
|
|
|
|
* `requestfailed` event is emitted.
|
|
|
|
*
|
|
|
|
* All of these events provide an instance of `HTTPRequest` representing the
|
|
|
|
* request that occurred:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* page.on('request', request => ...)
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* NOTE: HTTP Error responses, such as 404 or 503, are still successful
|
|
|
|
* responses from HTTP standpoint, so request will complete with
|
|
|
|
* `requestfinished` event.
|
|
|
|
*
|
|
|
|
* If request gets a 'redirect' response, the request is successfully finished
|
|
|
|
* with the `requestfinished` event, and a new request is issued to a
|
|
|
|
* redirected url.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
2020-05-29 08:38:40 +00:00
|
|
|
export class HTTPRequest {
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
_requestId: string;
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-05-23 15:41:11 +00:00
|
|
|
_interceptionId: string | undefined;
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-05-23 15:41:11 +00:00
|
|
|
_failureText: string | null = null;
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-29 10:49:30 +00:00
|
|
|
_response: HTTPResponse | null = null;
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
_fromMemoryCache = false;
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-29 08:38:40 +00:00
|
|
|
_redirectChain: HTTPRequest[];
|
2020-05-13 13:57:21 +00:00
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#client: CDPSession;
|
|
|
|
#isNavigationRequest: boolean;
|
|
|
|
#allowInterception: boolean;
|
|
|
|
#interceptionHandled = false;
|
|
|
|
#url: string;
|
|
|
|
#resourceType: ResourceType;
|
|
|
|
|
|
|
|
#method: string;
|
|
|
|
#postData?: string;
|
|
|
|
#headers: Record<string, string> = {};
|
|
|
|
#frame: Frame | null;
|
|
|
|
#continueRequestOverrides: ContinueRequestOverrides;
|
|
|
|
#responseForRequest: Partial<ResponseForRequest> | null = null;
|
|
|
|
#abortErrorReason: Protocol.Network.ErrorReason | null = null;
|
|
|
|
#interceptResolutionState: InterceptResolutionState = {
|
2022-05-05 06:48:03 +00:00
|
|
|
action: InterceptResolutionAction.None,
|
|
|
|
};
|
2022-06-13 09:16:25 +00:00
|
|
|
#interceptHandlers: Array<() => void | PromiseLike<any>>;
|
|
|
|
#initiator: Protocol.Network.Initiator;
|
2020-05-13 13:57:21 +00:00
|
|
|
|
2022-06-23 11:20:42 +00:00
|
|
|
/**
|
|
|
|
* Warning! Using this client can break Puppeteer. Use with caution.
|
|
|
|
*
|
|
|
|
* @experimental
|
|
|
|
*/
|
|
|
|
get client(): CDPSession {
|
|
|
|
return this.#client;
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
2022-05-23 15:41:11 +00:00
|
|
|
frame: Frame | null,
|
|
|
|
interceptionId: string | undefined,
|
2020-05-13 13:57:21 +00:00
|
|
|
allowInterception: boolean,
|
2020-07-10 10:51:52 +00:00
|
|
|
event: Protocol.Network.RequestWillBeSentEvent,
|
2020-05-29 08:38:40 +00:00
|
|
|
redirectChain: HTTPRequest[]
|
2020-05-13 13:57:21 +00:00
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#client = client;
|
2020-05-13 13:57:21 +00:00
|
|
|
this._requestId = event.requestId;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#isNavigationRequest =
|
2020-05-13 13:57:21 +00:00
|
|
|
event.requestId === event.loaderId && event.type === 'Document';
|
|
|
|
this._interceptionId = interceptionId;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#allowInterception = allowInterception;
|
|
|
|
this.#url = event.request.url;
|
|
|
|
this.#resourceType = (event.type || 'other').toLowerCase() as ResourceType;
|
|
|
|
this.#method = event.request.method;
|
|
|
|
this.#postData = event.request.postData;
|
|
|
|
this.#frame = frame;
|
2020-05-13 13:57:21 +00:00
|
|
|
this._redirectChain = redirectChain;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#continueRequestOverrides = {};
|
|
|
|
this.#interceptHandlers = [];
|
|
|
|
this.#initiator = event.initiator;
|
2020-05-13 13:57:21 +00:00
|
|
|
|
2022-06-14 11:55:35 +00:00
|
|
|
for (const [key, value] of Object.entries(event.request.headers)) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#headers[key.toLowerCase()] = value;
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @returns the URL of the request
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
url(): string {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#url;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2021-07-02 17:58:32 +00:00
|
|
|
/**
|
|
|
|
* @returns the `ContinueRequestOverrides` that will be used
|
|
|
|
* if the interception is allowed to continue (ie, `abort()` and
|
|
|
|
* `respond()` aren't called).
|
|
|
|
*/
|
|
|
|
continueRequestOverrides(): ContinueRequestOverrides {
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
return this.#continueRequestOverrides;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns The `ResponseForRequest` that gets used if the
|
|
|
|
* interception is allowed to respond (ie, `abort()` is not called).
|
|
|
|
*/
|
2022-05-05 06:48:03 +00:00
|
|
|
responseForRequest(): Partial<ResponseForRequest> | null {
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
return this.#responseForRequest;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns the most recent reason for aborting the request
|
|
|
|
*/
|
2022-05-05 06:48:03 +00:00
|
|
|
abortErrorReason(): Protocol.Network.ErrorReason | null {
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
return this.#abortErrorReason;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-12-07 07:48:42 +00:00
|
|
|
* @returns An InterceptResolutionState object describing the current resolution
|
2022-08-12 12:15:26 +00:00
|
|
|
* action and priority.
|
2021-12-07 07:48:42 +00:00
|
|
|
*
|
2022-08-12 12:15:26 +00:00
|
|
|
* InterceptResolutionState contains:
|
|
|
|
* action: InterceptResolutionAction
|
|
|
|
* priority?: number
|
2021-12-07 07:48:42 +00:00
|
|
|
*
|
2022-08-12 12:15:26 +00:00
|
|
|
* InterceptResolutionAction is one of: `abort`, `respond`, `continue`,
|
|
|
|
* `disabled`, `none`, or `already-handled`.
|
2021-12-07 07:48:42 +00:00
|
|
|
*/
|
|
|
|
interceptResolutionState(): InterceptResolutionState {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!this.#allowInterception) {
|
2022-06-22 13:25:44 +00:00
|
|
|
return {action: InterceptResolutionAction.Disabled};
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
|
|
|
if (this.#interceptionHandled) {
|
2022-06-22 13:25:44 +00:00
|
|
|
return {action: InterceptResolutionAction.AlreadyHandled};
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-22 13:25:44 +00:00
|
|
|
return {...this.#interceptResolutionState};
|
2021-12-07 07:48:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns `true` if the intercept resolution has already been handled,
|
|
|
|
* `false` otherwise.
|
2021-07-02 17:58:32 +00:00
|
|
|
*/
|
2021-12-07 07:48:42 +00:00
|
|
|
isInterceptResolutionHandled(): boolean {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#interceptionHandled;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an async request handler to the processing queue.
|
|
|
|
* Deferred handlers are not guaranteed to execute in any particular order,
|
2022-03-28 06:00:10 +00:00
|
|
|
* but they are guaranteed to resolve before the request interception
|
2021-07-02 17:58:32 +00:00
|
|
|
* is finalized.
|
|
|
|
*/
|
|
|
|
enqueueInterceptAction(
|
|
|
|
pendingHandler: () => void | PromiseLike<unknown>
|
|
|
|
): void {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptHandlers.push(pendingHandler);
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Awaits pending interception handlers and then decides how to fulfill
|
|
|
|
* the request interception.
|
|
|
|
*/
|
|
|
|
async finalizeInterceptions(): Promise<void> {
|
2022-06-15 10:42:21 +00:00
|
|
|
await this.#interceptHandlers.reduce((promiseChain, interceptAction) => {
|
|
|
|
return promiseChain.then(interceptAction);
|
|
|
|
}, Promise.resolve());
|
2022-06-22 13:25:44 +00:00
|
|
|
const {action} = this.interceptResolutionState();
|
2021-12-07 07:48:42 +00:00
|
|
|
switch (action) {
|
2021-07-02 17:58:32 +00:00
|
|
|
case 'abort':
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#abort(this.#abortErrorReason);
|
2021-07-02 17:58:32 +00:00
|
|
|
case 'respond':
|
2022-06-13 09:16:25 +00:00
|
|
|
if (this.#responseForRequest === null) {
|
2022-05-05 06:48:03 +00:00
|
|
|
throw new Error('Response is missing for the interception');
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#respond(this.#responseForRequest);
|
2021-07-02 17:58:32 +00:00
|
|
|
case 'continue':
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#continue(this.#continueRequestOverrides);
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Contains the request's resource type as it was perceived by the rendering
|
|
|
|
* engine.
|
2021-02-17 09:14:38 +00:00
|
|
|
*/
|
|
|
|
resourceType(): ResourceType {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#resourceType;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @returns the method used (`GET`, `POST`, etc.)
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
method(): string {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#method;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @returns the request's post body, if any.
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
postData(): string | undefined {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#postData;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @returns an object with HTTP headers associated with the request. All
|
|
|
|
* header names are lower-case.
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
headers(): Record<string, string> {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#headers;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
2021-05-26 14:37:38 +00:00
|
|
|
* @returns A matching `HTTPResponse` object, or null if the response has not
|
|
|
|
* been received yet.
|
2020-07-03 13:28:45 +00:00
|
|
|
*/
|
2020-05-29 10:49:30 +00:00
|
|
|
response(): HTTPResponse | null {
|
2020-05-13 13:57:21 +00:00
|
|
|
return this._response;
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
2021-05-26 14:37:38 +00:00
|
|
|
* @returns the frame that initiated the request, or null if navigating to
|
|
|
|
* error pages.
|
2020-07-03 13:28:45 +00:00
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
frame(): Frame | null {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#frame;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @returns true if the request is the driver of the current frame's navigation.
|
|
|
|
*/
|
2020-05-13 13:57:21 +00:00
|
|
|
isNavigationRequest(): boolean {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#isNavigationRequest;
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 15:14:21 +00:00
|
|
|
/**
|
|
|
|
* @returns the initiator of the request.
|
|
|
|
*/
|
|
|
|
initiator(): Protocol.Network.Initiator {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#initiator;
|
2021-09-29 15:14:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
2021-05-26 14:37:38 +00:00
|
|
|
* A `redirectChain` is a chain of requests initiated to fetch a resource.
|
2020-07-03 13:28:45 +00:00
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* `redirectChain` is shared between all the requests of the same chain.
|
|
|
|
*
|
|
|
|
* For example, if the website `http://example.com` has a single redirect to
|
|
|
|
* `https://example.com`, then the chain will contain one request:
|
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-07-03 13:28:45 +00:00
|
|
|
* const response = await page.goto('http://example.com');
|
|
|
|
* const chain = response.request().redirectChain();
|
|
|
|
* console.log(chain.length); // 1
|
|
|
|
* console.log(chain[0].url()); // 'http://example.com'
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* If the website `https://google.com` has no redirects, then the chain will be empty:
|
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-07-03 13:28:45 +00:00
|
|
|
* const response = await page.goto('https://google.com');
|
|
|
|
* const chain = response.request().redirectChain();
|
|
|
|
* console.log(chain.length); // 0
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @returns the chain of requests - if a server responds with at least a
|
|
|
|
* single redirect, this chain will contain all requests that were redirected.
|
|
|
|
*/
|
2020-05-29 08:38:40 +00:00
|
|
|
redirectChain(): HTTPRequest[] {
|
2020-05-13 13:57:21 +00:00
|
|
|
return this._redirectChain.slice();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-07-03 13:28:45 +00:00
|
|
|
* Access information about the request's failure.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
*
|
|
|
|
* Example of logging all failed requests:
|
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-07-03 13:28:45 +00:00
|
|
|
* page.on('requestfailed', request => {
|
|
|
|
* console.log(request.url() + ' ' + request.failure().errorText);
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @returns `null` unless the request failed. If the request fails this can
|
|
|
|
* return an object with `errorText` containing a human-readable error
|
2022-03-28 06:00:10 +00:00
|
|
|
* message, e.g. `net::ERR_FAILED`. It is not guaranteed that there will be
|
2020-07-03 13:28:45 +00:00
|
|
|
* failure text if the request fails.
|
2020-05-13 13:57:21 +00:00
|
|
|
*/
|
2022-06-22 13:25:44 +00:00
|
|
|
failure(): {errorText: string} | null {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!this._failureText) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
return {
|
|
|
|
errorText: this._failureText,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Continues request with optional request overrides.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* To use this, request
|
|
|
|
* interception should be enabled with {@link Page.setRequestInterception}.
|
|
|
|
*
|
|
|
|
* Exception is immediately thrown if the request interception is not enabled.
|
|
|
|
*
|
|
|
|
* @example
|
2022-08-12 12:15:26 +00:00
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-07-03 13:28:45 +00:00
|
|
|
* await page.setRequestInterception(true);
|
|
|
|
* page.on('request', request => {
|
|
|
|
* // Override headers
|
|
|
|
* const headers = Object.assign({}, request.headers(), {
|
|
|
|
* foo: 'bar', // set "foo" header
|
|
|
|
* origin: undefined, // remove "origin" header
|
|
|
|
* });
|
|
|
|
* request.continue({headers});
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @param overrides - optional overrides to apply to the request.
|
2021-07-02 17:58:32 +00:00
|
|
|
* @param priority - If provided, intercept is resolved using
|
|
|
|
* cooperative handling rules. Otherwise, intercept is resolved
|
|
|
|
* immediately.
|
2020-07-03 13:28:45 +00:00
|
|
|
*/
|
2021-07-02 17:58:32 +00:00
|
|
|
async continue(
|
|
|
|
overrides: ContinueRequestOverrides = {},
|
|
|
|
priority?: number
|
|
|
|
): Promise<void> {
|
2020-05-13 13:57:21 +00:00
|
|
|
// Request interception is not supported for data: urls.
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this.#url.startsWith('data:')) {
|
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this.#interceptionHandled, 'Request is already handled!');
|
2021-07-02 17:58:32 +00:00
|
|
|
if (priority === undefined) {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#continue(overrides);
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#continueRequestOverrides = overrides;
|
2021-07-02 17:58:32 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.priority === undefined ||
|
|
|
|
priority > this.#interceptResolutionState.priority
|
2021-07-02 17:58:32 +00:00
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState = {
|
2021-12-09 14:57:40 +00:00
|
|
|
action: InterceptResolutionAction.Continue,
|
|
|
|
priority,
|
|
|
|
};
|
2021-07-02 17:58:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
if (priority === this.#interceptResolutionState.priority) {
|
2021-07-02 17:58:32 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.action === 'abort' ||
|
|
|
|
this.#interceptResolutionState.action === 'respond'
|
2021-07-02 17:58:32 +00:00
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.action =
|
2021-12-09 14:57:40 +00:00
|
|
|
InterceptResolutionAction.Continue;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
async #continue(overrides: ContinueRequestOverrides = {}): Promise<void> {
|
2022-06-22 13:25:44 +00:00
|
|
|
const {url, method, postData, headers} = overrides;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptionHandled = true;
|
2020-09-09 19:23:46 +00:00
|
|
|
|
|
|
|
const postDataBinaryBase64 = postData
|
|
|
|
? Buffer.from(postData).toString('base64')
|
|
|
|
: undefined;
|
|
|
|
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this._interceptionId === undefined) {
|
2022-05-23 15:41:11 +00:00
|
|
|
throw new Error(
|
|
|
|
'HTTPRequest is missing _interceptionId needed for Fetch.continueRequest'
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
await this.#client
|
2020-05-13 13:57:21 +00:00
|
|
|
.send('Fetch.continueRequest', {
|
|
|
|
requestId: this._interceptionId,
|
|
|
|
url,
|
|
|
|
method,
|
2020-09-09 19:23:46 +00:00
|
|
|
postData: postDataBinaryBase64,
|
2020-05-13 13:57:21 +00:00
|
|
|
headers: headers ? headersArray(headers) : undefined,
|
|
|
|
})
|
2022-06-22 13:25:44 +00:00
|
|
|
.catch(error => {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptionHandled = false;
|
2021-10-27 11:43:57 +00:00
|
|
|
return handleError(error);
|
|
|
|
});
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Fulfills a request with the given response.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* To use this, request
|
|
|
|
* interception should be enabled with {@link Page.setRequestInterception}.
|
|
|
|
*
|
|
|
|
* Exception is immediately thrown if the request interception is not enabled.
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* An example of fulfilling all requests with 404 responses:
|
2022-08-12 12:15:26 +00:00
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-07-03 13:28:45 +00:00
|
|
|
* await page.setRequestInterception(true);
|
|
|
|
* page.on('request', request => {
|
|
|
|
* request.respond({
|
|
|
|
* status: 404,
|
|
|
|
* contentType: 'text/plain',
|
2022-08-12 12:15:26 +00:00
|
|
|
* body: 'Not Found!',
|
2020-07-03 13:28:45 +00:00
|
|
|
* });
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* NOTE: Mocking responses for dataURL requests is not supported.
|
|
|
|
* Calling `request.respond` for a dataURL request is a noop.
|
|
|
|
*
|
|
|
|
* @param response - the response to fulfill the request with.
|
2021-07-02 17:58:32 +00:00
|
|
|
* @param priority - If provided, intercept is resolved using
|
|
|
|
* cooperative handling rules. Otherwise, intercept is resolved
|
|
|
|
* immediately.
|
2020-07-03 13:28:45 +00:00
|
|
|
*/
|
2021-07-02 17:58:32 +00:00
|
|
|
async respond(
|
|
|
|
response: Partial<ResponseForRequest>,
|
|
|
|
priority?: number
|
|
|
|
): Promise<void> {
|
2020-05-13 13:57:21 +00:00
|
|
|
// Mocking responses for dataURL requests is not currently supported.
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this.#url.startsWith('data:')) {
|
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this.#interceptionHandled, 'Request is already handled!');
|
2021-07-02 17:58:32 +00:00
|
|
|
if (priority === undefined) {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#respond(response);
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#responseForRequest = response;
|
2021-07-02 17:58:32 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.priority === undefined ||
|
|
|
|
priority > this.#interceptResolutionState.priority
|
2021-07-02 17:58:32 +00:00
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState = {
|
2021-12-09 14:57:40 +00:00
|
|
|
action: InterceptResolutionAction.Respond,
|
|
|
|
priority,
|
|
|
|
};
|
2021-07-02 17:58:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
if (priority === this.#interceptResolutionState.priority) {
|
|
|
|
if (this.#interceptResolutionState.action === 'abort') {
|
2021-07-02 17:58:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.action = InterceptResolutionAction.Respond;
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
async #respond(response: Partial<ResponseForRequest>): Promise<void> {
|
|
|
|
this.#interceptionHandled = true;
|
2020-05-13 13:57:21 +00:00
|
|
|
|
|
|
|
const responseBody: Buffer | null =
|
2022-06-14 11:16:21 +00:00
|
|
|
response.body && isString(response.body)
|
2020-05-13 13:57:21 +00:00
|
|
|
? Buffer.from(response.body)
|
|
|
|
: (response.body as Buffer) || null;
|
|
|
|
|
2022-04-05 09:06:35 +00:00
|
|
|
const responseHeaders: Record<string, string | string[]> = {};
|
2020-05-13 13:57:21 +00:00
|
|
|
if (response.headers) {
|
2022-04-05 09:06:35 +00:00
|
|
|
for (const header of Object.keys(response.headers)) {
|
|
|
|
const value = response.headers[header];
|
|
|
|
|
|
|
|
responseHeaders[header.toLowerCase()] = Array.isArray(value)
|
2022-06-22 13:25:44 +00:00
|
|
|
? value.map(item => {
|
2022-06-15 10:42:21 +00:00
|
|
|
return String(item);
|
|
|
|
})
|
2022-04-05 09:06:35 +00:00
|
|
|
: String(value);
|
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
2022-06-14 11:55:35 +00:00
|
|
|
if (response.contentType) {
|
2020-05-13 13:57:21 +00:00
|
|
|
responseHeaders['content-type'] = response.contentType;
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
|
|
|
if (responseBody && !('content-length' in responseHeaders)) {
|
2020-05-13 13:57:21 +00:00
|
|
|
responseHeaders['content-length'] = String(
|
|
|
|
Buffer.byteLength(responseBody)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
|
2022-05-05 06:48:03 +00:00
|
|
|
const status = response.status || 200;
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this._interceptionId === undefined) {
|
2022-05-23 15:41:11 +00:00
|
|
|
throw new Error(
|
|
|
|
'HTTPRequest is missing _interceptionId needed for Fetch.fulfillRequest'
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
await this.#client
|
2020-05-13 13:57:21 +00:00
|
|
|
.send('Fetch.fulfillRequest', {
|
|
|
|
requestId: this._interceptionId,
|
2022-05-05 06:48:03 +00:00
|
|
|
responseCode: status,
|
|
|
|
responsePhrase: STATUS_TEXTS[status],
|
2020-05-13 13:57:21 +00:00
|
|
|
responseHeaders: headersArray(responseHeaders),
|
|
|
|
body: responseBody ? responseBody.toString('base64') : undefined,
|
|
|
|
})
|
2022-06-22 13:25:44 +00:00
|
|
|
.catch(error => {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptionHandled = false;
|
2021-10-27 11:43:57 +00:00
|
|
|
return handleError(error);
|
|
|
|
});
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* Aborts a request.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
* To use this, request interception should be enabled with
|
|
|
|
* {@link Page.setRequestInterception}. If it is not enabled, this method will
|
|
|
|
* throw an exception immediately.
|
|
|
|
*
|
|
|
|
* @param errorCode - optional error code to provide.
|
2021-07-02 17:58:32 +00:00
|
|
|
* @param priority - If provided, intercept is resolved using
|
|
|
|
* cooperative handling rules. Otherwise, intercept is resolved
|
|
|
|
* immediately.
|
2020-07-03 13:28:45 +00:00
|
|
|
*/
|
2021-07-02 17:58:32 +00:00
|
|
|
async abort(
|
|
|
|
errorCode: ErrorCode = 'failed',
|
|
|
|
priority?: number
|
|
|
|
): Promise<void> {
|
2020-05-13 13:57:21 +00:00
|
|
|
// Request interception is not supported for data: urls.
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this.#url.startsWith('data:')) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
const errorReason = errorReasons[errorCode];
|
|
|
|
assert(errorReason, 'Unknown error code: ' + errorCode);
|
2022-06-13 09:16:25 +00:00
|
|
|
assert(this.#allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this.#interceptionHandled, 'Request is already handled!');
|
2021-07-02 17:58:32 +00:00
|
|
|
if (priority === undefined) {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#abort(errorReason);
|
2021-07-02 17:58:32 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#abortErrorReason = errorReason;
|
2021-07-02 17:58:32 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState.priority === undefined ||
|
|
|
|
priority >= this.#interceptResolutionState.priority
|
2021-07-02 17:58:32 +00:00
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptResolutionState = {
|
2021-12-09 14:57:40 +00:00
|
|
|
action: InterceptResolutionAction.Abort,
|
|
|
|
priority,
|
|
|
|
};
|
2021-07-02 17:58:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
async #abort(
|
2022-05-05 06:48:03 +00:00
|
|
|
errorReason: Protocol.Network.ErrorReason | null
|
2021-07-02 17:58:32 +00:00
|
|
|
): Promise<void> {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#interceptionHandled = true;
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this._interceptionId === undefined) {
|
2022-05-23 15:41:11 +00:00
|
|
|
throw new Error(
|
|
|
|
'HTTPRequest is missing _interceptionId needed for Fetch.failRequest'
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
await this.#client
|
2020-05-13 13:57:21 +00:00
|
|
|
.send('Fetch.failRequest', {
|
|
|
|
requestId: this._interceptionId,
|
2022-05-05 06:48:03 +00:00
|
|
|
errorReason: errorReason || 'Failed',
|
2020-05-13 13:57:21 +00:00
|
|
|
})
|
2021-10-04 06:18:03 +00:00
|
|
|
.catch(handleError);
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-02 17:58:32 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2021-12-09 14:57:40 +00:00
|
|
|
export enum InterceptResolutionAction {
|
|
|
|
Abort = 'abort',
|
|
|
|
Respond = 'respond',
|
|
|
|
Continue = 'continue',
|
|
|
|
Disabled = 'disabled',
|
|
|
|
None = 'none',
|
|
|
|
AlreadyHandled = 'already-handled',
|
|
|
|
}
|
2021-07-02 17:58:32 +00:00
|
|
|
|
2021-12-07 07:48:42 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*
|
2021-12-09 14:57:40 +00:00
|
|
|
* @deprecated please use {@link InterceptResolutionAction} instead.
|
2021-12-07 07:48:42 +00:00
|
|
|
*/
|
|
|
|
export type InterceptResolutionStrategy = InterceptResolutionAction;
|
|
|
|
|
2020-07-03 13:28:45 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export type ErrorCode =
|
2020-05-13 13:57:21 +00:00
|
|
|
| 'aborted'
|
|
|
|
| 'accessdenied'
|
|
|
|
| 'addressunreachable'
|
|
|
|
| 'blockedbyclient'
|
|
|
|
| 'blockedbyresponse'
|
|
|
|
| 'connectionaborted'
|
|
|
|
| 'connectionclosed'
|
|
|
|
| 'connectionfailed'
|
|
|
|
| 'connectionrefused'
|
|
|
|
| 'connectionreset'
|
|
|
|
| 'internetdisconnected'
|
|
|
|
| 'namenotresolved'
|
|
|
|
| 'timedout'
|
|
|
|
| 'failed';
|
|
|
|
|
|
|
|
const errorReasons: Record<ErrorCode, Protocol.Network.ErrorReason> = {
|
|
|
|
aborted: 'Aborted',
|
|
|
|
accessdenied: 'AccessDenied',
|
|
|
|
addressunreachable: 'AddressUnreachable',
|
|
|
|
blockedbyclient: 'BlockedByClient',
|
|
|
|
blockedbyresponse: 'BlockedByResponse',
|
|
|
|
connectionaborted: 'ConnectionAborted',
|
|
|
|
connectionclosed: 'ConnectionClosed',
|
|
|
|
connectionfailed: 'ConnectionFailed',
|
|
|
|
connectionrefused: 'ConnectionRefused',
|
|
|
|
connectionreset: 'ConnectionReset',
|
|
|
|
internetdisconnected: 'InternetDisconnected',
|
|
|
|
namenotresolved: 'NameNotResolved',
|
|
|
|
timedout: 'TimedOut',
|
|
|
|
failed: 'Failed',
|
|
|
|
} as const;
|
|
|
|
|
2021-07-19 09:39:40 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2021-07-02 17:58:32 +00:00
|
|
|
export type ActionResult = 'continue' | 'abort' | 'respond';
|
|
|
|
|
2020-05-13 13:57:21 +00:00
|
|
|
function headersArray(
|
2022-04-05 09:06:35 +00:00
|
|
|
headers: Record<string, string | string[]>
|
2022-06-22 13:25:44 +00:00
|
|
|
): Array<{name: string; value: string}> {
|
2020-05-13 13:57:21 +00:00
|
|
|
const result = [];
|
|
|
|
for (const name in headers) {
|
2022-04-05 09:06:35 +00:00
|
|
|
const value = headers[name];
|
|
|
|
|
|
|
|
if (!Object.is(value, undefined)) {
|
|
|
|
const values = Array.isArray(value) ? value : [value];
|
|
|
|
|
2022-06-15 10:42:21 +00:00
|
|
|
result.push(
|
2022-06-22 13:25:44 +00:00
|
|
|
...values.map(value => {
|
|
|
|
return {name, value: value + ''};
|
2022-06-15 10:42:21 +00:00
|
|
|
})
|
|
|
|
);
|
2022-04-05 09:06:35 +00:00
|
|
|
}
|
2020-05-13 13:57:21 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-10-04 06:18:03 +00:00
|
|
|
async function handleError(error: ProtocolError) {
|
|
|
|
if (['Invalid header'].includes(error.originalMessage)) {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
// In certain cases, protocol will return error if the request was
|
|
|
|
// already canceled or the page was closed. We should tolerate these
|
|
|
|
// errors.
|
|
|
|
debugError(error);
|
|
|
|
}
|
|
|
|
|
2020-06-19 14:39:03 +00:00
|
|
|
// List taken from
|
|
|
|
// https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
|
|
|
|
// with extra 306 and 418 codes.
|
2022-06-22 13:25:44 +00:00
|
|
|
const STATUS_TEXTS: {[key: string]: string | undefined} = {
|
2020-05-13 13:57:21 +00:00
|
|
|
'100': 'Continue',
|
|
|
|
'101': 'Switching Protocols',
|
|
|
|
'102': 'Processing',
|
|
|
|
'103': 'Early Hints',
|
|
|
|
'200': 'OK',
|
|
|
|
'201': 'Created',
|
|
|
|
'202': 'Accepted',
|
|
|
|
'203': 'Non-Authoritative Information',
|
|
|
|
'204': 'No Content',
|
|
|
|
'205': 'Reset Content',
|
|
|
|
'206': 'Partial Content',
|
|
|
|
'207': 'Multi-Status',
|
|
|
|
'208': 'Already Reported',
|
|
|
|
'226': 'IM Used',
|
|
|
|
'300': 'Multiple Choices',
|
|
|
|
'301': 'Moved Permanently',
|
|
|
|
'302': 'Found',
|
|
|
|
'303': 'See Other',
|
|
|
|
'304': 'Not Modified',
|
|
|
|
'305': 'Use Proxy',
|
|
|
|
'306': 'Switch Proxy',
|
|
|
|
'307': 'Temporary Redirect',
|
|
|
|
'308': 'Permanent Redirect',
|
|
|
|
'400': 'Bad Request',
|
|
|
|
'401': 'Unauthorized',
|
|
|
|
'402': 'Payment Required',
|
|
|
|
'403': 'Forbidden',
|
|
|
|
'404': 'Not Found',
|
|
|
|
'405': 'Method Not Allowed',
|
|
|
|
'406': 'Not Acceptable',
|
|
|
|
'407': 'Proxy Authentication Required',
|
|
|
|
'408': 'Request Timeout',
|
|
|
|
'409': 'Conflict',
|
|
|
|
'410': 'Gone',
|
|
|
|
'411': 'Length Required',
|
|
|
|
'412': 'Precondition Failed',
|
|
|
|
'413': 'Payload Too Large',
|
|
|
|
'414': 'URI Too Long',
|
|
|
|
'415': 'Unsupported Media Type',
|
|
|
|
'416': 'Range Not Satisfiable',
|
|
|
|
'417': 'Expectation Failed',
|
|
|
|
'418': "I'm a teapot",
|
|
|
|
'421': 'Misdirected Request',
|
|
|
|
'422': 'Unprocessable Entity',
|
|
|
|
'423': 'Locked',
|
|
|
|
'424': 'Failed Dependency',
|
|
|
|
'425': 'Too Early',
|
|
|
|
'426': 'Upgrade Required',
|
|
|
|
'428': 'Precondition Required',
|
|
|
|
'429': 'Too Many Requests',
|
|
|
|
'431': 'Request Header Fields Too Large',
|
|
|
|
'451': 'Unavailable For Legal Reasons',
|
|
|
|
'500': 'Internal Server Error',
|
|
|
|
'501': 'Not Implemented',
|
|
|
|
'502': 'Bad Gateway',
|
|
|
|
'503': 'Service Unavailable',
|
|
|
|
'504': 'Gateway Timeout',
|
|
|
|
'505': 'HTTP Version Not Supported',
|
|
|
|
'506': 'Variant Also Negotiates',
|
|
|
|
'507': 'Insufficient Storage',
|
|
|
|
'508': 'Loop Detected',
|
|
|
|
'510': 'Not Extended',
|
|
|
|
'511': 'Network Authentication Required',
|
|
|
|
} as const;
|