2019-12-19 16:53:24 -08:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { CRSession } from './crConnection';
|
|
|
|
import { Page } from '../page';
|
2020-04-20 07:52:26 -07:00
|
|
|
import { assert, helper, RegisteredListener } from '../helper';
|
2019-12-19 16:53:24 -08:00
|
|
|
import { Protocol } from './protocol';
|
|
|
|
import * as network from '../network';
|
|
|
|
import * as frames from '../frames';
|
2019-12-30 14:09:54 -08:00
|
|
|
import { Credentials } from '../types';
|
2020-03-23 21:48:32 -07:00
|
|
|
import { CRPage } from './crPage';
|
2020-04-20 07:52:26 -07:00
|
|
|
import { logError } from '../logger';
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
export class CRNetworkManager {
|
|
|
|
private _client: CRSession;
|
|
|
|
private _page: Page;
|
|
|
|
private _requestIdToRequest = new Map<string, InterceptableRequest>();
|
|
|
|
private _requestIdToRequestWillBeSentEvent = new Map<string, Protocol.Network.requestWillBeSentPayload>();
|
|
|
|
private _credentials: {username: string, password: string} | null = null;
|
|
|
|
private _attemptedAuthentications = new Set<string>();
|
2020-01-31 16:23:15 -08:00
|
|
|
private _userRequestInterceptionEnabled = false;
|
2019-12-19 16:53:24 -08:00
|
|
|
private _protocolRequestInterceptionEnabled = false;
|
2020-04-15 23:18:16 -07:00
|
|
|
private _requestIdToRequestPausedEvent = new Map<string, Protocol.Fetch.requestPausedPayload>();
|
2019-12-19 16:53:24 -08:00
|
|
|
private _eventListeners: RegisteredListener[];
|
|
|
|
|
|
|
|
constructor(client: CRSession, page: Page) {
|
|
|
|
this._client = client;
|
|
|
|
this._page = page;
|
2020-01-21 11:48:48 -08:00
|
|
|
this._eventListeners = this.instrumentNetworkEvents(client);
|
|
|
|
}
|
2019-12-19 16:53:24 -08:00
|
|
|
|
2020-03-10 11:39:35 -07:00
|
|
|
instrumentNetworkEvents(session: CRSession, workerFrame?: frames.Frame): RegisteredListener[] {
|
2020-01-21 11:48:48 -08:00
|
|
|
return [
|
2020-03-10 11:39:35 -07:00
|
|
|
helper.addEventListener(session, 'Fetch.requestPaused', this._onRequestPaused.bind(this, workerFrame)),
|
2020-01-21 11:48:48 -08:00
|
|
|
helper.addEventListener(session, 'Fetch.authRequired', this._onAuthRequired.bind(this)),
|
2020-03-10 11:39:35 -07:00
|
|
|
helper.addEventListener(session, 'Network.requestWillBeSent', this._onRequestWillBeSent.bind(this, workerFrame)),
|
2020-01-21 11:48:48 -08:00
|
|
|
helper.addEventListener(session, 'Network.responseReceived', this._onResponseReceived.bind(this)),
|
|
|
|
helper.addEventListener(session, 'Network.loadingFinished', this._onLoadingFinished.bind(this)),
|
|
|
|
helper.addEventListener(session, 'Network.loadingFailed', this._onLoadingFailed.bind(this)),
|
2019-12-19 16:53:24 -08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
async initialize() {
|
2020-01-31 16:23:15 -08:00
|
|
|
await this._client.send('Network.enable');
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
helper.removeEventListeners(this._eventListeners);
|
|
|
|
}
|
|
|
|
|
2019-12-30 14:09:54 -08:00
|
|
|
async authenticate(credentials: Credentials | null) {
|
2019-12-19 16:53:24 -08:00
|
|
|
this._credentials = credentials;
|
|
|
|
await this._updateProtocolRequestInterception();
|
|
|
|
}
|
|
|
|
|
2020-03-04 17:58:12 -08:00
|
|
|
async setOffline(offline: boolean) {
|
2019-12-19 16:53:24 -08:00
|
|
|
await this._client.send('Network.emulateNetworkConditions', {
|
2020-03-04 17:58:12 -08:00
|
|
|
offline,
|
2019-12-19 16:53:24 -08:00
|
|
|
// values of 0 remove any active throttling. crbug.com/456324#c9
|
|
|
|
latency: 0,
|
|
|
|
downloadThroughput: -1,
|
|
|
|
uploadThroughput: -1
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async setRequestInterception(value: boolean) {
|
2020-01-31 16:23:15 -08:00
|
|
|
this._userRequestInterceptionEnabled = value;
|
2019-12-19 16:53:24 -08:00
|
|
|
await this._updateProtocolRequestInterception();
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
async _updateProtocolRequestInterception() {
|
|
|
|
const enabled = this._userRequestInterceptionEnabled || !!this._credentials;
|
2019-12-19 16:53:24 -08:00
|
|
|
if (enabled === this._protocolRequestInterceptionEnabled)
|
|
|
|
return;
|
|
|
|
this._protocolRequestInterceptionEnabled = enabled;
|
|
|
|
if (enabled) {
|
|
|
|
await Promise.all([
|
2020-03-05 10:09:04 -08:00
|
|
|
this._client.send('Network.setCacheDisabled', { cacheDisabled: true }),
|
2019-12-19 16:53:24 -08:00
|
|
|
this._client.send('Fetch.enable', {
|
|
|
|
handleAuthRequests: true,
|
|
|
|
patterns: [{urlPattern: '*'}],
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
await Promise.all([
|
2020-03-05 10:09:04 -08:00
|
|
|
this._client.send('Network.setCacheDisabled', { cacheDisabled: false }),
|
2019-12-19 16:53:24 -08:00
|
|
|
this._client.send('Fetch.disable')
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-10 11:39:35 -07:00
|
|
|
_onRequestWillBeSent(workerFrame: frames.Frame | undefined, event: Protocol.Network.requestWillBeSentPayload) {
|
2019-12-19 16:53:24 -08:00
|
|
|
// Request interception doesn't happen for data URLs with Network Service.
|
|
|
|
if (this._protocolRequestInterceptionEnabled && !event.request.url.startsWith('data:')) {
|
|
|
|
const requestId = event.requestId;
|
2020-04-15 23:18:16 -07:00
|
|
|
const requestPausedEvent = this._requestIdToRequestPausedEvent.get(requestId);
|
|
|
|
if (requestPausedEvent) {
|
|
|
|
this._onRequest(workerFrame, event, requestPausedEvent);
|
|
|
|
this._requestIdToRequestPausedEvent.delete(requestId);
|
2019-12-19 16:53:24 -08:00
|
|
|
} else {
|
|
|
|
this._requestIdToRequestWillBeSentEvent.set(event.requestId, event);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2020-03-10 11:39:35 -07:00
|
|
|
this._onRequest(workerFrame, event, null);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_onAuthRequired(event: Protocol.Fetch.authRequiredPayload) {
|
2019-12-19 16:53:24 -08:00
|
|
|
let response: 'Default' | 'CancelAuth' | 'ProvideCredentials' = 'Default';
|
|
|
|
if (this._attemptedAuthentications.has(event.requestId)) {
|
|
|
|
response = 'CancelAuth';
|
|
|
|
} else if (this._credentials) {
|
|
|
|
response = 'ProvideCredentials';
|
|
|
|
this._attemptedAuthentications.add(event.requestId);
|
|
|
|
}
|
|
|
|
const {username, password} = this._credentials || {username: undefined, password: undefined};
|
|
|
|
this._client.send('Fetch.continueWithAuth', {
|
|
|
|
requestId: event.requestId,
|
|
|
|
authChallengeResponse: { response, username, password },
|
2020-04-20 07:52:26 -07:00
|
|
|
}).catch(logError(this._page));
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-03-10 11:39:35 -07:00
|
|
|
_onRequestPaused(workerFrame: frames.Frame | undefined, event: Protocol.Fetch.requestPausedPayload) {
|
2020-01-31 16:23:15 -08:00
|
|
|
if (!this._userRequestInterceptionEnabled && this._protocolRequestInterceptionEnabled) {
|
2019-12-19 16:53:24 -08:00
|
|
|
this._client.send('Fetch.continueRequest', {
|
|
|
|
requestId: event.requestId
|
2020-04-20 07:52:26 -07:00
|
|
|
}).catch(logError(this._page));
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
2020-05-15 15:22:29 -07:00
|
|
|
if (!event.networkId) {
|
|
|
|
// Fetch without networkId means that request was not recongnized by inspector, and
|
|
|
|
// it will never receive Network.requestWillBeSent. Most likely, this is an internal request
|
|
|
|
// that we can safely fail.
|
|
|
|
this._client.send('Fetch.failRequest', {
|
|
|
|
requestId: event.requestId,
|
|
|
|
errorReason: 'Aborted',
|
|
|
|
}).catch(logError(this._page));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (event.request.url.startsWith('data:'))
|
2020-01-13 13:33:25 -08:00
|
|
|
return;
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
const requestId = event.networkId;
|
2020-01-13 13:33:25 -08:00
|
|
|
const requestWillBeSentEvent = this._requestIdToRequestWillBeSentEvent.get(requestId);
|
|
|
|
if (requestWillBeSentEvent) {
|
2020-04-15 23:18:16 -07:00
|
|
|
this._onRequest(workerFrame, requestWillBeSentEvent, event);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._requestIdToRequestWillBeSentEvent.delete(requestId);
|
|
|
|
} else {
|
2020-04-15 23:18:16 -07:00
|
|
|
this._requestIdToRequestPausedEvent.set(requestId, event);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-15 23:18:16 -07:00
|
|
|
_onRequest(workerFrame: frames.Frame | undefined, requestWillBeSentEvent: Protocol.Network.requestWillBeSentPayload, requestPausedEvent: Protocol.Fetch.requestPausedPayload | null) {
|
|
|
|
if (requestWillBeSentEvent.request.url.startsWith('data:'))
|
2020-01-16 16:58:02 -08:00
|
|
|
return;
|
2020-03-16 13:31:06 -07:00
|
|
|
let redirectedFrom: network.Request | null = null;
|
2020-04-15 23:18:16 -07:00
|
|
|
if (requestWillBeSentEvent.redirectResponse) {
|
|
|
|
const request = this._requestIdToRequest.get(requestWillBeSentEvent.requestId);
|
2019-12-19 16:53:24 -08:00
|
|
|
// If we connect late to the target, we could have missed the requestWillBeSent event.
|
|
|
|
if (request) {
|
2020-04-15 23:18:16 -07:00
|
|
|
this._handleRequestRedirect(request, requestWillBeSentEvent.redirectResponse);
|
2020-03-16 13:31:06 -07:00
|
|
|
redirectedFrom = request.request;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 23:18:16 -07:00
|
|
|
let frame = requestWillBeSentEvent.frameId ? this._page._frameManager.frame(requestWillBeSentEvent.frameId) : workerFrame;
|
2020-03-20 16:13:42 -07:00
|
|
|
|
|
|
|
// Check if it's main resource request interception (targetId === main frame id).
|
2020-04-15 23:18:16 -07:00
|
|
|
if (!frame && requestPausedEvent && requestWillBeSentEvent.frameId === (this._page._delegate as CRPage)._targetId) {
|
2020-03-20 16:13:42 -07:00
|
|
|
// Main resource request for the page is being intercepted so the Frame is not created
|
|
|
|
// yet. Precreate it here for the purposes of request interception. It will be updated
|
|
|
|
// later as soon as the request contnues and we receive frame tree from the page.
|
2020-04-15 23:18:16 -07:00
|
|
|
frame = this._page._frameManager.frameAttached(requestWillBeSentEvent.frameId, null);
|
2020-03-20 16:13:42 -07:00
|
|
|
}
|
|
|
|
|
2020-03-10 11:39:35 -07:00
|
|
|
if (!frame) {
|
2020-04-15 23:18:16 -07:00
|
|
|
if (requestPausedEvent)
|
2020-04-20 07:52:26 -07:00
|
|
|
this._client.send('Fetch.continueRequest', { requestId: requestPausedEvent.requestId }).catch(logError(this._page));
|
2020-03-10 11:39:35 -07:00
|
|
|
return;
|
|
|
|
}
|
2020-04-15 23:18:16 -07:00
|
|
|
const isNavigationRequest = requestWillBeSentEvent.requestId === requestWillBeSentEvent.loaderId && requestWillBeSentEvent.type === 'Document';
|
|
|
|
const documentId = isNavigationRequest ? requestWillBeSentEvent.loaderId : undefined;
|
2020-04-09 19:03:06 -07:00
|
|
|
if (isNavigationRequest)
|
2020-04-15 23:18:16 -07:00
|
|
|
this._page._frameManager.frameUpdatedDocumentIdForNavigation(requestWillBeSentEvent.frameId!, documentId!);
|
|
|
|
const request = new InterceptableRequest({
|
|
|
|
client: this._client,
|
|
|
|
frame,
|
|
|
|
documentId,
|
|
|
|
allowInterception: this._userRequestInterceptionEnabled,
|
|
|
|
requestWillBeSentEvent,
|
|
|
|
requestPausedEvent,
|
|
|
|
redirectedFrom
|
|
|
|
});
|
|
|
|
this._requestIdToRequest.set(requestWillBeSentEvent.requestId, request);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._page._frameManager.requestStarted(request.request);
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_createResponse(request: InterceptableRequest, responsePayload: Protocol.Network.Response): network.Response {
|
2019-12-19 16:53:24 -08:00
|
|
|
const getResponseBody = async () => {
|
|
|
|
const response = await this._client.send('Network.getResponseBody', { requestId: request._requestId });
|
2020-04-01 14:42:47 -07:00
|
|
|
return Buffer.from(response.body, response.base64Encoded ? 'base64' : 'utf8');
|
2019-12-19 16:53:24 -08:00
|
|
|
};
|
2020-01-23 12:13:58 -08:00
|
|
|
return new network.Response(request.request, responsePayload.status, responsePayload.statusText, headersObject(responsePayload.headers), getResponseBody);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_handleRequestRedirect(request: InterceptableRequest, responsePayload: Protocol.Network.Response) {
|
2019-12-19 16:53:24 -08:00
|
|
|
const response = this._createResponse(request, responsePayload);
|
|
|
|
response._requestFinished(new Error('Response body is unavailable for redirect responses'));
|
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
2020-01-13 13:33:25 -08:00
|
|
|
if (request._interceptionId)
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._page._frameManager.requestReceivedResponse(response);
|
|
|
|
this._page._frameManager.requestFinished(request.request);
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_onResponseReceived(event: Protocol.Network.responseReceivedPayload) {
|
2019-12-19 16:53:24 -08:00
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
|
|
|
// FileUpload sends a response without a matching request.
|
|
|
|
if (!request)
|
|
|
|
return;
|
|
|
|
const response = this._createResponse(request, event.response);
|
|
|
|
this._page._frameManager.requestReceivedResponse(response);
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_onLoadingFinished(event: Protocol.Network.loadingFinishedPayload) {
|
2019-12-19 16:53:24 -08:00
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
|
|
|
// For certain requestIds we never receive requestWillBeSent event.
|
|
|
|
// @see https://crbug.com/750469
|
|
|
|
if (!request)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Under certain conditions we never get the Network.responseReceived
|
|
|
|
// event from protocol. @see https://crbug.com/883475
|
2020-03-13 08:54:19 -07:00
|
|
|
const response = request.request._existingResponse();
|
2020-01-13 13:33:25 -08:00
|
|
|
if (response)
|
|
|
|
response._requestFinished();
|
2019-12-19 16:53:24 -08:00
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
2020-01-13 13:33:25 -08:00
|
|
|
if (request._interceptionId)
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._page._frameManager.requestFinished(request.request);
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:23:15 -08:00
|
|
|
_onLoadingFailed(event: Protocol.Network.loadingFailedPayload) {
|
2019-12-19 16:53:24 -08:00
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
|
|
|
// For certain requestIds we never receive requestWillBeSent event.
|
|
|
|
// @see https://crbug.com/750469
|
|
|
|
if (!request)
|
|
|
|
return;
|
2020-03-13 08:54:19 -07:00
|
|
|
const response = request.request._existingResponse();
|
2019-12-19 16:53:24 -08:00
|
|
|
if (response)
|
|
|
|
response._requestFinished();
|
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
2020-01-13 13:33:25 -08:00
|
|
|
if (request._interceptionId)
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
request.request._setFailureText(event.errorText);
|
2020-01-13 13:33:25 -08:00
|
|
|
this._page._frameManager.requestFailed(request.request, !!event.canceled);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-13 14:30:40 -07:00
|
|
|
class InterceptableRequest implements network.RouteDelegate {
|
2019-12-19 16:53:24 -08:00
|
|
|
readonly request: network.Request;
|
|
|
|
_requestId: string;
|
2020-01-13 13:33:25 -08:00
|
|
|
_interceptionId: string | null;
|
|
|
|
_documentId: string | undefined;
|
2019-12-19 16:53:24 -08:00
|
|
|
private _client: CRSession;
|
|
|
|
|
2020-04-15 23:18:16 -07:00
|
|
|
constructor(options: {
|
|
|
|
client: CRSession;
|
|
|
|
frame: frames.Frame;
|
|
|
|
documentId?: string;
|
|
|
|
allowInterception: boolean;
|
|
|
|
requestWillBeSentEvent: Protocol.Network.requestWillBeSentPayload;
|
|
|
|
requestPausedEvent: Protocol.Fetch.requestPausedPayload | null;
|
|
|
|
redirectedFrom: network.Request | null;
|
|
|
|
}) {
|
|
|
|
const { client, frame, documentId, allowInterception, requestWillBeSentEvent, requestPausedEvent, redirectedFrom } = options;
|
2019-12-19 16:53:24 -08:00
|
|
|
this._client = client;
|
2020-04-15 23:18:16 -07:00
|
|
|
this._requestId = requestWillBeSentEvent.requestId;
|
|
|
|
this._interceptionId = requestPausedEvent && requestPausedEvent.requestId;
|
2019-12-19 16:53:24 -08:00
|
|
|
this._documentId = documentId;
|
|
|
|
|
2020-04-15 23:18:16 -07:00
|
|
|
const {
|
|
|
|
headers,
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
postData = null,
|
|
|
|
} = requestPausedEvent ? requestPausedEvent.request : requestWillBeSentEvent.request;
|
|
|
|
const type = (requestWillBeSentEvent.type || '').toLowerCase();
|
|
|
|
this.request = new network.Request(allowInterception ? this : null, frame, redirectedFrom, documentId, url, type, method, postData, headersObject(headers));
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-01-28 14:29:46 -08:00
|
|
|
async continue(overrides: { method?: string; headers?: network.Headers; postData?: string } = {}) {
|
2019-12-19 16:53:24 -08:00
|
|
|
await this._client.send('Fetch.continueRequest', {
|
2020-01-13 13:33:25 -08:00
|
|
|
requestId: this._interceptionId!,
|
2019-12-30 14:05:28 -08:00
|
|
|
headers: overrides.headers ? headersArray(overrides.headers) : undefined,
|
2020-01-28 14:29:46 -08:00
|
|
|
method: overrides.method,
|
|
|
|
postData: overrides.postData
|
2019-12-19 16:53:24 -08:00
|
|
|
}).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.
|
2020-04-20 07:52:26 -07:00
|
|
|
logError(this.request._page)(error);
|
2019-12-19 16:53:24 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-09 16:12:00 -07:00
|
|
|
async fulfill(response: network.FulfillResponse) {
|
2020-04-01 14:42:47 -07:00
|
|
|
const responseBody = response.body && helper.isString(response.body) ? Buffer.from(response.body) : (response.body || null);
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
const responseHeaders: { [s: string]: string; } = {};
|
|
|
|
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;
|
|
|
|
if (responseBody && !('content-length' in responseHeaders))
|
2020-04-01 14:42:47 -07:00
|
|
|
responseHeaders['content-length'] = String(Buffer.byteLength(responseBody));
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
await this._client.send('Fetch.fulfillRequest', {
|
2020-01-13 13:33:25 -08:00
|
|
|
requestId: this._interceptionId!,
|
2019-12-19 16:53:24 -08:00
|
|
|
responseCode: response.status || 200,
|
2019-12-30 14:05:28 -08:00
|
|
|
responsePhrase: network.STATUS_TEXTS[String(response.status || 200)],
|
2019-12-19 16:53:24 -08:00
|
|
|
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.
|
2020-04-20 07:52:26 -07:00
|
|
|
logError(this.request._page)(error);
|
2019-12-19 16:53:24 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async abort(errorCode: string = 'failed') {
|
|
|
|
const errorReason = errorReasons[errorCode];
|
|
|
|
assert(errorReason, 'Unknown error code: ' + errorCode);
|
|
|
|
await this._client.send('Fetch.failRequest', {
|
2020-01-13 13:33:25 -08:00
|
|
|
requestId: this._interceptionId!,
|
2019-12-19 16:53:24 -08:00
|
|
|
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.
|
2020-04-20 07:52:26 -07:00
|
|
|
logError(this.request._page)(error);
|
2019-12-19 16:53:24 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const errorReasons: { [reason: string]: Protocol.Network.ErrorReason } = {
|
|
|
|
'aborted': 'Aborted',
|
|
|
|
'accessdenied': 'AccessDenied',
|
|
|
|
'addressunreachable': 'AddressUnreachable',
|
|
|
|
'blockedbyclient': 'BlockedByClient',
|
|
|
|
'blockedbyresponse': 'BlockedByResponse',
|
|
|
|
'connectionaborted': 'ConnectionAborted',
|
|
|
|
'connectionclosed': 'ConnectionClosed',
|
|
|
|
'connectionfailed': 'ConnectionFailed',
|
|
|
|
'connectionrefused': 'ConnectionRefused',
|
|
|
|
'connectionreset': 'ConnectionReset',
|
|
|
|
'internetdisconnected': 'InternetDisconnected',
|
|
|
|
'namenotresolved': 'NameNotResolved',
|
|
|
|
'timedout': 'TimedOut',
|
|
|
|
'failed': 'Failed',
|
|
|
|
};
|
|
|
|
|
|
|
|
function headersArray(headers: { [s: string]: string; }): { name: string; value: string; }[] {
|
|
|
|
const result = [];
|
|
|
|
for (const name in headers) {
|
|
|
|
if (!Object.is(headers[name], undefined))
|
|
|
|
result.push({name, value: headers[name] + ''});
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function headersObject(headers: Protocol.Network.Headers): network.Headers {
|
|
|
|
const result: network.Headers = {};
|
|
|
|
for (const key of Object.keys(headers))
|
|
|
|
result[key.toLowerCase()] = headers[key];
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|