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
|
|
|
|
|
|
|
import { ProtocolMapping } from 'devtools-protocol/types/protocol-mapping.js';
|
2020-07-13 09:22:26 +00:00
|
|
|
import { EventEmitter } from './EventEmitter.js';
|
2021-11-23 07:19:14 +00:00
|
|
|
import { Frame } from './FrameManager.js';
|
2020-07-13 09:22:26 +00:00
|
|
|
import { assert } from './assert.js';
|
|
|
|
import { helper, debugError } from './helper.js';
|
2020-07-10 10:51:52 +00:00
|
|
|
import { Protocol } from 'devtools-protocol';
|
2020-07-13 09:22:26 +00:00
|
|
|
import { HTTPRequest } from './HTTPRequest.js';
|
|
|
|
import { HTTPResponse } from './HTTPResponse.js';
|
2021-12-09 14:35:23 +00:00
|
|
|
import { FetchRequestId, NetworkEventManager } 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;
|
|
|
|
}
|
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
|
|
|
|
*/
|
|
|
|
export const NetworkManagerEmittedEvents = {
|
|
|
|
Request: Symbol('NetworkManager.Request'),
|
2021-03-17 14:42:35 +00:00
|
|
|
RequestServedFromCache: Symbol('NetworkManager.RequestServedFromCache'),
|
2020-07-07 15:43:55 +00:00
|
|
|
Response: Symbol('NetworkManager.Response'),
|
|
|
|
RequestFailed: Symbol('NetworkManager.RequestFailed'),
|
|
|
|
RequestFinished: Symbol('NetworkManager.RequestFinished'),
|
|
|
|
} as const;
|
|
|
|
|
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']>;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface FrameManager {
|
|
|
|
frame(frameId: string): Frame | null;
|
|
|
|
}
|
|
|
|
|
2020-07-02 15:13:22 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-30 10:15:27 +00:00
|
|
|
export class NetworkManager extends EventEmitter {
|
|
|
|
_client: CDPSession;
|
|
|
|
_ignoreHTTPSErrors: boolean;
|
|
|
|
_frameManager: FrameManager;
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
_networkEventManager = new NetworkEventManager();
|
2021-11-23 07:19:14 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_extraHTTPHeaders: Record<string, string> = {};
|
|
|
|
_credentials?: Credentials = null;
|
|
|
|
_attemptedAuthentications = new Set<string>();
|
|
|
|
_userRequestInterceptionEnabled = false;
|
|
|
|
_protocolRequestInterceptionEnabled = false;
|
|
|
|
_userCacheDisabled = false;
|
2021-01-21 09:00:57 +00:00
|
|
|
_emulatedNetworkConditions: InternalNetworkConditions = {
|
|
|
|
offline: false,
|
|
|
|
upload: -1,
|
|
|
|
download: -1,
|
|
|
|
latency: 0,
|
|
|
|
};
|
2020-04-30 10:15:27 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
|
|
|
ignoreHTTPSErrors: boolean,
|
|
|
|
frameManager: FrameManager
|
|
|
|
) {
|
2017-06-29 06:09:28 +00:00
|
|
|
super();
|
|
|
|
this._client = client;
|
2019-04-10 04:42:42 +00:00
|
|
|
this._ignoreHTTPSErrors = ignoreHTTPSErrors;
|
2019-09-05 01:11:58 +00:00
|
|
|
this._frameManager = frameManager;
|
2017-08-12 00:24:31 +00:00
|
|
|
|
2019-04-11 19:02:06 +00:00
|
|
|
this._client.on('Fetch.requestPaused', this._onRequestPaused.bind(this));
|
|
|
|
this._client.on('Fetch.authRequired', this._onAuthRequired.bind(this));
|
2020-05-07 10:54:55 +00:00
|
|
|
this._client.on(
|
|
|
|
'Network.requestWillBeSent',
|
|
|
|
this._onRequestWillBeSent.bind(this)
|
|
|
|
);
|
|
|
|
this._client.on(
|
|
|
|
'Network.requestServedFromCache',
|
|
|
|
this._onRequestServedFromCache.bind(this)
|
|
|
|
);
|
|
|
|
this._client.on(
|
|
|
|
'Network.responseReceived',
|
|
|
|
this._onResponseReceived.bind(this)
|
|
|
|
);
|
|
|
|
this._client.on(
|
|
|
|
'Network.loadingFinished',
|
|
|
|
this._onLoadingFinished.bind(this)
|
|
|
|
);
|
2017-06-29 06:09:28 +00:00
|
|
|
this._client.on('Network.loadingFailed', this._onLoadingFailed.bind(this));
|
2021-11-23 07:19:14 +00:00
|
|
|
this._client.on(
|
|
|
|
'Network.responseReceivedExtraInfo',
|
|
|
|
this._onResponseReceivedExtraInfo.bind(this)
|
|
|
|
);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async initialize(): Promise<void> {
|
2019-04-10 04:42:42 +00:00
|
|
|
await this._client.send('Network.enable');
|
|
|
|
if (this._ignoreHTTPSErrors)
|
2020-05-07 10:54:55 +00:00
|
|
|
await this._client.send('Security.setIgnoreCertificateErrors', {
|
|
|
|
ignore: true,
|
|
|
|
});
|
2019-04-10 04:42:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async authenticate(credentials?: Credentials): Promise<void> {
|
2017-09-11 23:32:13 +00:00
|
|
|
this._credentials = credentials;
|
|
|
|
await this._updateProtocolRequestInterception();
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async setExtraHTTPHeaders(
|
|
|
|
extraHTTPHeaders: Record<string, string>
|
|
|
|
): Promise<void> {
|
2017-08-28 19:09:24 +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(
|
|
|
|
helper.isString(value),
|
|
|
|
`Expected value of header "${key}" to be String, but "${typeof value}" is found.`
|
|
|
|
);
|
2017-09-15 02:08:48 +00:00
|
|
|
this._extraHTTPHeaders[key.toLowerCase()] = value;
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
await this._client.send('Network.setExtraHTTPHeaders', {
|
|
|
|
headers: this._extraHTTPHeaders,
|
|
|
|
});
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
extraHTTPHeaders(): Record<string, string> {
|
2017-08-28 19:09:24 +00:00
|
|
|
return Object.assign({}, this._extraHTTPHeaders);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2021-09-11 20:28:12 +00:00
|
|
|
numRequestsInProgress(): number {
|
2021-12-09 10:02:24 +00:00
|
|
|
return this._networkEventManager.numRequestsInProgress();
|
2021-09-11 20:28:12 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setOfflineMode(value: boolean): Promise<void> {
|
2021-01-21 09:00:57 +00:00
|
|
|
this._emulatedNetworkConditions.offline = value;
|
|
|
|
await this._updateNetworkConditions();
|
|
|
|
}
|
|
|
|
|
|
|
|
async emulateNetworkConditions(
|
|
|
|
networkConditions: NetworkConditions | null
|
|
|
|
): Promise<void> {
|
|
|
|
this._emulatedNetworkConditions.upload = networkConditions
|
|
|
|
? networkConditions.upload
|
|
|
|
: -1;
|
|
|
|
this._emulatedNetworkConditions.download = networkConditions
|
|
|
|
? networkConditions.download
|
|
|
|
: -1;
|
|
|
|
this._emulatedNetworkConditions.latency = networkConditions
|
|
|
|
? networkConditions.latency
|
|
|
|
: 0;
|
|
|
|
|
|
|
|
await this._updateNetworkConditions();
|
|
|
|
}
|
|
|
|
|
|
|
|
async _updateNetworkConditions(): Promise<void> {
|
2017-10-13 21:41:39 +00:00
|
|
|
await this._client.send('Network.emulateNetworkConditions', {
|
2021-01-21 09:00:57 +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> {
|
|
|
|
await this._client.send('Network.setUserAgentOverride', {
|
|
|
|
userAgent: userAgent,
|
|
|
|
userAgentMetadata: userAgentMetadata,
|
|
|
|
});
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setCacheEnabled(enabled: boolean): Promise<void> {
|
2019-04-10 04:42:42 +00:00
|
|
|
this._userCacheDisabled = !enabled;
|
|
|
|
await this._updateProtocolCacheDisabled();
|
|
|
|
}
|
|
|
|
|
2021-05-20 12:09:56 +00:00
|
|
|
async setRequestInterception(value: boolean): Promise<void> {
|
2017-09-11 23:32:13 +00:00
|
|
|
this._userRequestInterceptionEnabled = value;
|
|
|
|
await this._updateProtocolRequestInterception();
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async _updateProtocolRequestInterception(): Promise<void> {
|
2017-09-11 23:32:13 +00:00
|
|
|
const enabled = this._userRequestInterceptionEnabled || !!this._credentials;
|
2020-05-07 10:54:55 +00:00
|
|
|
if (enabled === this._protocolRequestInterceptionEnabled) return;
|
2017-09-11 23:32:13 +00:00
|
|
|
this._protocolRequestInterceptionEnabled = enabled;
|
2019-04-11 19:02:06 +00:00
|
|
|
if (enabled) {
|
|
|
|
await Promise.all([
|
|
|
|
this._updateProtocolCacheDisabled(),
|
|
|
|
this._client.send('Fetch.enable', {
|
|
|
|
handleAuthRequests: true,
|
2020-05-07 10:54:55 +00:00
|
|
|
patterns: [{ urlPattern: '*' }],
|
2019-04-11 19:02:06 +00:00
|
|
|
}),
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
await Promise.all([
|
|
|
|
this._updateProtocolCacheDisabled(),
|
2020-05-07 10:54:55 +00:00
|
|
|
this._client.send('Fetch.disable'),
|
2019-04-11 19:02:06 +00:00
|
|
|
]);
|
|
|
|
}
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 06:36:34 +00:00
|
|
|
_cacheDisabled(): boolean {
|
2021-05-20 12:09:56 +00:00
|
|
|
return this._userCacheDisabled;
|
2021-05-06 06:36:34 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async _updateProtocolCacheDisabled(): Promise<void> {
|
2019-04-10 04:42:42 +00:00
|
|
|
await this._client.send('Network.setCacheDisabled', {
|
2021-05-06 06:36:34 +00:00
|
|
|
cacheDisabled: this._cacheDisabled(),
|
2019-04-10 04:42:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
_onRequestWillBeSent(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 (
|
2021-03-15 07:02:07 +00:00
|
|
|
this._userRequestInterceptionEnabled &&
|
2020-05-07 10:54:55 +00:00
|
|
|
!event.request.url.startsWith('data:')
|
|
|
|
) {
|
2021-12-07 15:08:45 +00:00
|
|
|
const { requestId: networkRequestId } = event;
|
2021-05-06 06:36:34 +00:00
|
|
|
|
2021-12-09 10:02:24 +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 =
|
2021-12-09 10:02:24 +00:00
|
|
|
this._networkEventManager.getRequestPaused(networkRequestId);
|
2021-05-06 06:36:34 +00:00
|
|
|
if (requestPausedEvent) {
|
2021-12-07 15:08:45 +00:00
|
|
|
const { requestId: fetchRequestId } = requestPausedEvent;
|
|
|
|
this._onRequest(event, fetchRequestId);
|
2021-12-09 10:02:24 +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;
|
|
|
|
}
|
|
|
|
this._onRequest(event, null);
|
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
_onAuthRequired(event: Protocol.Fetch.AuthRequiredEvent): void {
|
2020-04-30 10:15:27 +00:00
|
|
|
/* TODO(jacktfranklin): This is defined in protocol.d.ts but not
|
2020-05-07 10:54:55 +00:00
|
|
|
* in an easily referrable way - we should look at exposing it.
|
|
|
|
*/
|
|
|
|
type AuthResponse = 'Default' | 'CancelAuth' | 'ProvideCredentials';
|
2020-04-30 10:15:27 +00:00
|
|
|
let response: AuthResponse = 'Default';
|
2019-04-11 19:02:06 +00:00
|
|
|
if (this._attemptedAuthentications.has(event.requestId)) {
|
|
|
|
response = 'CancelAuth';
|
|
|
|
} else if (this._credentials) {
|
|
|
|
response = 'ProvideCredentials';
|
|
|
|
this._attemptedAuthentications.add(event.requestId);
|
2017-09-11 23:32:13 +00:00
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
const { username, password } = this._credentials || {
|
|
|
|
username: undefined,
|
|
|
|
password: undefined,
|
|
|
|
};
|
|
|
|
this._client
|
|
|
|
.send('Fetch.continueWithAuth', {
|
|
|
|
requestId: event.requestId,
|
|
|
|
authChallengeResponse: { response, username, password },
|
|
|
|
})
|
|
|
|
.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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2020-07-10 10:51:52 +00:00
|
|
|
_onRequestPaused(event: Protocol.Fetch.RequestPausedEvent): void {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (
|
|
|
|
!this._userRequestInterceptionEnabled &&
|
|
|
|
this._protocolRequestInterceptionEnabled
|
|
|
|
) {
|
|
|
|
this._client
|
|
|
|
.send('Fetch.continueRequest', {
|
|
|
|
requestId: event.requestId,
|
|
|
|
})
|
|
|
|
.catch(debugError);
|
2017-09-11 23:32:13 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 15:08:45 +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) {
|
2021-05-06 06:36:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-07 15:08:45 +00:00
|
|
|
const requestWillBeSentEvent = (() => {
|
|
|
|
const requestWillBeSentEvent =
|
2021-12-09 10:02:24 +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)
|
|
|
|
) {
|
2021-12-09 10:02:24 +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) {
|
2021-12-07 15:08:45 +00:00
|
|
|
this._onRequest(requestWillBeSentEvent, fetchRequestId);
|
2017-11-01 21:04:10 +00:00
|
|
|
} else {
|
2021-12-09 10:02:24 +00:00
|
|
|
this._networkEventManager.storeRequestPaused(networkRequestId, event);
|
2017-11-01 21:04:10 +00:00
|
|
|
}
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_onRequest(
|
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 {
|
2018-07-31 02:09:10 +00:00
|
|
|
let redirectChain = [];
|
|
|
|
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) {
|
2021-12-07 15:08:45 +00:00
|
|
|
redirectResponseExtraInfo = this._networkEventManager
|
|
|
|
.responseExtraInfo(event.requestId)
|
|
|
|
.shift();
|
2021-11-23 07:19:14 +00:00
|
|
|
if (!redirectResponseExtraInfo) {
|
2021-12-09 10:02:24 +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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-09 10:02:24 +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) {
|
2021-11-23 07:19:14 +00:00
|
|
|
this._handleRequestRedirect(
|
|
|
|
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
|
|
|
|
? this._frameManager.frame(event.frameId)
|
|
|
|
: null;
|
2020-05-29 08:38:40 +00:00
|
|
|
const request = new HTTPRequest(
|
2020-05-07 10:54:55 +00:00
|
|
|
this._client,
|
|
|
|
frame,
|
2021-12-07 15:08:45 +00:00
|
|
|
fetchRequestId,
|
2020-05-07 10:54:55 +00:00
|
|
|
this._userRequestInterceptionEnabled,
|
|
|
|
event,
|
|
|
|
redirectChain
|
|
|
|
);
|
2021-12-09 10:02:24 +00:00
|
|
|
this._networkEventManager.storeRequest(event.requestId, request);
|
2020-07-07 15:43:55 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.Request, request);
|
2021-10-04 06:18:03 +00:00
|
|
|
request.finalizeInterceptions();
|
2018-07-31 02:09:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_onRequestServedFromCache(
|
2020-07-10 10:51:52 +00:00
|
|
|
event: Protocol.Network.RequestServedFromCacheEvent
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2021-12-09 10:02:24 +00:00
|
|
|
const request = this._networkEventManager.getRequest(event.requestId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (request) request._fromMemoryCache = true;
|
2021-03-17 14:42:35 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.RequestServedFromCache, request);
|
2018-02-05 22:59:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_handleRequestRedirect(
|
2020-05-29 08:38:40 +00:00
|
|
|
request: HTTPRequest,
|
2021-11-23 07:19:14 +00:00
|
|
|
responsePayload: Protocol.Network.Response,
|
|
|
|
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2021-11-23 07:19:14 +00:00
|
|
|
const response = new HTTPResponse(
|
|
|
|
this._client,
|
|
|
|
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')
|
|
|
|
);
|
2021-05-06 06:36:34 +00:00
|
|
|
this._forgetRequest(request, false);
|
2020-07-07 15:43:55 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.Response, response);
|
|
|
|
this.emit(NetworkManagerEmittedEvents.RequestFinished, request);
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 07:19:14 +00:00
|
|
|
_emitResponseEvent(
|
|
|
|
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 {
|
2021-12-09 10:02:24 +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.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!request) return;
|
2021-11-23 07:19:14 +00:00
|
|
|
|
2021-12-07 15:08:45 +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
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = new HTTPResponse(
|
|
|
|
this._client,
|
|
|
|
request,
|
|
|
|
responseReceived.response,
|
|
|
|
extraInfo
|
|
|
|
);
|
2017-06-30 01:18:06 +00:00
|
|
|
request._response = response;
|
2020-07-07 15:43:55 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.Response, response);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 07:19:14 +00:00
|
|
|
_onResponseReceived(event: Protocol.Network.ResponseReceivedEvent): void {
|
2021-12-09 10:02:24 +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) {
|
2021-12-07 15:08:45 +00:00
|
|
|
extraInfo = this._networkEventManager
|
|
|
|
.responseExtraInfo(event.requestId)
|
|
|
|
.shift();
|
2021-11-23 07:19:14 +00:00
|
|
|
if (!extraInfo) {
|
|
|
|
// Wait until we get the corresponding ExtraInfo event.
|
2021-12-09 10:02:24 +00:00
|
|
|
this._networkEventManager.queueEventGroup(event.requestId, {
|
|
|
|
responseReceivedEvent: event,
|
2021-11-23 07:19:14 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._emitResponseEvent(event, extraInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onResponseReceivedExtraInfo(
|
|
|
|
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.
|
2021-12-09 10:02:24 +00:00
|
|
|
const redirectInfo = this._networkEventManager.takeQueuedRedirectInfo(
|
|
|
|
event.requestId
|
|
|
|
);
|
2021-11-23 07:19:14 +00:00
|
|
|
if (redirectInfo) {
|
2021-12-07 15:08:45 +00:00
|
|
|
this._networkEventManager.responseExtraInfo(event.requestId).push(event);
|
|
|
|
this._onRequest(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.
|
2021-12-09 10:02:24 +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
|
|
|
this._emitResponseEvent(queuedEvents.responseReceivedEvent, event);
|
|
|
|
if (queuedEvents.loadingFinishedEvent) {
|
|
|
|
this._emitLoadingFinished(queuedEvents.loadingFinishedEvent);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
2021-12-09 10:02:24 +00:00
|
|
|
if (queuedEvents.loadingFailedEvent) {
|
|
|
|
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.
|
2021-12-07 15:08:45 +00:00
|
|
|
this._networkEventManager.responseExtraInfo(event.requestId).push(event);
|
2021-11-23 07:19:14 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 06:36:34 +00:00
|
|
|
_forgetRequest(request: HTTPRequest, events: boolean): void {
|
|
|
|
const requestId = request._requestId;
|
|
|
|
const interceptionId = request._interceptionId;
|
|
|
|
|
2021-12-09 10:02:24 +00:00
|
|
|
this._networkEventManager.forgetRequest(requestId);
|
2021-05-06 06:36:34 +00:00
|
|
|
this._attemptedAuthentications.delete(interceptionId);
|
|
|
|
|
|
|
|
if (events) {
|
2021-12-07 15:08:45 +00:00
|
|
|
this._networkEventManager.forget(requestId);
|
2021-05-06 06:36:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
_onLoadingFinished(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.
|
2021-12-09 10:02:24 +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 {
|
|
|
|
this._emitLoadingFinished(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_emitLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
2021-12-09 10:02:24 +00:00
|
|
|
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
|
2020-05-07 10:54:55 +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
|
2020-05-13 13:57:21 +00:00
|
|
|
if (request.response()) request.response()._resolveBody(null);
|
2021-05-06 06:36:34 +00:00
|
|
|
this._forgetRequest(request, true);
|
2020-07-07 15:43:55 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.RequestFinished, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
_onLoadingFailed(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.
|
2021-12-09 10:02:24 +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 {
|
|
|
|
this._emitLoadingFailed(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_emitLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
2021-12-09 10:02:24 +00:00
|
|
|
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
|
2020-05-07 10:54:55 +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();
|
2020-05-13 13:57:21 +00:00
|
|
|
if (response) response._resolveBody(null);
|
2021-05-06 06:36:34 +00:00
|
|
|
this._forgetRequest(request, true);
|
2020-07-07 15:43:55 +00:00
|
|
|
this.emit(NetworkManagerEmittedEvents.RequestFailed, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
}
|