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.
|
|
|
|
*/
|
2020-04-30 10:15:27 +00:00
|
|
|
import * as EventEmitter from 'events';
|
2020-05-07 10:54:55 +00:00
|
|
|
import { helper, assert, debugError } from './helper';
|
|
|
|
import { Events } from './Events';
|
|
|
|
import { CDPSession } from './Connection';
|
|
|
|
import { FrameManager, Frame } from './FrameManager';
|
2020-05-13 09:32:46 +00:00
|
|
|
import { SecurityDetails } from './SecurityDetails';
|
2020-04-30 10:15:27 +00:00
|
|
|
|
2020-05-05 12:53:22 +00:00
|
|
|
export interface Credentials {
|
2020-04-30 10:15:27 +00:00
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class NetworkManager extends EventEmitter {
|
|
|
|
_client: CDPSession;
|
|
|
|
_ignoreHTTPSErrors: boolean;
|
|
|
|
_frameManager: FrameManager;
|
|
|
|
_requestIdToRequest = new Map<string, Request>();
|
2020-05-07 10:54:55 +00:00
|
|
|
_requestIdToRequestWillBeSentEvent = new Map<
|
|
|
|
string,
|
|
|
|
Protocol.Network.requestWillBeSentPayload
|
|
|
|
>();
|
2020-04-30 10:15:27 +00:00
|
|
|
_extraHTTPHeaders: Record<string, string> = {};
|
|
|
|
_offline = false;
|
|
|
|
_credentials?: Credentials = null;
|
|
|
|
_attemptedAuthentications = new Set<string>();
|
|
|
|
_userRequestInterceptionEnabled = false;
|
|
|
|
_protocolRequestInterceptionEnabled = false;
|
|
|
|
_userCacheDisabled = false;
|
|
|
|
_requestIdToInterceptionId = new Map<string, string>();
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setOfflineMode(value: boolean): Promise<void> {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._offline === value) return;
|
2017-10-13 21:41:39 +00:00
|
|
|
this._offline = value;
|
|
|
|
await this._client.send('Network.emulateNetworkConditions', {
|
|
|
|
offline: this._offline,
|
|
|
|
// values of 0 remove any active throttling. crbug.com/456324#c9
|
|
|
|
latency: 0,
|
|
|
|
downloadThroughput: -1,
|
2020-05-07 10:54:55 +00:00
|
|
|
uploadThroughput: -1,
|
2017-10-13 21:41:39 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async setUserAgent(userAgent: string): Promise<void> {
|
2020-05-07 10:54:55 +00:00
|
|
|
await this._client.send('Network.setUserAgentOverride', { userAgent });
|
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();
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +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
|
|
|
}
|
|
|
|
|
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', {
|
2020-05-07 10:54:55 +00:00
|
|
|
cacheDisabled:
|
|
|
|
this._userCacheDisabled || this._protocolRequestInterceptionEnabled,
|
2019-04-10 04:42:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_onRequestWillBeSent(event: Protocol.Network.requestWillBeSentPayload): 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 (
|
|
|
|
this._protocolRequestInterceptionEnabled &&
|
|
|
|
!event.request.url.startsWith('data:')
|
|
|
|
) {
|
2019-04-08 21:17:57 +00:00
|
|
|
const requestId = event.requestId;
|
|
|
|
const interceptionId = this._requestIdToInterceptionId.get(requestId);
|
2018-07-31 02:09:10 +00:00
|
|
|
if (interceptionId) {
|
|
|
|
this._onRequest(event, interceptionId);
|
2019-04-08 21:17:57 +00:00
|
|
|
this._requestIdToInterceptionId.delete(requestId);
|
2018-07-31 02:09:10 +00:00
|
|
|
} else {
|
|
|
|
this._requestIdToRequestWillBeSentEvent.set(event.requestId, event);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._onRequest(event, null);
|
|
|
|
}
|
|
|
|
|
2017-06-29 06:09:28 +00:00
|
|
|
/**
|
2019-04-11 19:02:06 +00:00
|
|
|
* @param {!Protocol.Fetch.authRequiredPayload} event
|
2017-06-29 06:09:28 +00:00
|
|
|
*/
|
2020-04-30 10:15:27 +00:00
|
|
|
_onAuthRequired(event: Protocol.Fetch.authRequiredPayload): void {
|
|
|
|
/* 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
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_onRequestPaused(event: Protocol.Fetch.requestPausedPayload): 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
|
|
|
}
|
|
|
|
|
2019-04-11 19:02:06 +00:00
|
|
|
const requestId = event.networkId;
|
|
|
|
const interceptionId = event.requestId;
|
2019-04-08 21:17:57 +00:00
|
|
|
if (requestId && this._requestIdToRequestWillBeSentEvent.has(requestId)) {
|
2020-05-07 10:54:55 +00:00
|
|
|
const requestWillBeSentEvent = this._requestIdToRequestWillBeSentEvent.get(
|
|
|
|
requestId
|
|
|
|
);
|
2019-04-11 19:02:06 +00:00
|
|
|
this._onRequest(requestWillBeSentEvent, interceptionId);
|
2018-07-31 02:09:10 +00:00
|
|
|
this._requestIdToRequestWillBeSentEvent.delete(requestId);
|
2017-11-01 21:04:10 +00:00
|
|
|
} else {
|
2019-04-11 19:02:06 +00:00
|
|
|
this._requestIdToInterceptionId.set(requestId, interceptionId);
|
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(
|
|
|
|
event: Protocol.Network.requestWillBeSentPayload,
|
|
|
|
interceptionId?: string
|
|
|
|
): void {
|
2018-07-31 02:09:10 +00:00
|
|
|
let redirectChain = [];
|
|
|
|
if (event.redirectResponse) {
|
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
|
|
|
// If we connect late to the target, we could have missed the requestWillBeSent event.
|
|
|
|
if (request) {
|
2018-09-04 19:20:20 +00:00
|
|
|
this._handleRequestRedirect(request, event.redirectResponse);
|
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;
|
|
|
|
const request = new Request(
|
|
|
|
this._client,
|
|
|
|
frame,
|
|
|
|
interceptionId,
|
|
|
|
this._userRequestInterceptionEnabled,
|
|
|
|
event,
|
|
|
|
redirectChain
|
|
|
|
);
|
2018-09-05 20:02:28 +00:00
|
|
|
this._requestIdToRequest.set(event.requestId, request);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.NetworkManager.Request, request);
|
2018-07-31 02:09:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_onRequestServedFromCache(
|
|
|
|
event: Protocol.Network.requestServedFromCachePayload
|
|
|
|
): void {
|
2018-02-05 22:59:07 +00:00
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (request) request._fromMemoryCache = true;
|
2018-02-05 22:59:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_handleRequestRedirect(
|
|
|
|
request: Request,
|
|
|
|
responsePayload: Protocol.Network.Response
|
|
|
|
): void {
|
2018-09-04 19:20:20 +00:00
|
|
|
const response = new Response(this._client, request, responsePayload);
|
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-07 10:54:55 +00:00
|
|
|
response._bodyLoadedPromiseFulfill.call(
|
|
|
|
null,
|
|
|
|
new Error('Response body is unavailable for redirect responses')
|
|
|
|
);
|
2017-08-12 00:24:31 +00:00
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
2017-09-11 23:32:13 +00:00
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.NetworkManager.Response, response);
|
|
|
|
this.emit(Events.NetworkManager.RequestFinished, request);
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_onResponseReceived(event: Protocol.Network.responseReceivedPayload): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
const request = this._requestIdToRequest.get(event.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;
|
2018-09-04 19:20:20 +00:00
|
|
|
const response = new Response(this._client, request, event.response);
|
2017-06-30 01:18:06 +00:00
|
|
|
request._response = response;
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.NetworkManager.Response, response);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_onLoadingFinished(event: Protocol.Network.loadingFinishedPayload): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
const request = this._requestIdToRequest.get(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
|
|
|
|
if (request.response())
|
|
|
|
request.response()._bodyLoadedPromiseFulfill.call(null);
|
2017-09-11 23:32:13 +00:00
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.NetworkManager.RequestFinished, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
_onLoadingFailed(event: Protocol.Network.loadingFailedPayload): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
const request = this._requestIdToRequest.get(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-07 10:54:55 +00:00
|
|
|
if (response) response._bodyLoadedPromiseFulfill.call(null);
|
2017-09-11 23:32:13 +00:00
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.NetworkManager.RequestFailed, request);
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
export class Request {
|
|
|
|
_client: CDPSession;
|
|
|
|
_requestId: string;
|
|
|
|
_isNavigationRequest: boolean;
|
|
|
|
_interceptionId: string;
|
|
|
|
_allowInterception: boolean;
|
|
|
|
_interceptionHandled = false;
|
|
|
|
_response: Response | null = null;
|
|
|
|
_failureText = null;
|
|
|
|
_url: string;
|
|
|
|
_resourceType: string;
|
|
|
|
|
|
|
|
_method: string;
|
|
|
|
_postData?: string;
|
|
|
|
_headers: Record<string, string> = {};
|
|
|
|
_frame: Frame;
|
|
|
|
|
|
|
|
_redirectChain: Request[];
|
2020-05-07 10:54:55 +00:00
|
|
|
_fromMemoryCache = false;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
|
|
|
frame: Frame,
|
|
|
|
interceptionId: string,
|
|
|
|
allowInterception: boolean,
|
|
|
|
event: Protocol.Network.requestWillBeSentPayload,
|
|
|
|
redirectChain: Request[]
|
|
|
|
) {
|
2017-08-12 00:24:31 +00:00
|
|
|
this._client = client;
|
2018-09-05 20:02:28 +00:00
|
|
|
this._requestId = event.requestId;
|
2020-05-07 10:54:55 +00:00
|
|
|
this._isNavigationRequest =
|
|
|
|
event.requestId === event.loaderId && event.type === 'Document';
|
2017-08-12 00:24:31 +00:00
|
|
|
this._interceptionId = interceptionId;
|
2017-09-11 23:32:13 +00:00
|
|
|
this._allowInterception = allowInterception;
|
2018-09-05 20:02:28 +00:00
|
|
|
this._url = event.request.url;
|
|
|
|
this._resourceType = event.type.toLowerCase();
|
|
|
|
this._method = event.request.method;
|
|
|
|
this._postData = event.request.postData;
|
2018-01-10 02:47:21 +00:00
|
|
|
this._frame = frame;
|
2018-03-16 00:17:38 +00:00
|
|
|
this._redirectChain = redirectChain;
|
2020-04-30 10:15:27 +00:00
|
|
|
|
2018-09-05 20:02:28 +00:00
|
|
|
for (const key of Object.keys(event.request.headers))
|
|
|
|
this._headers[key.toLowerCase()] = event.request.headers[key];
|
2017-12-19 01:05:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
url(): string {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._url;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
resourceType(): string {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._resourceType;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
method(): string {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._method;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
postData(): string | undefined {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._postData;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
headers(): Record<string, string> {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._headers;
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
response(): Response | null {
|
2017-06-30 01:18:06 +00:00
|
|
|
return this._response;
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
2017-08-12 00:24:31 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
frame(): Frame | null {
|
2018-01-10 02:47:21 +00:00
|
|
|
return this._frame;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
isNavigationRequest(): boolean {
|
2018-06-01 00:38:30 +00:00
|
|
|
return this._isNavigationRequest;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
redirectChain(): Request[] {
|
2018-03-16 00:17:38 +00:00
|
|
|
return this._redirectChain.slice();
|
|
|
|
}
|
|
|
|
|
2017-10-18 00:48:04 +00:00
|
|
|
/**
|
|
|
|
* @return {?{errorText: string}}
|
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
failure(): { errorText: string } | null {
|
|
|
|
if (!this._failureText) return null;
|
2017-10-18 00:48:04 +00:00
|
|
|
return {
|
2020-05-07 10:54:55 +00:00
|
|
|
errorText: this._failureText,
|
2017-10-18 00:48:04 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async continue(
|
|
|
|
overrides: {
|
|
|
|
url?: string;
|
|
|
|
method?: string;
|
|
|
|
postData?: string;
|
|
|
|
headers?: Record<string, string>;
|
|
|
|
} = {}
|
|
|
|
): Promise<void> {
|
2019-01-09 23:47:08 +00:00
|
|
|
// Request interception is not supported for data: urls.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._url.startsWith('data:')) return;
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(this._allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this._interceptionHandled, 'Request is already handled!');
|
2020-05-07 10:54:55 +00:00
|
|
|
const { url, method, postData, headers } = overrides;
|
2017-08-12 00:24:31 +00:00
|
|
|
this._interceptionHandled = true;
|
2020-05-07 10:54:55 +00:00
|
|
|
await this._client
|
|
|
|
.send('Fetch.continueRequest', {
|
|
|
|
requestId: this._interceptionId,
|
|
|
|
url,
|
|
|
|
method,
|
|
|
|
postData,
|
|
|
|
headers: headers ? headersArray(headers) : undefined,
|
|
|
|
})
|
|
|
|
.catch((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);
|
|
|
|
});
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async respond(response: {
|
|
|
|
status: number;
|
|
|
|
headers: Record<string, string>;
|
|
|
|
contentType: string;
|
2020-05-07 10:54:55 +00:00
|
|
|
body: string | Buffer;
|
2020-04-30 10:15:27 +00:00
|
|
|
}): Promise<void> {
|
2017-11-01 21:04:10 +00:00
|
|
|
// Mocking responses for dataURL requests is not currently supported.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._url.startsWith('data:')) return;
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(this._allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this._interceptionHandled, 'Request is already handled!');
|
2017-10-20 23:55:15 +00:00
|
|
|
this._interceptionHandled = true;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const responseBody: Buffer | null =
|
|
|
|
response.body && helper.isString(response.body)
|
|
|
|
? Buffer.from(response.body)
|
|
|
|
: (response.body as Buffer) || null;
|
2017-10-20 23:55:15 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
const responseHeaders: Record<string, string> = {};
|
2017-10-20 23:55:15 +00:00
|
|
|
if (response.headers) {
|
|
|
|
for (const header of Object.keys(response.headers))
|
|
|
|
responseHeaders[header.toLowerCase()] = response.headers[header];
|
|
|
|
}
|
|
|
|
if (response.contentType)
|
|
|
|
responseHeaders['content-type'] = response.contentType;
|
2018-10-03 23:59:49 +00:00
|
|
|
if (responseBody && !('content-length' in responseHeaders))
|
2020-05-07 10:54:55 +00:00
|
|
|
responseHeaders['content-length'] = String(
|
|
|
|
Buffer.byteLength(responseBody)
|
|
|
|
);
|
|
|
|
|
|
|
|
await this._client
|
|
|
|
.send('Fetch.fulfillRequest', {
|
|
|
|
requestId: this._interceptionId,
|
|
|
|
responseCode: response.status || 200,
|
|
|
|
responsePhrase: STATUS_TEXTS[response.status || 200],
|
|
|
|
responseHeaders: headersArray(responseHeaders),
|
|
|
|
body: responseBody ? responseBody.toString('base64') : undefined,
|
|
|
|
})
|
|
|
|
.catch((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);
|
|
|
|
});
|
2017-10-20 23:55:15 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async abort(errorCode: ErrorCode = 'failed'): Promise<void> {
|
2019-01-09 23:47:08 +00:00
|
|
|
// Request interception is not supported for data: urls.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._url.startsWith('data:')) return;
|
2017-10-18 07:26:48 +00:00
|
|
|
const errorReason = errorReasons[errorCode];
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(errorReason, 'Unknown error code: ' + errorCode);
|
|
|
|
assert(this._allowInterception, 'Request Interception is not enabled!');
|
|
|
|
assert(!this._interceptionHandled, 'Request is already handled!');
|
2017-08-12 00:24:31 +00:00
|
|
|
this._interceptionHandled = true;
|
2020-05-07 10:54:55 +00:00
|
|
|
await this._client
|
|
|
|
.send('Fetch.failRequest', {
|
|
|
|
requestId: this._interceptionId,
|
|
|
|
errorReason,
|
|
|
|
})
|
|
|
|
.catch((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);
|
|
|
|
});
|
2017-08-12 00:24:31 +00:00
|
|
|
}
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
2017-10-18 07:26:48 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
type ErrorCode =
|
|
|
|
| 'aborted'
|
|
|
|
| 'accessdenied'
|
|
|
|
| 'addressunreachable'
|
|
|
|
| 'blockedbyclient'
|
|
|
|
| 'blockedbyresponse'
|
|
|
|
| 'connectionaborted'
|
|
|
|
| 'connectionclosed'
|
|
|
|
| 'connectionfailed'
|
|
|
|
| 'connectionrefused'
|
|
|
|
| 'connectionreset'
|
|
|
|
| 'internetdisconnected'
|
|
|
|
| 'namenotresolved'
|
|
|
|
| 'timedout'
|
|
|
|
| 'failed';
|
2020-04-30 10:15:27 +00:00
|
|
|
|
|
|
|
const errorReasons: Record<ErrorCode, Protocol.Network.ErrorReason> = {
|
2020-05-07 10:54:55 +00:00
|
|
|
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',
|
2020-04-30 10:15:27 +00:00
|
|
|
} as const;
|
2017-10-18 07:26:48 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
interface RemoteAddress {
|
2020-05-07 10:54:55 +00:00
|
|
|
ip: string;
|
|
|
|
port: number;
|
2020-04-30 10:15:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Response {
|
|
|
|
_client: CDPSession;
|
|
|
|
_request: Request;
|
|
|
|
_contentPromise: Promise<Buffer> | null = null;
|
|
|
|
_bodyLoadedPromise: Promise<boolean>;
|
|
|
|
_bodyLoadedPromiseFulfill: (x: boolean) => void;
|
|
|
|
_remoteAddress: RemoteAddress;
|
|
|
|
_status: number;
|
|
|
|
_statusText: string;
|
|
|
|
_url: string;
|
|
|
|
_fromDiskCache: boolean;
|
|
|
|
_fromServiceWorker: boolean;
|
|
|
|
_headers: Record<string, string> = {};
|
|
|
|
_securityDetails: SecurityDetails | null;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
|
|
|
request: Request,
|
|
|
|
responsePayload: Protocol.Network.Response
|
|
|
|
) {
|
2017-07-30 00:42:00 +00:00
|
|
|
this._client = client;
|
2017-06-30 01:18:06 +00:00
|
|
|
this._request = request;
|
2017-07-30 00:42:00 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
this._bodyLoadedPromise = new Promise((fulfill) => {
|
2018-04-11 03:22:18 +00:00
|
|
|
this._bodyLoadedPromiseFulfill = fulfill;
|
|
|
|
});
|
|
|
|
|
2018-09-04 19:39:59 +00:00
|
|
|
this._remoteAddress = {
|
|
|
|
ip: responsePayload.remoteIPAddress,
|
|
|
|
port: responsePayload.remotePort,
|
|
|
|
};
|
2018-09-04 19:20:20 +00:00
|
|
|
this._status = responsePayload.status;
|
2018-09-05 20:03:24 +00:00
|
|
|
this._statusText = responsePayload.statusText;
|
2017-12-19 01:05:57 +00:00
|
|
|
this._url = request.url();
|
2018-09-04 19:20:20 +00:00
|
|
|
this._fromDiskCache = !!responsePayload.fromDiskCache;
|
|
|
|
this._fromServiceWorker = !!responsePayload.fromServiceWorker;
|
|
|
|
for (const key of Object.keys(responsePayload.headers))
|
|
|
|
this._headers[key.toLowerCase()] = responsePayload.headers[key];
|
2020-05-07 10:54:55 +00:00
|
|
|
this._securityDetails = responsePayload.securityDetails
|
|
|
|
? new SecurityDetails(responsePayload.securityDetails)
|
|
|
|
: null;
|
2017-12-19 01:05:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
remoteAddress(): RemoteAddress {
|
2018-09-04 19:39:59 +00:00
|
|
|
return this._remoteAddress;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
url(): string {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._url;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
ok(): boolean {
|
2018-03-12 18:34:33 +00:00
|
|
|
return this._status === 0 || (this._status >= 200 && this._status <= 299);
|
2017-12-19 01:05:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
status(): number {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._status;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
statusText(): string {
|
2018-09-05 20:03:24 +00:00
|
|
|
return this._statusText;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
headers(): Record<string, string> {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._headers;
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
securityDetails(): SecurityDetails | null {
|
2018-02-13 19:26:18 +00:00
|
|
|
return this._securityDetails;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
buffer(): Promise<Buffer> {
|
2017-07-30 00:42:00 +00:00
|
|
|
if (!this._contentPromise) {
|
2020-05-07 10:54:55 +00:00
|
|
|
this._contentPromise = this._bodyLoadedPromise.then(async (error) => {
|
|
|
|
if (error) throw error;
|
2017-08-21 23:39:04 +00:00
|
|
|
const response = await this._client.send('Network.getResponseBody', {
|
2020-05-07 10:54:55 +00:00
|
|
|
requestId: this._request._requestId,
|
2017-07-30 00:42:00 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
return Buffer.from(
|
|
|
|
response.body,
|
|
|
|
response.base64Encoded ? 'base64' : 'utf8'
|
|
|
|
);
|
2017-07-30 00:42:00 +00:00
|
|
|
});
|
|
|
|
}
|
2017-07-28 06:11:24 +00:00
|
|
|
return this._contentPromise;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async text(): Promise<string> {
|
2017-08-21 23:39:04 +00:00
|
|
|
const content = await this.buffer();
|
2017-07-28 06:11:24 +00:00
|
|
|
return content.toString('utf8');
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
async json(): Promise<any> {
|
2017-08-21 23:39:04 +00:00
|
|
|
const content = await this.text();
|
2017-07-28 06:11:24 +00:00
|
|
|
return JSON.parse(content);
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
request(): Request {
|
2017-06-30 01:18:06 +00:00
|
|
|
return this._request;
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
2018-02-05 22:59:07 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
fromCache(): boolean {
|
2018-02-05 22:59:07 +00:00
|
|
|
return this._fromDiskCache || this._request._fromMemoryCache;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
fromServiceWorker(): boolean {
|
2018-02-05 22:59:07 +00:00
|
|
|
return this._fromServiceWorker;
|
|
|
|
}
|
2018-09-20 18:31:19 +00:00
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
frame(): Frame | null {
|
2018-09-20 18:31:19 +00:00
|
|
|
return this._request.frame();
|
|
|
|
}
|
2017-06-29 06:09:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
function headersArray(
|
|
|
|
headers: Record<string, string>
|
|
|
|
): Array<{ name: string; value: string }> {
|
2019-04-11 19:02:06 +00:00
|
|
|
const result = [];
|
2019-08-05 22:26:17 +00:00
|
|
|
for (const name in headers) {
|
|
|
|
if (!Object.is(headers[name], undefined))
|
2020-05-07 10:54:55 +00:00
|
|
|
result.push({ name, value: headers[name] + '' });
|
2019-08-05 22:26:17 +00:00
|
|
|
}
|
2019-04-11 19:02:06 +00:00
|
|
|
return result;
|
|
|
|
}
|
2017-10-20 23:55:15 +00:00
|
|
|
|
2019-06-11 04:04:45 +00:00
|
|
|
// List taken from https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml with extra 306 and 418 codes.
|
2019-06-11 00:39:58 +00:00
|
|
|
const STATUS_TEXTS = {
|
|
|
|
'100': 'Continue',
|
|
|
|
'101': 'Switching Protocols',
|
|
|
|
'102': 'Processing',
|
2019-06-11 04:04:45 +00:00
|
|
|
'103': 'Early Hints',
|
2019-06-11 00:39:58 +00:00
|
|
|
'200': 'OK',
|
|
|
|
'201': 'Created',
|
|
|
|
'202': 'Accepted',
|
|
|
|
'203': 'Non-Authoritative Information',
|
|
|
|
'204': 'No Content',
|
2019-06-11 04:04:45 +00:00
|
|
|
'205': 'Reset Content',
|
2019-06-11 00:39:58 +00:00
|
|
|
'206': 'Partial Content',
|
|
|
|
'207': 'Multi-Status',
|
|
|
|
'208': 'Already Reported',
|
2019-06-11 04:04:45 +00:00
|
|
|
'226': 'IM Used',
|
2019-06-11 00:39:58 +00:00
|
|
|
'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',
|
2020-05-07 10:54:55 +00:00
|
|
|
'418': "I'm a teapot",
|
2019-06-11 00:39:58 +00:00
|
|
|
'421': 'Misdirected Request',
|
|
|
|
'422': 'Unprocessable Entity',
|
|
|
|
'423': 'Locked',
|
|
|
|
'424': 'Failed Dependency',
|
2019-06-11 04:04:45 +00:00
|
|
|
'425': 'Too Early',
|
2019-06-11 00:39:58 +00:00
|
|
|
'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',
|
2020-04-30 10:15:27 +00:00
|
|
|
} as const;
|