2017-06-29 06:09:28 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2021-11-23 07:19:14 +00:00
|
|
|
|
2023-09-13 13:47:55 +00:00
|
|
|
import type {Protocol} from 'devtools-protocol';
|
2023-02-15 23:09:31 +00:00
|
|
|
|
2023-09-19 16:13:51 +00:00
|
|
|
import {CDPSessionEvent, type CDPSession} from '../api/CDPSession.js';
|
2023-09-13 13:47:55 +00:00
|
|
|
import type {Frame} from '../api/Frame.js';
|
2023-09-15 11:00:20 +00:00
|
|
|
import {
|
|
|
|
EventEmitter,
|
|
|
|
EventSubscription,
|
|
|
|
type EventType,
|
2023-09-16 20:56:40 +00:00
|
|
|
} from '../common/EventEmitter.js';
|
|
|
|
import {debugError, isString} from '../common/util.js';
|
|
|
|
import {assert} from '../util/assert.js';
|
2023-09-19 16:13:51 +00:00
|
|
|
import {DisposableStack} from '../util/disposable.js';
|
2023-09-16 20:56:40 +00:00
|
|
|
|
2023-09-13 19:57:26 +00:00
|
|
|
import {CdpHTTPRequest} from './HTTPRequest.js';
|
|
|
|
import {CdpHTTPResponse} from './HTTPResponse.js';
|
2023-09-15 11:00:20 +00:00
|
|
|
import {
|
|
|
|
NetworkEventManager,
|
2023-09-19 16:13:51 +00:00
|
|
|
type FetchRequestId,
|
2023-09-15 11:00:20 +00:00
|
|
|
} from './NetworkEventManager.js';
|
2020-04-30 10:15:27 +00:00
|
|
|
|
2020-07-02 15:13:22 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2020-05-05 12:53:22 +00:00
|
|
|
export interface Credentials {
|
2020-04-30 10:15:27 +00:00
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
}
|
|
|
|
|
2021-01-21 09:00:57 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface NetworkConditions {
|
|
|
|
// Download speed (bytes/s)
|
|
|
|
download: number;
|
|
|
|
// Upload speed (bytes/s)
|
|
|
|
upload: number;
|
|
|
|
// Latency (ms)
|
|
|
|
latency: number;
|
|
|
|
}
|
2023-09-16 20:56:40 +00:00
|
|
|
|
2021-04-06 08:58:01 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2021-01-21 09:00:57 +00:00
|
|
|
export interface InternalNetworkConditions extends NetworkConditions {
|
|
|
|
offline: boolean;
|
|
|
|
}
|
|
|
|
|
2020-07-07 15:43:55 +00:00
|
|
|
/**
|
|
|
|
* We use symbols to prevent any external parties listening to these events.
|
|
|
|
* They are internal to Puppeteer.
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
2023-09-13 13:47:55 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
|
|
export namespace NetworkManagerEvent {
|
|
|
|
export const Request = Symbol('NetworkManager.Request');
|
|
|
|
export const RequestServedFromCache = Symbol(
|
|
|
|
'NetworkManager.RequestServedFromCache'
|
|
|
|
);
|
|
|
|
export const Response = Symbol('NetworkManager.Response');
|
|
|
|
export const RequestFailed = Symbol('NetworkManager.RequestFailed');
|
|
|
|
export const RequestFinished = Symbol('NetworkManager.RequestFinished');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2023-09-16 22:00:39 +00:00
|
|
|
export interface CdpNetworkManagerEvents extends Record<EventType, unknown> {
|
2023-09-13 19:57:26 +00:00
|
|
|
[NetworkManagerEvent.Request]: CdpHTTPRequest;
|
|
|
|
[NetworkManagerEvent.RequestServedFromCache]: CdpHTTPRequest | undefined;
|
|
|
|
[NetworkManagerEvent.Response]: CdpHTTPResponse;
|
|
|
|
[NetworkManagerEvent.RequestFailed]: CdpHTTPRequest;
|
|
|
|
[NetworkManagerEvent.RequestFinished]: CdpHTTPRequest;
|
2023-09-13 13:47:55 +00:00
|
|
|
}
|
2020-07-07 15:43:55 +00:00
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2023-09-05 08:41:21 +00:00
|
|
|
export interface FrameProvider {
|
2023-08-29 16:12:04 +00:00
|
|
|
frame(id: string): Frame | null;
|
|
|
|
}
|
|
|
|
|
2020-07-02 15:13:22 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2023-09-16 22:00:39 +00:00
|
|
|
export class NetworkManager extends EventEmitter<CdpNetworkManagerEvents> {
|
2022-06-13 09:16:25 +00:00
|
|
|
#ignoreHTTPSErrors: boolean;
|
2023-08-29 16:12:04 +00:00
|
|
|
#frameManager: FrameProvider;
|
2022-06-13 09:16:25 +00:00
|
|
|
#networkEventManager = new NetworkEventManager();
|
2023-08-29 16:12:04 +00:00
|
|
|
#extraHTTPHeaders?: Record<string, string>;
|
2022-06-13 09:16:25 +00:00
|
|
|
#credentials?: Credentials;
|
|
|
|
#attemptedAuthentications = new Set<string>();
|
|
|
|
#userRequestInterceptionEnabled = false;
|
|
|
|
#protocolRequestInterceptionEnabled = false;
|
2023-08-29 16:12:04 +00:00
|
|
|
#userCacheDisabled?: boolean;
|
|
|
|
#emulatedNetworkConditions?: InternalNetworkConditions;
|
|
|
|
#userAgent?: string;
|
|
|
|
#userAgentMetadata?: Protocol.Emulation.UserAgentMetadata;
|
|
|
|
|
2023-09-13 13:47:55 +00:00
|
|
|
#handlers = Object.freeze([
|
2023-08-29 16:12:04 +00:00
|
|
|
['Fetch.requestPaused', this.#onRequestPaused],
|
|
|
|
['Fetch.authRequired', this.#onAuthRequired],
|
|
|
|
['Network.requestWillBeSent', this.#onRequestWillBeSent],
|
|
|
|
['Network.requestServedFromCache', this.#onRequestServedFromCache],
|
|
|
|
['Network.responseReceived', this.#onResponseReceived],
|
|
|
|
['Network.loadingFinished', this.#onLoadingFinished],
|
|
|
|
['Network.loadingFailed', this.#onLoadingFailed],
|
|
|
|
['Network.responseReceivedExtraInfo', this.#onResponseReceivedExtraInfo],
|
2023-09-13 13:47:55 +00:00
|
|
|
[CDPSessionEvent.Disconnected, this.#removeClient],
|
|
|
|
] as const);
|
2023-08-28 06:20:57 +00:00
|
|
|
|
2023-09-13 13:47:55 +00:00
|
|
|
#clients = new Map<CDPSession, DisposableStack>();
|
2023-08-29 16:12:04 +00:00
|
|
|
|
|
|
|
constructor(ignoreHTTPSErrors: boolean, frameManager: FrameProvider) {
|
2017-06-29 06:09:28 +00:00
|
|
|
super();
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#ignoreHTTPSErrors = ignoreHTTPSErrors;
|
|
|
|
this.#frameManager = frameManager;
|
2023-08-28 06:20:57 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
async addClient(client: CDPSession): Promise<void> {
|
|
|
|
if (this.#clients.has(client)) {
|
|
|
|
return;
|
2023-08-28 06:20:57 +00:00
|
|
|
}
|
2023-09-13 13:47:55 +00:00
|
|
|
const subscriptions = new DisposableStack();
|
|
|
|
this.#clients.set(client, subscriptions);
|
2023-08-29 16:12:04 +00:00
|
|
|
for (const [event, handler] of this.#handlers) {
|
2023-09-13 13:47:55 +00:00
|
|
|
subscriptions.use(
|
|
|
|
// TODO: Remove any here.
|
|
|
|
new EventSubscription(client, event, (arg: any) => {
|
|
|
|
return handler.bind(this)(client, arg);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2023-08-29 16:12:04 +00:00
|
|
|
await Promise.all([
|
2022-07-29 10:42:25 +00:00
|
|
|
this.#ignoreHTTPSErrors
|
2023-08-29 16:12:04 +00:00
|
|
|
? client.send('Security.setIgnoreCertificateErrors', {
|
2022-07-29 10:42:25 +00:00
|
|
|
ignore: true,
|
|
|
|
})
|
|
|
|
: null,
|
2023-08-29 16:12:04 +00:00
|
|
|
client.send('Network.enable'),
|
|
|
|
this.#applyExtraHTTPHeaders(client),
|
|
|
|
this.#applyNetworkConditions(client),
|
|
|
|
this.#applyProtocolCacheDisabled(client),
|
|
|
|
this.#applyProtocolRequestInterception(client),
|
|
|
|
this.#applyUserAgent(client),
|
2022-07-29 10:42:25 +00:00
|
|
|
]);
|
2023-08-29 16:12:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async #removeClient(client: CDPSession) {
|
2023-09-13 13:47:55 +00:00
|
|
|
this.#clients.get(client)?.dispose();
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#clients.delete(client);
|
2019-04-10 04:42:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async authenticate(credentials?: Credentials): Promise<void> {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#credentials = credentials;
|
2023-08-29 16:12:04 +00:00
|
|
|
const enabled = this.#userRequestInterceptionEnabled || !!this.#credentials;
|
|
|
|
if (enabled === this.#protocolRequestInterceptionEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.#protocolRequestInterceptionEnabled = enabled;
|
|
|
|
await this.#applyToAllClients(
|
|
|
|
this.#applyProtocolRequestInterception.bind(this)
|
|
|
|
);
|
2017-09-11 23:32:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async setExtraHTTPHeaders(
|
|
|
|
extraHTTPHeaders: Record<string, string>
|
|
|
|
): Promise<void> {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#extraHTTPHeaders = {};
|
2017-09-15 02:08:48 +00:00
|
|
|
for (const key of Object.keys(extraHTTPHeaders)) {
|
|
|
|
const value = extraHTTPHeaders[key];
|
2020-05-07 10:54:55 +00:00
|
|
|
assert(
|
2022-06-14 11:16:21 +00:00
|
|
|
isString(value),
|
2020-05-07 10:54:55 +00:00
|
|
|
`Expected value of header "${key}" to be String, but "${typeof value}" is found.`
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#extraHTTPHeaders[key.toLowerCase()] = value;
|
2017-09-15 02:08:48 +00:00
|
|
|
}
|
2023-08-29 16:12:04 +00:00
|
|
|
|
|
|
|
await this.#applyToAllClients(this.#applyExtraHTTPHeaders.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
async #applyExtraHTTPHeaders(client: CDPSession) {
|
|
|
|
if (this.#extraHTTPHeaders === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await client.send('Network.setExtraHTTPHeaders', {
|
2022-06-13 09:16:25 +00:00
|
|
|
headers: this.#extraHTTPHeaders,
|
2020-05-07 10:54:55 +00:00
|
|
|
});
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
extraHTTPHeaders(): Record<string, string> {
|
2022-06-13 09:16:25 +00:00
|
|
|
return Object.assign({}, this.#extraHTTPHeaders);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2023-05-30 11:07:55 +00:00
|
|
|
inFlightRequestsCount(): number {
|
|
|
|
return this.#networkEventManager.inFlightRequestsCount();
|
2021-09-11 20:28:12 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setOfflineMode(value: boolean): Promise<void> {
|
2023-08-29 16:12:04 +00:00
|
|
|
if (!this.#emulatedNetworkConditions) {
|
|
|
|
this.#emulatedNetworkConditions = {
|
|
|
|
offline: false,
|
|
|
|
upload: -1,
|
|
|
|
download: -1,
|
|
|
|
latency: 0,
|
|
|
|
};
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emulatedNetworkConditions.offline = value;
|
2023-08-29 16:12:04 +00:00
|
|
|
await this.#applyToAllClients(this.#applyNetworkConditions.bind(this));
|
2021-01-21 09:00:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async emulateNetworkConditions(
|
|
|
|
networkConditions: NetworkConditions | null
|
|
|
|
): Promise<void> {
|
2023-08-29 16:12:04 +00:00
|
|
|
if (!this.#emulatedNetworkConditions) {
|
|
|
|
this.#emulatedNetworkConditions = {
|
|
|
|
offline: false,
|
|
|
|
upload: -1,
|
|
|
|
download: -1,
|
|
|
|
latency: 0,
|
|
|
|
};
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emulatedNetworkConditions.upload = networkConditions
|
2021-01-21 09:00:57 +00:00
|
|
|
? networkConditions.upload
|
|
|
|
: -1;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emulatedNetworkConditions.download = networkConditions
|
2021-01-21 09:00:57 +00:00
|
|
|
? networkConditions.download
|
|
|
|
: -1;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emulatedNetworkConditions.latency = networkConditions
|
2021-01-21 09:00:57 +00:00
|
|
|
? networkConditions.latency
|
|
|
|
: 0;
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
await this.#applyToAllClients(this.#applyNetworkConditions.bind(this));
|
2021-01-21 09:00:57 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
async #applyToAllClients(fn: (client: CDPSession) => Promise<unknown>) {
|
|
|
|
await Promise.all(
|
|
|
|
Array.from(this.#clients.keys()).map(client => {
|
|
|
|
return fn(client);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
async #applyNetworkConditions(client: CDPSession): Promise<void> {
|
|
|
|
if (this.#emulatedNetworkConditions === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await client.send('Network.emulateNetworkConditions', {
|
2022-06-13 09:16:25 +00:00
|
|
|
offline: this.#emulatedNetworkConditions.offline,
|
|
|
|
latency: this.#emulatedNetworkConditions.latency,
|
|
|
|
uploadThroughput: this.#emulatedNetworkConditions.upload,
|
|
|
|
downloadThroughput: this.#emulatedNetworkConditions.download,
|
2017-10-13 21:41:39 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-06-29 16:29:55 +00:00
|
|
|
async setUserAgent(
|
|
|
|
userAgent: string,
|
|
|
|
userAgentMetadata?: Protocol.Emulation.UserAgentMetadata
|
|
|
|
): Promise<void> {
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#userAgent = userAgent;
|
|
|
|
this.#userAgentMetadata = userAgentMetadata;
|
|
|
|
await this.#applyToAllClients(this.#applyUserAgent.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
async #applyUserAgent(client: CDPSession) {
|
|
|
|
if (this.#userAgent === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await client.send('Network.setUserAgentOverride', {
|
|
|
|
userAgent: this.#userAgent,
|
|
|
|
userAgentMetadata: this.#userAgentMetadata,
|
2021-06-29 16:29:55 +00:00
|
|
|
});
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setCacheEnabled(enabled: boolean): Promise<void> {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#userCacheDisabled = !enabled;
|
2023-08-29 16:12:04 +00:00
|
|
|
await this.#applyToAllClients(this.#applyProtocolCacheDisabled.bind(this));
|
2019-04-10 04:42:42 +00:00
|
|
|
}
|
|
|
|
|
2021-05-20 12:09:56 +00:00
|
|
|
async setRequestInterception(value: boolean): Promise<void> {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#userRequestInterceptionEnabled = value;
|
|
|
|
const enabled = this.#userRequestInterceptionEnabled || !!this.#credentials;
|
2022-06-14 11:55:35 +00:00
|
|
|
if (enabled === this.#protocolRequestInterceptionEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#protocolRequestInterceptionEnabled = enabled;
|
2023-08-29 16:12:04 +00:00
|
|
|
await this.#applyToAllClients(
|
|
|
|
this.#applyProtocolRequestInterception.bind(this)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
async #applyProtocolRequestInterception(client: CDPSession): Promise<void> {
|
|
|
|
if (this.#userCacheDisabled === undefined) {
|
|
|
|
this.#userCacheDisabled = false;
|
|
|
|
}
|
|
|
|
if (this.#protocolRequestInterceptionEnabled) {
|
2019-04-11 19:02:06 +00:00
|
|
|
await Promise.all([
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#applyProtocolCacheDisabled(client),
|
|
|
|
client.send('Fetch.enable', {
|
2019-04-11 19:02:06 +00:00
|
|
|
handleAuthRequests: true,
|
2022-06-22 13:25:44 +00:00
|
|
|
patterns: [{urlPattern: '*'}],
|
2019-04-11 19:02:06 +00:00
|
|
|
}),
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
await Promise.all([
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#applyProtocolCacheDisabled(client),
|
|
|
|
client.send('Fetch.disable'),
|
2019-04-11 19:02:06 +00:00
|
|
|
]);
|
|
|
|
}
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
async #applyProtocolCacheDisabled(client: CDPSession): Promise<void> {
|
|
|
|
if (this.#userCacheDisabled === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await client.send('Network.setCacheDisabled', {
|
|
|
|
cacheDisabled: this.#userCacheDisabled,
|
2019-04-10 04:42:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
#onRequestWillBeSent(
|
|
|
|
client: CDPSession,
|
|
|
|
event: Protocol.Network.RequestWillBeSentEvent
|
|
|
|
): void {
|
2019-01-09 23:47:08 +00:00
|
|
|
// Request interception doesn't happen for data URLs with Network Service.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#userRequestInterceptionEnabled &&
|
2020-05-07 10:54:55 +00:00
|
|
|
!event.request.url.startsWith('data:')
|
|
|
|
) {
|
2022-06-22 13:25:44 +00:00
|
|
|
const {requestId: networkRequestId} = event;
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.storeRequestWillBeSent(networkRequestId, event);
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
/**
|
|
|
|
* CDP may have sent a Fetch.requestPaused event already. Check for it.
|
|
|
|
*/
|
|
|
|
const requestPausedEvent =
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.getRequestPaused(networkRequestId);
|
2021-05-06 06:36:34 +00:00
|
|
|
if (requestPausedEvent) {
|
2022-06-22 13:25:44 +00:00
|
|
|
const {requestId: fetchRequestId} = requestPausedEvent;
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#patchRequestEventHeaders(event, requestPausedEvent);
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#onRequest(client, event, fetchRequestId);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.forgetRequestPaused(networkRequestId);
|
2018-07-31 02:09:10 +00:00
|
|
|
}
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2018-07-31 02:09:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#onRequest(client, event, undefined);
|
2018-07-31 02:09:10 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
#onAuthRequired(
|
|
|
|
client: CDPSession,
|
|
|
|
event: Protocol.Fetch.AuthRequiredEvent
|
|
|
|
): void {
|
2023-03-21 09:22:57 +00:00
|
|
|
let response: Protocol.Fetch.AuthChallengeResponse['response'] = 'Default';
|
2022-06-13 09:16:25 +00:00
|
|
|
if (this.#attemptedAuthentications.has(event.requestId)) {
|
2019-04-11 19:02:06 +00:00
|
|
|
response = 'CancelAuth';
|
2022-06-13 09:16:25 +00:00
|
|
|
} else if (this.#credentials) {
|
2019-04-11 19:02:06 +00:00
|
|
|
response = 'ProvideCredentials';
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#attemptedAuthentications.add(event.requestId);
|
2017-09-11 23:32:13 +00:00
|
|
|
}
|
2022-06-22 13:25:44 +00:00
|
|
|
const {username, password} = this.#credentials || {
|
2020-05-07 10:54:55 +00:00
|
|
|
username: undefined,
|
|
|
|
password: undefined,
|
|
|
|
};
|
2023-08-29 16:12:04 +00:00
|
|
|
client
|
2020-05-07 10:54:55 +00:00
|
|
|
.send('Fetch.continueWithAuth', {
|
|
|
|
requestId: event.requestId,
|
2022-06-22 13:25:44 +00:00
|
|
|
authChallengeResponse: {response, username, password},
|
2020-05-07 10:54:55 +00:00
|
|
|
})
|
|
|
|
.catch(debugError);
|
2019-04-11 19:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
/**
|
|
|
|
* CDP may send a Fetch.requestPaused without or before a
|
|
|
|
* Network.requestWillBeSent
|
|
|
|
*
|
|
|
|
* CDP may send multiple Fetch.requestPaused
|
|
|
|
* for the same Network.requestWillBeSent.
|
|
|
|
*/
|
2023-08-29 16:12:04 +00:00
|
|
|
#onRequestPaused(
|
|
|
|
client: CDPSession,
|
|
|
|
event: Protocol.Fetch.RequestPausedEvent
|
|
|
|
): void {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (
|
2022-06-13 09:16:25 +00:00
|
|
|
!this.#userRequestInterceptionEnabled &&
|
|
|
|
this.#protocolRequestInterceptionEnabled
|
2020-05-07 10:54:55 +00:00
|
|
|
) {
|
2023-08-29 16:12:04 +00:00
|
|
|
client
|
2020-05-07 10:54:55 +00:00
|
|
|
.send('Fetch.continueRequest', {
|
|
|
|
requestId: event.requestId,
|
|
|
|
})
|
|
|
|
.catch(debugError);
|
2017-09-11 23:32:13 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
const {networkId: networkRequestId, requestId: fetchRequestId} = event;
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
if (!networkRequestId) {
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#onRequestWithoutNetworkInstrumentation(client, event);
|
2021-05-06 06:36:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
const requestWillBeSentEvent = (() => {
|
|
|
|
const requestWillBeSentEvent =
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.getRequestWillBeSent(networkRequestId);
|
2021-12-07 15:08:45 +00:00
|
|
|
|
|
|
|
// redirect requests have the same `requestId`,
|
|
|
|
if (
|
|
|
|
requestWillBeSentEvent &&
|
|
|
|
(requestWillBeSentEvent.request.url !== event.request.url ||
|
|
|
|
requestWillBeSentEvent.request.method !== event.request.method)
|
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.forgetRequestWillBeSent(networkRequestId);
|
2021-12-07 15:08:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
return requestWillBeSentEvent;
|
|
|
|
})();
|
2021-05-06 06:36:34 +00:00
|
|
|
|
|
|
|
if (requestWillBeSentEvent) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#patchRequestEventHeaders(requestWillBeSentEvent, event);
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#onRequest(client, requestWillBeSentEvent, fetchRequestId);
|
2017-11-01 21:04:10 +00:00
|
|
|
} else {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.storeRequestPaused(networkRequestId, event);
|
2017-11-01 21:04:10 +00:00
|
|
|
}
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#patchRequestEventHeaders(
|
2022-03-28 07:54:24 +00:00
|
|
|
requestWillBeSentEvent: Protocol.Network.RequestWillBeSentEvent,
|
|
|
|
requestPausedEvent: Protocol.Fetch.RequestPausedEvent
|
|
|
|
): void {
|
|
|
|
requestWillBeSentEvent.request.headers = {
|
|
|
|
...requestWillBeSentEvent.request.headers,
|
|
|
|
// includes extra headers, like: Accept, Origin
|
|
|
|
...requestPausedEvent.request.headers,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-04-20 12:28:56 +00:00
|
|
|
#onRequestWithoutNetworkInstrumentation(
|
2023-08-29 16:12:04 +00:00
|
|
|
client: CDPSession,
|
2023-04-20 12:28:56 +00:00
|
|
|
event: Protocol.Fetch.RequestPausedEvent
|
|
|
|
): void {
|
|
|
|
// If an event has no networkId it should not have any network events. We
|
|
|
|
// still want to dispatch it for the interception by the user.
|
|
|
|
const frame = event.frameId
|
|
|
|
? this.#frameManager.frame(event.frameId)
|
|
|
|
: null;
|
|
|
|
|
2023-09-13 19:57:26 +00:00
|
|
|
const request = new CdpHTTPRequest(
|
2023-08-29 16:12:04 +00:00
|
|
|
client,
|
2023-04-20 12:28:56 +00:00
|
|
|
frame,
|
|
|
|
event.requestId,
|
|
|
|
this.#userRequestInterceptionEnabled,
|
|
|
|
event,
|
|
|
|
[]
|
|
|
|
);
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.Request, request);
|
2023-04-26 09:53:02 +00:00
|
|
|
void request.finalizeInterceptions();
|
2023-04-20 12:28:56 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#onRequest(
|
2023-08-29 16:12:04 +00:00
|
|
|
client: CDPSession,
|
2020-07-10 10:51:52 +00:00
|
|
|
event: Protocol.Network.RequestWillBeSentEvent,
|
2021-12-07 15:08:45 +00:00
|
|
|
fetchRequestId?: FetchRequestId
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2023-09-13 19:57:26 +00:00
|
|
|
let redirectChain: CdpHTTPRequest[] = [];
|
2018-07-31 02:09:10 +00:00
|
|
|
if (event.redirectResponse) {
|
2021-11-23 07:19:14 +00:00
|
|
|
// We want to emit a response and requestfinished for the
|
|
|
|
// redirectResponse, but we can't do so unless we have a
|
|
|
|
// responseExtraInfo ready to pair it up with. If we don't have any
|
|
|
|
// responseExtraInfos saved in our queue, they we have to wait until
|
|
|
|
// the next one to emit response and requestfinished, *and* we should
|
|
|
|
// also wait to emit this Request too because it should come after the
|
|
|
|
// response/requestfinished.
|
|
|
|
let redirectResponseExtraInfo = null;
|
|
|
|
if (event.redirectHasExtraInfo) {
|
2022-06-13 09:16:25 +00:00
|
|
|
redirectResponseExtraInfo = this.#networkEventManager
|
2021-12-07 15:08:45 +00:00
|
|
|
.responseExtraInfo(event.requestId)
|
|
|
|
.shift();
|
2021-11-23 07:19:14 +00:00
|
|
|
if (!redirectResponseExtraInfo) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.queueRedirectInfo(event.requestId, {
|
2021-11-23 07:19:14 +00:00
|
|
|
event,
|
2021-12-07 15:08:45 +00:00
|
|
|
fetchRequestId,
|
2021-11-23 07:19:14 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
const request = this.#networkEventManager.getRequest(event.requestId);
|
2020-06-19 14:39:03 +00:00
|
|
|
// If we connect late to the target, we could have missed the
|
|
|
|
// requestWillBeSent event.
|
2018-07-31 02:09:10 +00:00
|
|
|
if (request) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#handleRequestRedirect(
|
2023-08-29 16:12:04 +00:00
|
|
|
client,
|
2021-11-23 07:19:14 +00:00
|
|
|
request,
|
|
|
|
event.redirectResponse,
|
|
|
|
redirectResponseExtraInfo
|
|
|
|
);
|
2018-07-31 02:09:10 +00:00
|
|
|
redirectChain = request._redirectChain;
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
const frame = event.frameId
|
2022-06-13 09:16:25 +00:00
|
|
|
? this.#frameManager.frame(event.frameId)
|
2020-05-07 10:54:55 +00:00
|
|
|
: null;
|
2022-05-23 15:41:11 +00:00
|
|
|
|
2023-09-13 19:57:26 +00:00
|
|
|
const request = new CdpHTTPRequest(
|
2023-08-29 16:12:04 +00:00
|
|
|
client,
|
2020-05-07 10:54:55 +00:00
|
|
|
frame,
|
2021-12-07 15:08:45 +00:00
|
|
|
fetchRequestId,
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#userRequestInterceptionEnabled,
|
2020-05-07 10:54:55 +00:00
|
|
|
event,
|
|
|
|
redirectChain
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.storeRequest(event.requestId, request);
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.Request, request);
|
2023-04-26 09:53:02 +00:00
|
|
|
void request.finalizeInterceptions();
|
2018-07-31 02:09:10 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#onRequestServedFromCache(
|
2023-08-29 16:12:04 +00:00
|
|
|
_client: CDPSession,
|
2020-07-10 10:51:52 +00:00
|
|
|
event: Protocol.Network.RequestServedFromCacheEvent
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2022-06-13 09:16:25 +00:00
|
|
|
const request = this.#networkEventManager.getRequest(event.requestId);
|
2022-06-14 11:55:35 +00:00
|
|
|
if (request) {
|
|
|
|
request._fromMemoryCache = true;
|
|
|
|
}
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.RequestServedFromCache, request);
|
2018-02-05 22:59:07 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#handleRequestRedirect(
|
2023-08-29 16:12:04 +00:00
|
|
|
client: CDPSession,
|
2023-09-13 19:57:26 +00:00
|
|
|
request: CdpHTTPRequest,
|
2021-11-23 07:19:14 +00:00
|
|
|
responsePayload: Protocol.Network.Response,
|
2022-05-23 15:41:11 +00:00
|
|
|
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2023-09-13 19:57:26 +00:00
|
|
|
const response = new CdpHTTPResponse(
|
2023-08-29 16:12:04 +00:00
|
|
|
client,
|
2021-11-23 07:19:14 +00:00
|
|
|
request,
|
|
|
|
responsePayload,
|
|
|
|
extraInfo
|
|
|
|
);
|
2017-08-12 00:24:31 +00:00
|
|
|
request._response = response;
|
2018-03-16 00:17:38 +00:00
|
|
|
request._redirectChain.push(request);
|
2020-05-13 13:57:21 +00:00
|
|
|
response._resolveBody(
|
2020-05-07 10:54:55 +00:00
|
|
|
new Error('Response body is unavailable for redirect responses')
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#forgetRequest(request, false);
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.Response, response);
|
|
|
|
this.emit(NetworkManagerEvent.RequestFinished, request);
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#emitResponseEvent(
|
2023-08-29 16:12:04 +00:00
|
|
|
client: CDPSession,
|
2021-11-23 07:19:14 +00:00
|
|
|
responseReceived: Protocol.Network.ResponseReceivedEvent,
|
2021-11-29 19:46:02 +00:00
|
|
|
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null
|
2021-11-23 07:19:14 +00:00
|
|
|
): void {
|
2022-06-13 09:16:25 +00:00
|
|
|
const request = this.#networkEventManager.getRequest(
|
2021-12-07 15:08:45 +00:00
|
|
|
responseReceived.requestId
|
|
|
|
);
|
2017-07-10 18:21:46 +00:00
|
|
|
// FileUpload sends a response without a matching request.
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!request) {
|
|
|
|
return;
|
|
|
|
}
|
2021-11-23 07:19:14 +00:00
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
const extraInfos = this.#networkEventManager.responseExtraInfo(
|
2021-11-23 07:19:14 +00:00
|
|
|
responseReceived.requestId
|
|
|
|
);
|
|
|
|
if (extraInfos.length) {
|
2021-11-29 19:46:02 +00:00
|
|
|
debugError(
|
|
|
|
new Error(
|
|
|
|
'Unexpected extraInfo events for request ' +
|
|
|
|
responseReceived.requestId
|
|
|
|
)
|
2021-11-23 07:19:14 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-04-06 10:29:10 +00:00
|
|
|
// Chromium sends wrong extraInfo events for responses served from cache.
|
|
|
|
// See https://github.com/puppeteer/puppeteer/issues/9965 and
|
|
|
|
// https://crbug.com/1340398.
|
|
|
|
if (responseReceived.response.fromDiskCache) {
|
|
|
|
extraInfo = null;
|
|
|
|
}
|
|
|
|
|
2023-09-13 19:57:26 +00:00
|
|
|
const response = new CdpHTTPResponse(
|
2023-08-29 16:12:04 +00:00
|
|
|
client,
|
2021-11-23 07:19:14 +00:00
|
|
|
request,
|
|
|
|
responseReceived.response,
|
|
|
|
extraInfo
|
|
|
|
);
|
2017-06-30 01:18:06 +00:00
|
|
|
request._response = response;
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.Response, response);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
#onResponseReceived(
|
|
|
|
client: CDPSession,
|
|
|
|
event: Protocol.Network.ResponseReceivedEvent
|
|
|
|
): void {
|
2022-06-13 09:16:25 +00:00
|
|
|
const request = this.#networkEventManager.getRequest(event.requestId);
|
2021-11-23 07:19:14 +00:00
|
|
|
let extraInfo = null;
|
|
|
|
if (request && !request._fromMemoryCache && event.hasExtraInfo) {
|
2022-06-13 09:16:25 +00:00
|
|
|
extraInfo = this.#networkEventManager
|
2021-12-07 15:08:45 +00:00
|
|
|
.responseExtraInfo(event.requestId)
|
|
|
|
.shift();
|
2021-11-23 07:19:14 +00:00
|
|
|
if (!extraInfo) {
|
|
|
|
// Wait until we get the corresponding ExtraInfo event.
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.queueEventGroup(event.requestId, {
|
2021-12-09 10:02:24 +00:00
|
|
|
responseReceivedEvent: event,
|
2021-11-23 07:19:14 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#emitResponseEvent(client, event, extraInfo);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#onResponseReceivedExtraInfo(
|
2023-08-29 16:12:04 +00:00
|
|
|
client: CDPSession,
|
2021-11-23 07:19:14 +00:00
|
|
|
event: Protocol.Network.ResponseReceivedExtraInfoEvent
|
|
|
|
): void {
|
|
|
|
// We may have skipped a redirect response/request pair due to waiting for
|
|
|
|
// this ExtraInfo event. If so, continue that work now that we have the
|
|
|
|
// request.
|
2022-06-13 09:16:25 +00:00
|
|
|
const redirectInfo = this.#networkEventManager.takeQueuedRedirectInfo(
|
2021-12-09 10:02:24 +00:00
|
|
|
event.requestId
|
|
|
|
);
|
2021-11-23 07:19:14 +00:00
|
|
|
if (redirectInfo) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.responseExtraInfo(event.requestId).push(event);
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#onRequest(client, redirectInfo.event, redirectInfo.fetchRequestId);
|
2021-11-23 07:19:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We may have skipped response and loading events because we didn't have
|
|
|
|
// this ExtraInfo event yet. If so, emit those events now.
|
2022-06-13 09:16:25 +00:00
|
|
|
const queuedEvents = this.#networkEventManager.getQueuedEventGroup(
|
2021-12-07 15:08:45 +00:00
|
|
|
event.requestId
|
|
|
|
);
|
2021-11-23 07:19:14 +00:00
|
|
|
if (queuedEvents) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.forgetQueuedEventGroup(event.requestId);
|
2023-08-29 16:12:04 +00:00
|
|
|
this.#emitResponseEvent(
|
|
|
|
client,
|
|
|
|
queuedEvents.responseReceivedEvent,
|
|
|
|
event
|
|
|
|
);
|
2021-12-09 10:02:24 +00:00
|
|
|
if (queuedEvents.loadingFinishedEvent) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emitLoadingFinished(queuedEvents.loadingFinishedEvent);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
2021-12-09 10:02:24 +00:00
|
|
|
if (queuedEvents.loadingFailedEvent) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emitLoadingFailed(queuedEvents.loadingFailedEvent);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait until we get another event that can use this ExtraInfo event.
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.responseExtraInfo(event.requestId).push(event);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
|
2023-09-13 19:57:26 +00:00
|
|
|
#forgetRequest(request: CdpHTTPRequest, events: boolean): void {
|
2021-05-06 06:36:34 +00:00
|
|
|
const requestId = request._requestId;
|
|
|
|
const interceptionId = request._interceptionId;
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.forgetRequest(requestId);
|
2022-05-23 15:41:11 +00:00
|
|
|
interceptionId !== undefined &&
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#attemptedAuthentications.delete(interceptionId);
|
2021-05-06 06:36:34 +00:00
|
|
|
|
|
|
|
if (events) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#networkEventManager.forget(requestId);
|
2021-05-06 06:36:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
#onLoadingFinished(
|
|
|
|
_client: CDPSession,
|
|
|
|
event: Protocol.Network.LoadingFinishedEvent
|
|
|
|
): void {
|
2021-11-23 07:19:14 +00:00
|
|
|
// If the response event for this request is still waiting on a
|
|
|
|
// corresponding ExtraInfo event, then wait to emit this event too.
|
2022-06-13 09:16:25 +00:00
|
|
|
const queuedEvents = this.#networkEventManager.getQueuedEventGroup(
|
2021-12-07 15:08:45 +00:00
|
|
|
event.requestId
|
|
|
|
);
|
2021-11-23 07:19:14 +00:00
|
|
|
if (queuedEvents) {
|
2021-12-09 10:02:24 +00:00
|
|
|
queuedEvents.loadingFinishedEvent = event;
|
2021-11-23 07:19:14 +00:00
|
|
|
} else {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emitLoadingFinished(event);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#emitLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
|
|
|
const request = this.#networkEventManager.getRequest(event.requestId);
|
2017-07-30 01:16:15 +00:00
|
|
|
// For certain requestIds we never receive requestWillBeSent event.
|
2017-08-11 08:07:33 +00:00
|
|
|
// @see https://crbug.com/750469
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!request) {
|
|
|
|
return;
|
|
|
|
}
|
2018-09-12 21:08:32 +00:00
|
|
|
|
|
|
|
// Under certain conditions we never get the Network.responseReceived
|
|
|
|
// event from protocol. @see https://crbug.com/883475
|
2022-06-14 11:55:35 +00:00
|
|
|
if (request.response()) {
|
|
|
|
request.response()?._resolveBody(null);
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#forgetRequest(request, true);
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.RequestFinished, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:12:04 +00:00
|
|
|
#onLoadingFailed(
|
|
|
|
_client: CDPSession,
|
|
|
|
event: Protocol.Network.LoadingFailedEvent
|
|
|
|
): void {
|
2021-11-23 07:19:14 +00:00
|
|
|
// If the response event for this request is still waiting on a
|
|
|
|
// corresponding ExtraInfo event, then wait to emit this event too.
|
2022-06-13 09:16:25 +00:00
|
|
|
const queuedEvents = this.#networkEventManager.getQueuedEventGroup(
|
2021-12-07 15:08:45 +00:00
|
|
|
event.requestId
|
|
|
|
);
|
2021-11-23 07:19:14 +00:00
|
|
|
if (queuedEvents) {
|
2021-12-09 10:02:24 +00:00
|
|
|
queuedEvents.loadingFailedEvent = event;
|
2021-11-23 07:19:14 +00:00
|
|
|
} else {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#emitLoadingFailed(event);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#emitLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
|
|
|
const request = this.#networkEventManager.getRequest(event.requestId);
|
2017-07-30 01:16:15 +00:00
|
|
|
// For certain requestIds we never receive requestWillBeSent event.
|
2017-08-11 08:07:33 +00:00
|
|
|
// @see https://crbug.com/750469
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!request) {
|
|
|
|
return;
|
|
|
|
}
|
2017-10-18 00:48:04 +00:00
|
|
|
request._failureText = event.errorText;
|
2018-04-11 03:22:18 +00:00
|
|
|
const response = request.response();
|
2022-06-14 11:55:35 +00:00
|
|
|
if (response) {
|
|
|
|
response._resolveBody(null);
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#forgetRequest(request, true);
|
2023-09-13 13:47:55 +00:00
|
|
|
this.emit(NetworkManagerEvent.RequestFailed, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
}
|