UNPKG

brave-real-playwright-core

Version:

Brave-optimized Playwright Core (v1.55.0) with comprehensive stealth patches and error stack sanitization

148 lines (147 loc) 5.37 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var ffConnection_exports = {}; __export(ffConnection_exports, { ConnectionEvents: () => ConnectionEvents, FFConnection: () => FFConnection, FFSession: () => FFSession, kBrowserCloseMessageId: () => kBrowserCloseMessageId }); module.exports = __toCommonJS(ffConnection_exports); var import_events = require("events"); var import_debugLogger = require("../utils/debugLogger"); var import_helper = require("../helper"); var import_protocolError = require("../protocolError"); const ConnectionEvents = { Disconnected: Symbol("Disconnected") }; const kBrowserCloseMessageId = -9999; class FFConnection extends import_events.EventEmitter { constructor(transport, protocolLogger, browserLogsCollector) { super(); this.setMaxListeners(0); this._transport = transport; this._protocolLogger = protocolLogger; this._browserLogsCollector = browserLogsCollector; this._lastId = 0; this._sessions = /* @__PURE__ */ new Map(); this._closed = false; this.rootSession = new FFSession(this, "", (message) => this._rawSend(message)); this._sessions.set("", this.rootSession); this._transport.onmessage = this._onMessage.bind(this); this._transport.onclose = this._onClose.bind(this); } nextMessageId() { return ++this._lastId; } _rawSend(message) { this._protocolLogger("send", message); this._transport.send(message); } async _onMessage(message) { this._protocolLogger("receive", message); if (message.id === kBrowserCloseMessageId) return; const session = this._sessions.get(message.sessionId || ""); if (session) session.dispatchMessage(message); } _onClose(reason) { this._closed = true; this._transport.onmessage = void 0; this._transport.onclose = void 0; this._browserDisconnectedLogs = import_helper.helper.formatBrowserLogs(this._browserLogsCollector.recentLogs(), reason); this.rootSession.dispose(); Promise.resolve().then(() => this.emit(ConnectionEvents.Disconnected)); } close() { if (!this._closed) this._transport.close(); } createSession(sessionId) { const session = new FFSession(this, sessionId, (message) => this._rawSend({ ...message, sessionId })); this._sessions.set(sessionId, session); return session; } } class FFSession extends import_events.EventEmitter { constructor(connection, sessionId, rawSend) { super(); this._disposed = false; this._crashed = false; this.setMaxListeners(0); this._callbacks = /* @__PURE__ */ new Map(); this._connection = connection; this._sessionId = sessionId; this._rawSend = rawSend; this.on = super.on; this.addListener = super.addListener; this.off = super.removeListener; this.removeListener = super.removeListener; this.once = super.once; } markAsCrashed() { this._crashed = true; } async send(method, params) { if (this._crashed || this._disposed || this._connection._closed || this._connection._browserDisconnectedLogs) throw new import_protocolError.ProtocolError(this._crashed ? "crashed" : "closed", void 0, this._connection._browserDisconnectedLogs); const id = this._connection.nextMessageId(); this._rawSend({ method, params, id }); return new Promise((resolve, reject) => { this._callbacks.set(id, { resolve, reject, error: new import_protocolError.ProtocolError("error", method) }); }); } sendMayFail(method, params) { return this.send(method, params).catch((error) => import_debugLogger.debugLogger.log("error", error)); } dispatchMessage(object) { if (object.id) { const callback = this._callbacks.get(object.id); if (callback) { this._callbacks.delete(object.id); if (object.error) { callback.error.setMessage(object.error.message); callback.reject(callback.error); } else { callback.resolve(object.result); } } } else { Promise.resolve().then(() => this.emit(object.method, object.params)); } } dispose() { this._disposed = true; this._connection._sessions.delete(this._sessionId); for (const callback of this._callbacks.values()) { callback.error.type = this._crashed ? "crashed" : "closed"; callback.error.logs = this._connection._browserDisconnectedLogs; callback.reject(callback.error); } this._callbacks.clear(); } } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { ConnectionEvents, FFConnection, FFSession, kBrowserCloseMessageId });