2020-04-20 11:02:32 +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-06-23 12:51:38 +00:00
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
import {Protocol} from 'devtools-protocol';
|
|
|
|
import type {Readable} from 'stream';
|
|
|
|
import {isNode} from '../environment.js';
|
2022-08-17 12:39:41 +00:00
|
|
|
import {assert} from '../util/assert.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {CDPSession} from './Connection.js';
|
|
|
|
import {debug} from './Debug.js';
|
2022-06-23 09:31:43 +00:00
|
|
|
import {ElementHandle} from './ElementHandle.js';
|
2022-08-17 12:39:41 +00:00
|
|
|
import {isErrorLike} from '../util/ErrorLike.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {TimeoutError} from './Errors.js';
|
|
|
|
import {CommonEventEmitter} from './EventEmitter.js';
|
2022-06-23 09:31:43 +00:00
|
|
|
import {ExecutionContext} from './ExecutionContext.js';
|
|
|
|
import {JSHandle} from './JSHandle.js';
|
2020-04-20 11:02:32 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-21 09:22:20 +00:00
|
|
|
export const debugError = debug('puppeteer:error');
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function getExceptionMessage(
|
2020-05-07 10:54:55 +00:00
|
|
|
exceptionDetails: Protocol.Runtime.ExceptionDetails
|
|
|
|
): string {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (exceptionDetails.exception) {
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
exceptionDetails.exception.description || exceptionDetails.exception.value
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
let message = exceptionDetails.text;
|
|
|
|
if (exceptionDetails.stackTrace) {
|
|
|
|
for (const callframe of exceptionDetails.stackTrace.callFrames) {
|
2020-05-07 10:54:55 +00:00
|
|
|
const location =
|
|
|
|
callframe.url +
|
|
|
|
':' +
|
|
|
|
callframe.lineNumber +
|
|
|
|
':' +
|
|
|
|
callframe.columnNumber;
|
2020-04-20 11:02:32 +00:00
|
|
|
const functionName = callframe.functionName || '<anonymous>';
|
|
|
|
message += `\n at ${functionName} (${location})`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function valueFromRemoteObject(
|
2020-05-07 10:54:55 +00:00
|
|
|
remoteObject: Protocol.Runtime.RemoteObject
|
|
|
|
): any {
|
2020-04-20 11:02:32 +00:00
|
|
|
assert(!remoteObject.objectId, 'Cannot extract value when objectId is given');
|
|
|
|
if (remoteObject.unserializableValue) {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (remoteObject.type === 'bigint' && typeof BigInt !== 'undefined') {
|
2020-04-20 11:02:32 +00:00
|
|
|
return BigInt(remoteObject.unserializableValue.replace('n', ''));
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
switch (remoteObject.unserializableValue) {
|
|
|
|
case '-0':
|
|
|
|
return -0;
|
|
|
|
case 'NaN':
|
|
|
|
return NaN;
|
|
|
|
case 'Infinity':
|
|
|
|
return Infinity;
|
|
|
|
case '-Infinity':
|
|
|
|
return -Infinity;
|
|
|
|
default:
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
|
|
|
'Unsupported unserializable value: ' +
|
|
|
|
remoteObject.unserializableValue
|
|
|
|
);
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return remoteObject.value;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export async function releaseObject(
|
2020-05-07 10:54:55 +00:00
|
|
|
client: CDPSession,
|
|
|
|
remoteObject: Protocol.Runtime.RemoteObject
|
|
|
|
): Promise<void> {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!remoteObject.objectId) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
await client
|
2022-06-22 13:25:44 +00:00
|
|
|
.send('Runtime.releaseObject', {objectId: remoteObject.objectId})
|
|
|
|
.catch(error => {
|
2020-05-07 10:54:55 +00:00
|
|
|
// Exceptions might happen in case of a page been navigated or closed.
|
|
|
|
// Swallow these since they are harmless and we don't leak anything in this case.
|
|
|
|
debugError(error);
|
|
|
|
});
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-21 09:22:20 +00:00
|
|
|
export interface PuppeteerEventListener {
|
2020-06-15 10:52:19 +00:00
|
|
|
emitter: CommonEventEmitter;
|
2020-04-21 09:22:20 +00:00
|
|
|
eventName: string | symbol;
|
|
|
|
handler: (...args: any[]) => void;
|
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function addEventListener(
|
2020-06-15 10:52:19 +00:00
|
|
|
emitter: CommonEventEmitter,
|
2020-05-07 10:54:55 +00:00
|
|
|
eventName: string | symbol,
|
|
|
|
handler: (...args: any[]) => void
|
|
|
|
): PuppeteerEventListener {
|
2020-04-20 11:02:32 +00:00
|
|
|
emitter.on(eventName, handler);
|
2022-06-22 13:25:44 +00:00
|
|
|
return {emitter, eventName, handler};
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function removeEventListeners(
|
2020-05-07 10:54:55 +00:00
|
|
|
listeners: Array<{
|
2020-06-15 10:52:19 +00:00
|
|
|
emitter: CommonEventEmitter;
|
2020-05-07 10:54:55 +00:00
|
|
|
eventName: string | symbol;
|
|
|
|
handler: (...args: any[]) => void;
|
|
|
|
}>
|
|
|
|
): void {
|
2022-06-14 11:55:35 +00:00
|
|
|
for (const listener of listeners) {
|
2020-04-20 11:02:32 +00:00
|
|
|
listener.emitter.removeListener(listener.eventName, listener.handler);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
listeners.length = 0;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export const isString = (obj: unknown): obj is string => {
|
2020-04-20 11:02:32 +00:00
|
|
|
return typeof obj === 'string' || obj instanceof String;
|
2022-06-14 11:16:21 +00:00
|
|
|
};
|
2020-04-20 11:02:32 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export const isNumber = (obj: unknown): obj is number => {
|
2020-04-20 11:02:32 +00:00
|
|
|
return typeof obj === 'number' || obj instanceof Number;
|
2022-06-14 11:16:21 +00:00
|
|
|
};
|
2020-04-20 11:02:32 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export async function waitForEvent<T>(
|
2020-06-15 10:52:19 +00:00
|
|
|
emitter: CommonEventEmitter,
|
2020-05-07 10:54:55 +00:00
|
|
|
eventName: string | symbol,
|
2020-11-25 10:35:47 +00:00
|
|
|
predicate: (event: T) => Promise<boolean> | boolean,
|
2020-05-07 10:54:55 +00:00
|
|
|
timeout: number,
|
|
|
|
abortPromise: Promise<Error>
|
|
|
|
): Promise<T> {
|
2022-01-31 15:16:32 +00:00
|
|
|
let eventTimeout: NodeJS.Timeout;
|
|
|
|
let resolveCallback: (value: T | PromiseLike<T>) => void;
|
|
|
|
let rejectCallback: (value: Error) => void;
|
2020-04-20 11:02:32 +00:00
|
|
|
const promise = new Promise<T>((resolve, reject) => {
|
|
|
|
resolveCallback = resolve;
|
|
|
|
rejectCallback = reject;
|
|
|
|
});
|
2022-06-22 13:25:44 +00:00
|
|
|
const listener = addEventListener(emitter, eventName, async event => {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!(await predicate(event))) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
resolveCallback(event);
|
|
|
|
});
|
|
|
|
if (timeout) {
|
|
|
|
eventTimeout = setTimeout(() => {
|
2020-05-07 10:54:55 +00:00
|
|
|
rejectCallback(
|
|
|
|
new TimeoutError('Timeout exceeded while waiting for event')
|
|
|
|
);
|
2020-04-20 11:02:32 +00:00
|
|
|
}, timeout);
|
|
|
|
}
|
|
|
|
function cleanup(): void {
|
|
|
|
removeEventListeners([listener]);
|
|
|
|
clearTimeout(eventTimeout);
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
const result = await Promise.race([promise, abortPromise]).then(
|
2022-06-22 13:25:44 +00:00
|
|
|
r => {
|
2020-05-07 10:54:55 +00:00
|
|
|
cleanup();
|
|
|
|
return r;
|
|
|
|
},
|
2022-06-22 13:25:44 +00:00
|
|
|
error => {
|
2020-05-07 10:54:55 +00:00
|
|
|
cleanup();
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
);
|
2022-06-10 13:27:42 +00:00
|
|
|
if (isErrorLike(result)) {
|
|
|
|
throw result;
|
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-23 09:31:43 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-27 07:24:23 +00:00
|
|
|
export function createJSHandle(
|
2022-06-23 09:31:43 +00:00
|
|
|
context: ExecutionContext,
|
|
|
|
remoteObject: Protocol.Runtime.RemoteObject
|
2022-07-06 07:05:37 +00:00
|
|
|
): JSHandle | ElementHandle<Node> {
|
2022-06-23 09:31:43 +00:00
|
|
|
const frame = context.frame();
|
|
|
|
if (remoteObject.subtype === 'node' && frame) {
|
|
|
|
const frameManager = frame._frameManager;
|
|
|
|
return new ElementHandle(
|
|
|
|
context,
|
|
|
|
context._client,
|
|
|
|
remoteObject,
|
|
|
|
frame,
|
|
|
|
frameManager.page(),
|
|
|
|
frameManager
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return new JSHandle(context, context._client, remoteObject);
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function evaluationString(
|
|
|
|
fun: Function | string,
|
|
|
|
...args: unknown[]
|
|
|
|
): string {
|
2020-04-20 11:02:32 +00:00
|
|
|
if (isString(fun)) {
|
|
|
|
assert(args.length === 0, 'Cannot evaluate a string with arguments');
|
|
|
|
return fun;
|
|
|
|
}
|
|
|
|
|
|
|
|
function serializeArgument(arg: unknown): string {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (Object.is(arg, undefined)) {
|
|
|
|
return 'undefined';
|
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
return JSON.stringify(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return `(${fun})(${args.map(serializeArgument).join(',')})`;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function pageBindingInitString(type: string, name: string): string {
|
2020-10-07 08:49:11 +00:00
|
|
|
function addPageBinding(type: string, bindingName: string): void {
|
|
|
|
/* Cast window to any here as we're about to add properties to it
|
|
|
|
* via win[bindingName] which TypeScript doesn't like.
|
|
|
|
*/
|
|
|
|
const win = window as any;
|
|
|
|
const binding = win[bindingName];
|
|
|
|
|
|
|
|
win[bindingName] = (...args: unknown[]): Promise<unknown> => {
|
2022-01-31 15:16:32 +00:00
|
|
|
const me = (window as any)[bindingName];
|
2020-10-07 08:49:11 +00:00
|
|
|
let callbacks = me.callbacks;
|
|
|
|
if (!callbacks) {
|
|
|
|
callbacks = new Map();
|
|
|
|
me.callbacks = callbacks;
|
|
|
|
}
|
|
|
|
const seq = (me.lastSeq || 0) + 1;
|
|
|
|
me.lastSeq = seq;
|
2022-06-15 10:42:21 +00:00
|
|
|
const promise = new Promise((resolve, reject) => {
|
2022-06-22 13:25:44 +00:00
|
|
|
return callbacks.set(seq, {resolve, reject});
|
2022-06-15 10:42:21 +00:00
|
|
|
});
|
2022-06-22 13:25:44 +00:00
|
|
|
binding(JSON.stringify({type, name: bindingName, seq, args}));
|
2020-10-07 08:49:11 +00:00
|
|
|
return promise;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return evaluationString(addPageBinding, type, name);
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function pageBindingDeliverResultString(
|
2020-10-07 08:49:11 +00:00
|
|
|
name: string,
|
|
|
|
seq: number,
|
|
|
|
result: unknown
|
|
|
|
): string {
|
|
|
|
function deliverResult(name: string, seq: number, result: unknown): void {
|
2022-01-31 15:16:32 +00:00
|
|
|
(window as any)[name].callbacks.get(seq).resolve(result);
|
|
|
|
(window as any)[name].callbacks.delete(seq);
|
2020-10-07 08:49:11 +00:00
|
|
|
}
|
|
|
|
return evaluationString(deliverResult, name, seq, result);
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function pageBindingDeliverErrorString(
|
2020-10-07 08:49:11 +00:00
|
|
|
name: string,
|
|
|
|
seq: number,
|
|
|
|
message: string,
|
2022-05-31 14:34:16 +00:00
|
|
|
stack?: string
|
2020-10-07 08:49:11 +00:00
|
|
|
): string {
|
|
|
|
function deliverError(
|
|
|
|
name: string,
|
|
|
|
seq: number,
|
|
|
|
message: string,
|
2022-05-31 14:34:16 +00:00
|
|
|
stack?: string
|
2020-10-07 08:49:11 +00:00
|
|
|
): void {
|
|
|
|
const error = new Error(message);
|
|
|
|
error.stack = stack;
|
2022-01-31 15:16:32 +00:00
|
|
|
(window as any)[name].callbacks.get(seq).reject(error);
|
|
|
|
(window as any)[name].callbacks.delete(seq);
|
2020-10-07 08:49:11 +00:00
|
|
|
}
|
|
|
|
return evaluationString(deliverError, name, seq, message, stack);
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function pageBindingDeliverErrorValueString(
|
2020-10-07 08:49:11 +00:00
|
|
|
name: string,
|
|
|
|
seq: number,
|
|
|
|
value: unknown
|
|
|
|
): string {
|
|
|
|
function deliverErrorValue(name: string, seq: number, value: unknown): void {
|
2022-01-31 15:16:32 +00:00
|
|
|
(window as any)[name].callbacks.get(seq).reject(value);
|
|
|
|
(window as any)[name].callbacks.delete(seq);
|
2020-10-07 08:49:11 +00:00
|
|
|
}
|
|
|
|
return evaluationString(deliverErrorValue, name, seq, value);
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export function makePredicateString(
|
2020-10-07 08:49:11 +00:00
|
|
|
predicate: Function,
|
2022-08-17 12:39:41 +00:00
|
|
|
predicateQueryHandler: Function
|
2020-10-07 08:49:11 +00:00
|
|
|
): string {
|
|
|
|
function checkWaitForOptions(
|
2022-05-25 13:34:11 +00:00
|
|
|
node: Node | null,
|
2020-10-07 08:49:11 +00:00
|
|
|
waitForVisible: boolean,
|
|
|
|
waitForHidden: boolean
|
|
|
|
): Node | null | boolean {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!node) {
|
|
|
|
return waitForHidden;
|
|
|
|
}
|
|
|
|
if (!waitForVisible && !waitForHidden) {
|
|
|
|
return node;
|
|
|
|
}
|
2020-10-07 08:49:11 +00:00
|
|
|
const element =
|
2022-01-31 15:16:32 +00:00
|
|
|
node.nodeType === Node.TEXT_NODE
|
|
|
|
? (node.parentElement as Element)
|
|
|
|
: (node as Element);
|
2020-10-07 08:49:11 +00:00
|
|
|
|
|
|
|
const style = window.getComputedStyle(element);
|
|
|
|
const isVisible =
|
|
|
|
style && style.visibility !== 'hidden' && hasVisibleBoundingBox();
|
|
|
|
const success =
|
|
|
|
waitForVisible === isVisible || waitForHidden === !isVisible;
|
|
|
|
return success ? node : null;
|
|
|
|
|
|
|
|
function hasVisibleBoundingBox(): boolean {
|
|
|
|
const rect = element.getBoundingClientRect();
|
|
|
|
return !!(rect.top || rect.bottom || rect.width || rect.height);
|
|
|
|
}
|
|
|
|
}
|
2022-08-17 12:39:41 +00:00
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
return `
|
|
|
|
(() => {
|
2022-08-17 12:39:41 +00:00
|
|
|
const predicateQueryHandler = ${predicateQueryHandler};
|
2020-10-07 08:49:11 +00:00
|
|
|
const checkWaitForOptions = ${checkWaitForOptions};
|
|
|
|
return (${predicate})(...args)
|
|
|
|
})() `;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export async function waitWithTimeout<T>(
|
2020-05-07 10:54:55 +00:00
|
|
|
promise: Promise<T>,
|
|
|
|
taskName: string,
|
|
|
|
timeout: number
|
|
|
|
): Promise<T> {
|
2022-01-31 15:16:32 +00:00
|
|
|
let reject: (reason?: Error) => void;
|
2020-05-07 10:54:55 +00:00
|
|
|
const timeoutError = new TimeoutError(
|
|
|
|
`waiting for ${taskName} failed: timeout ${timeout}ms exceeded`
|
|
|
|
);
|
2022-06-15 10:42:21 +00:00
|
|
|
const timeoutPromise = new Promise<T>((_res, rej) => {
|
|
|
|
return (reject = rej);
|
|
|
|
});
|
2020-04-20 11:02:32 +00:00
|
|
|
let timeoutTimer = null;
|
2022-06-14 11:55:35 +00:00
|
|
|
if (timeout) {
|
2022-06-15 10:42:21 +00:00
|
|
|
timeoutTimer = setTimeout(() => {
|
|
|
|
return reject(timeoutError);
|
|
|
|
}, timeout);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
try {
|
|
|
|
return await Promise.race([promise, timeoutPromise]);
|
|
|
|
} finally {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (timeoutTimer) {
|
|
|
|
clearTimeout(timeoutTimer);
|
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-07 19:09:07 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
let fs: typeof import('fs') | null = null;
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export async function importFS(): Promise<typeof import('fs')> {
|
|
|
|
if (!fs) {
|
|
|
|
fs = await import('fs');
|
|
|
|
}
|
|
|
|
return fs;
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export async function getReadableAsBuffer(
|
2021-06-23 12:51:38 +00:00
|
|
|
readable: Readable,
|
2020-05-07 10:54:55 +00:00
|
|
|
path?: string
|
2022-01-31 15:16:32 +00:00
|
|
|
): Promise<Buffer | null> {
|
2021-06-23 12:51:38 +00:00
|
|
|
const buffers = [];
|
2022-06-09 11:03:44 +00:00
|
|
|
if (path) {
|
|
|
|
let fs: typeof import('fs').promises;
|
|
|
|
try {
|
2022-07-07 19:09:07 +00:00
|
|
|
fs = (await importFS()).promises;
|
2022-06-09 11:03:44 +00:00
|
|
|
} catch (error) {
|
|
|
|
if (error instanceof TypeError) {
|
|
|
|
throw new Error(
|
|
|
|
'Cannot write to a path outside of a Node-like environment.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
const fileHandle = await fs.open(path, 'w+');
|
|
|
|
for await (const chunk of readable) {
|
|
|
|
buffers.push(chunk);
|
|
|
|
await fileHandle.writeFile(chunk);
|
|
|
|
}
|
|
|
|
await fileHandle.close();
|
|
|
|
} else {
|
|
|
|
for await (const chunk of readable) {
|
|
|
|
buffers.push(chunk);
|
2020-10-19 08:57:15 +00:00
|
|
|
}
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
try {
|
2022-06-09 11:03:44 +00:00
|
|
|
return Buffer.concat(buffers);
|
|
|
|
} catch (error) {
|
|
|
|
return null;
|
2020-04-20 11:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-06-14 11:16:21 +00:00
|
|
|
export async function getReadableFromProtocolStream(
|
2021-06-23 12:51:38 +00:00
|
|
|
client: CDPSession,
|
|
|
|
handle: string
|
|
|
|
): Promise<Readable> {
|
2022-06-09 11:03:44 +00:00
|
|
|
// TODO: Once Node 18 becomes the lowest supported version, we can migrate to
|
|
|
|
// ReadableStream.
|
2021-06-23 12:51:38 +00:00
|
|
|
if (!isNode) {
|
|
|
|
throw new Error('Cannot create a stream outside of Node.js environment.');
|
|
|
|
}
|
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
const {Readable} = await import('stream');
|
2021-06-23 12:51:38 +00:00
|
|
|
|
|
|
|
let eof = false;
|
|
|
|
return new Readable({
|
2022-03-18 14:08:25 +00:00
|
|
|
async read(size: number) {
|
2021-06-23 12:51:38 +00:00
|
|
|
if (eof) {
|
2022-05-31 14:34:16 +00:00
|
|
|
return;
|
2021-06-23 12:51:38 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
const response = await client.send('IO.read', {handle, size});
|
2021-06-23 12:51:38 +00:00
|
|
|
this.push(response.data, response.base64Encoded ? 'base64' : undefined);
|
|
|
|
if (response.eof) {
|
|
|
|
eof = true;
|
2022-06-22 13:25:44 +00:00
|
|
|
await client.send('IO.close', {handle});
|
2021-10-27 13:49:27 +00:00
|
|
|
this.push(null);
|
2021-06-23 12:51:38 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|