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';
|
|
|
|
import { assert, debugError, helper, RegisteredListener } from '../helper';
|
|
|
|
import { Protocol } from './protocol';
|
|
|
|
import * as network from '../network';
|
|
|
|
import * as frames from '../frames';
|
2020-01-07 11:55:24 -08:00
|
|
|
import * as platform from '../platform';
|
2019-12-30 14:09:54 -08:00
|
|
|
import { Credentials } from '../types';
|
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 _offline = false;
|
|
|
|
private _credentials: {username: string, password: string} | null = null;
|
|
|
|
private _attemptedAuthentications = new Set<string>();
|
|
|
|
private _userRequestInterceptionEnabled = false;
|
|
|
|
private _protocolRequestInterceptionEnabled = false;
|
|
|
|
private _userCacheDisabled = false;
|
|
|
|
private _requestIdToInterceptionId = new Map<string, string>();
|
|
|
|
private _eventListeners: RegisteredListener[];
|
|
|
|
|
|
|
|
constructor(client: CRSession, page: Page) {
|
|
|
|
this._client = client;
|
|
|
|
this._page = page;
|
|
|
|
|
|
|
|
this._eventListeners = [
|
|
|
|
helper.addEventListener(client, 'Fetch.requestPaused', this._onRequestPaused.bind(this)),
|
|
|
|
helper.addEventListener(client, 'Fetch.authRequired', this._onAuthRequired.bind(this)),
|
|
|
|
helper.addEventListener(client, 'Network.requestWillBeSent', this._onRequestWillBeSent.bind(this)),
|
|
|
|
helper.addEventListener(client, 'Network.responseReceived', this._onResponseReceived.bind(this)),
|
|
|
|
helper.addEventListener(client, 'Network.loadingFinished', this._onLoadingFinished.bind(this)),
|
|
|
|
helper.addEventListener(client, 'Network.loadingFailed', this._onLoadingFailed.bind(this)),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
async initialize() {
|
|
|
|
await this._client.send('Network.enable');
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setOfflineMode(value: boolean) {
|
|
|
|
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,
|
|
|
|
uploadThroughput: -1
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async setUserAgent(userAgent: string) {
|
|
|
|
await this._client.send('Network.setUserAgentOverride', { userAgent });
|
|
|
|
}
|
|
|
|
|
|
|
|
async setCacheEnabled(enabled: boolean) {
|
|
|
|
this._userCacheDisabled = !enabled;
|
|
|
|
await this._updateProtocolCacheDisabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setRequestInterception(value: boolean) {
|
|
|
|
this._userRequestInterceptionEnabled = value;
|
|
|
|
await this._updateProtocolRequestInterception();
|
|
|
|
}
|
|
|
|
|
|
|
|
async _updateProtocolRequestInterception() {
|
|
|
|
const enabled = this._userRequestInterceptionEnabled || !!this._credentials;
|
|
|
|
if (enabled === this._protocolRequestInterceptionEnabled)
|
|
|
|
return;
|
|
|
|
this._protocolRequestInterceptionEnabled = enabled;
|
|
|
|
if (enabled) {
|
|
|
|
await Promise.all([
|
|
|
|
this._updateProtocolCacheDisabled(),
|
|
|
|
this._client.send('Fetch.enable', {
|
|
|
|
handleAuthRequests: true,
|
|
|
|
patterns: [{urlPattern: '*'}],
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
await Promise.all([
|
|
|
|
this._updateProtocolCacheDisabled(),
|
|
|
|
this._client.send('Fetch.disable')
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async _updateProtocolCacheDisabled() {
|
|
|
|
await this._client.send('Network.setCacheDisabled', {
|
|
|
|
cacheDisabled: this._userCacheDisabled || this._protocolRequestInterceptionEnabled
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRequestWillBeSent(event: Protocol.Network.requestWillBeSentPayload) {
|
|
|
|
// Request interception doesn't happen for data URLs with Network Service.
|
|
|
|
if (this._protocolRequestInterceptionEnabled && !event.request.url.startsWith('data:')) {
|
|
|
|
const requestId = event.requestId;
|
|
|
|
const interceptionId = this._requestIdToInterceptionId.get(requestId);
|
|
|
|
if (interceptionId) {
|
|
|
|
this._onRequest(event, interceptionId);
|
|
|
|
this._requestIdToInterceptionId.delete(requestId);
|
|
|
|
} else {
|
|
|
|
this._requestIdToRequestWillBeSentEvent.set(event.requestId, event);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._onRequest(event, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onAuthRequired(event: Protocol.Fetch.authRequiredPayload) {
|
|
|
|
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 },
|
|
|
|
}).catch(debugError);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRequestPaused(event: Protocol.Fetch.requestPausedPayload) {
|
|
|
|
if (!this._userRequestInterceptionEnabled && this._protocolRequestInterceptionEnabled) {
|
|
|
|
this._client.send('Fetch.continueRequest', {
|
|
|
|
requestId: event.requestId
|
|
|
|
}).catch(debugError);
|
|
|
|
}
|
|
|
|
|
|
|
|
const requestId = event.networkId;
|
|
|
|
const interceptionId = event.requestId;
|
|
|
|
if (requestId && this._requestIdToRequestWillBeSentEvent.has(requestId)) {
|
|
|
|
const requestWillBeSentEvent = this._requestIdToRequestWillBeSentEvent.get(requestId);
|
|
|
|
this._onRequest(requestWillBeSentEvent, interceptionId);
|
|
|
|
this._requestIdToRequestWillBeSentEvent.delete(requestId);
|
|
|
|
} else {
|
|
|
|
this._requestIdToInterceptionId.set(requestId, interceptionId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRequest(event: Protocol.Network.requestWillBeSentPayload, interceptionId: string | null) {
|
|
|
|
let redirectChain: network.Request[] = [];
|
|
|
|
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) {
|
|
|
|
this._handleRequestRedirect(request, event.redirectResponse);
|
|
|
|
redirectChain = request.request._redirectChain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: how can frame be null here?
|
|
|
|
const frame = event.frameId ? this._page._frameManager.frame(event.frameId) : null;
|
|
|
|
const isNavigationRequest = event.requestId === event.loaderId && event.type === 'Document';
|
|
|
|
const documentId = isNavigationRequest ? event.loaderId : undefined;
|
|
|
|
const request = new InterceptableRequest(this._client, frame, interceptionId, documentId, this._userRequestInterceptionEnabled, event, redirectChain);
|
|
|
|
this._requestIdToRequest.set(event.requestId, request);
|
|
|
|
this._page._frameManager.requestStarted(request.request);
|
|
|
|
}
|
|
|
|
|
|
|
|
_createResponse(request: InterceptableRequest, responsePayload: Protocol.Network.Response): network.Response {
|
|
|
|
const remoteAddress: network.RemoteAddress = { ip: responsePayload.remoteIPAddress, port: responsePayload.remotePort };
|
|
|
|
const getResponseBody = async () => {
|
|
|
|
const response = await this._client.send('Network.getResponseBody', { requestId: request._requestId });
|
2020-01-07 11:55:24 -08:00
|
|
|
return platform.Buffer.from(response.body, response.base64Encoded ? 'base64' : 'utf8');
|
2019-12-19 16:53:24 -08:00
|
|
|
};
|
|
|
|
return new network.Response(request.request, responsePayload.status, responsePayload.statusText, headersObject(responsePayload.headers), remoteAddress, getResponseBody);
|
|
|
|
}
|
|
|
|
|
|
|
|
_handleRequestRedirect(request: InterceptableRequest, responsePayload: Protocol.Network.Response) {
|
|
|
|
const response = this._createResponse(request, responsePayload);
|
|
|
|
request.request._redirectChain.push(request.request);
|
|
|
|
response._requestFinished(new Error('Response body is unavailable for redirect responses'));
|
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
|
|
|
this._page._frameManager.requestReceivedResponse(response);
|
|
|
|
this._page._frameManager.requestFinished(request.request);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onResponseReceived(event: Protocol.Network.responseReceivedPayload) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onLoadingFinished(event: Protocol.Network.loadingFinishedPayload) {
|
|
|
|
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
|
|
|
|
if (request.request.response())
|
|
|
|
request.request.response()._requestFinished();
|
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
|
|
|
this._page._frameManager.requestFinished(request.request);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onLoadingFailed(event: Protocol.Network.loadingFailedPayload) {
|
|
|
|
const request = this._requestIdToRequest.get(event.requestId);
|
|
|
|
// For certain requestIds we never receive requestWillBeSent event.
|
|
|
|
// @see https://crbug.com/750469
|
|
|
|
if (!request)
|
|
|
|
return;
|
|
|
|
const response = request.request.response();
|
|
|
|
if (response)
|
|
|
|
response._requestFinished();
|
|
|
|
this._requestIdToRequest.delete(request._requestId);
|
|
|
|
this._attemptedAuthentications.delete(request._interceptionId);
|
|
|
|
request.request._setFailureText(event.errorText);
|
|
|
|
this._page._frameManager.requestFailed(request.request, event.canceled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 14:05:28 -08:00
|
|
|
class InterceptableRequest implements network.RequestDelegate {
|
2019-12-19 16:53:24 -08:00
|
|
|
readonly request: network.Request;
|
|
|
|
_requestId: string;
|
|
|
|
_interceptionId: string;
|
|
|
|
_documentId: string;
|
|
|
|
private _client: CRSession;
|
|
|
|
|
|
|
|
constructor(client: CRSession, frame: frames.Frame | null, interceptionId: string, documentId: string | undefined, allowInterception: boolean, event: Protocol.Network.requestWillBeSentPayload, redirectChain: network.Request[]) {
|
|
|
|
this._client = client;
|
|
|
|
this._requestId = event.requestId;
|
|
|
|
this._interceptionId = interceptionId;
|
|
|
|
this._documentId = documentId;
|
|
|
|
|
2019-12-30 14:05:28 -08:00
|
|
|
this.request = new network.Request(allowInterception ? this : null, frame, redirectChain, documentId,
|
2019-12-19 16:53:24 -08:00
|
|
|
event.request.url, event.type.toLowerCase(), event.request.method, event.request.postData, headersObject(event.request.headers));
|
|
|
|
}
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
async continue(overrides: { headers?: network.Headers; } = {}) {
|
2019-12-19 16:53:24 -08:00
|
|
|
await this._client.send('Fetch.continueRequest', {
|
|
|
|
requestId: this._interceptionId,
|
2019-12-30 14:05:28 -08:00
|
|
|
headers: overrides.headers ? headersArray(overrides.headers) : undefined,
|
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.
|
|
|
|
debugError(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
async fulfill(response: { status: number; headers: network.Headers; contentType: string; body: (string | platform.BufferType); }) {
|
|
|
|
const responseBody = response.body && helper.isString(response.body) ? platform.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-01-07 11:55:24 -08:00
|
|
|
responseHeaders['content-length'] = String(platform.Buffer.byteLength(responseBody));
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
await this._client.send('Fetch.fulfillRequest', {
|
|
|
|
requestId: this._interceptionId,
|
|
|
|
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.
|
|
|
|
debugError(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async abort(errorCode: string = 'failed') {
|
|
|
|
const errorReason = errorReasons[errorCode];
|
|
|
|
assert(errorReason, 'Unknown error code: ' + errorCode);
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|