Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/invoice_pdf/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
var _, done = false;
for (var i = decorators.length - 1; i >= 0; i--) {
var context = {};
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
if (kind === "accessor") {
if (result === void 0) continue;
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
if (_ = accept(result.get)) descriptor.get = _;
if (_ = accept(result.set)) descriptor.set = _;
if (_ = accept(result.init)) initializers.unshift(_);
}
else if (_ = accept(result)) {
if (kind === "field") initializers.unshift(_);
else descriptor[key] = _;
}
}
if (target) Object.defineProperty(target, contextIn.name, descriptor);
done = true;
};
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
var useValue = arguments.length > 2;
for (var i = 0; i < initializers.length; i++) {
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
}
return useValue ? value : void 0;
};
var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
if (value !== null && value !== void 0) {
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
var dispose;
if (async) {
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
dispose = value[Symbol.asyncDispose];
}
if (dispose === void 0) {
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
dispose = value[Symbol.dispose];
}
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
env.stack.push({ value: value, dispose: dispose, async: async });
}
else if (async) {
env.stack.push({ async: true });
}
return value;
};
var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
return function (env) {
function fail(e) {
env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
env.hasError = true;
}
function next() {
while (env.stack.length) {
var rec = env.stack.pop();
try {
var result = rec.dispose && rec.dispose.call(rec.value);
if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
}
catch (e) {
fail(e);
}
}
if (env.hasError) throw env.error;
}
return next();
};
})(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
var e = new Error(message);
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
});
import { firstValueFrom, from, raceWith } from '../../third_party/rxjs/rxjs.js';
import { Page, } from '../api/Page.js';
import { Accessibility } from '../cdp/Accessibility.js';
import { Coverage } from '../cdp/Coverage.js';
import { EmulationManager } from '../cdp/EmulationManager.js';
import { Tracing } from '../cdp/Tracing.js';
import { UnsupportedOperation } from '../common/Errors.js';
import { EventEmitter } from '../common/EventEmitter.js';
import { evaluationString, parsePDFOptions, timeout } from '../common/util.js';
import { assert } from '../util/assert.js';
import { bubble } from '../util/decorators.js';
import { isErrorLike } from '../util/ErrorLike.js';
import { BidiElementHandle } from './ElementHandle.js';
import { BidiFrame } from './Frame.js';
import { BidiKeyboard, BidiMouse, BidiTouchscreen } from './Input.js';
import { rewriteNavigationError } from './util.js';
/**
* @internal
*/
let BidiPage = (() => {
let _classSuper = Page;
let _instanceExtraInitializers = [];
let _trustedEmitter_decorators;
let _trustedEmitter_initializers = [];
return class BidiPage extends _classSuper {
static {
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
_trustedEmitter_decorators = [bubble()];
__esDecorate(this, null, _trustedEmitter_decorators, { kind: "accessor", name: "trustedEmitter", static: false, private: false, access: { has: obj => "trustedEmitter" in obj, get: obj => obj.trustedEmitter, set: (obj, value) => { obj.trustedEmitter = value; } }, metadata: _metadata }, _trustedEmitter_initializers, _instanceExtraInitializers);
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
}
static from(browserContext, browsingContext) {
const page = new BidiPage(browserContext, browsingContext);
page.#initialize();
return page;
}
#trustedEmitter_accessor_storage = (__runInitializers(this, _instanceExtraInitializers), __runInitializers(this, _trustedEmitter_initializers, new EventEmitter()));
get trustedEmitter() { return this.#trustedEmitter_accessor_storage; }
set trustedEmitter(value) { this.#trustedEmitter_accessor_storage = value; }
#browserContext;
#frame;
#viewport = null;
#workers = new Set();
keyboard;
mouse;
touchscreen;
accessibility;
tracing;
coverage;
#cdpEmulationManager;
_client() {
return this.#frame.client;
}
constructor(browserContext, browsingContext) {
super();
this.#browserContext = browserContext;
this.#frame = BidiFrame.from(this, browsingContext);
this.#cdpEmulationManager = new EmulationManager(this.#frame.client);
this.accessibility = new Accessibility(this.#frame.client);
this.tracing = new Tracing(this.#frame.client);
this.coverage = new Coverage(this.#frame.client);
this.keyboard = new BidiKeyboard(this);
this.mouse = new BidiMouse(this);
this.touchscreen = new BidiTouchscreen(this);
}
#initialize() {
this.#frame.browsingContext.on('closed', () => {
this.trustedEmitter.emit("close" /* PageEvent.Close */, undefined);
this.trustedEmitter.removeAllListeners();
});
this.trustedEmitter.on("workercreated" /* PageEvent.WorkerCreated */, worker => {
this.#workers.add(worker);
});
this.trustedEmitter.on("workerdestroyed" /* PageEvent.WorkerDestroyed */, worker => {
this.#workers.delete(worker);
});
}
async setUserAgent(userAgent, userAgentMetadata) {
// TODO: handle CDP-specific cases such as mprach.
await this._client().send('Network.setUserAgentOverride', {
userAgent: userAgent,
userAgentMetadata: userAgentMetadata,
});
}
async setBypassCSP(enabled) {
// TODO: handle CDP-specific cases such as mprach.
await this._client().send('Page.setBypassCSP', { enabled });
}
async queryObjects(prototypeHandle) {
assert(!prototypeHandle.disposed, 'Prototype JSHandle is disposed!');
assert(prototypeHandle.id, 'Prototype JSHandle must not be referencing primitive value');
const response = await this.#frame.client.send('Runtime.queryObjects', {
prototypeObjectId: prototypeHandle.id,
});
return this.#frame.mainRealm().createHandle({
type: 'array',
handle: response.objects.objectId,
});
}
browser() {
return this.browserContext().browser();
}
browserContext() {
return this.#browserContext;
}
mainFrame() {
return this.#frame;
}
async focusedFrame() {
const env_1 = { stack: [], error: void 0, hasError: false };
try {
const frame = __addDisposableResource(env_1, await this.mainFrame()
.isolatedRealm()
.evaluateHandle(() => {
let frame;
let win = window;
while (win?.document.activeElement instanceof HTMLIFrameElement) {
frame = win.document.activeElement;
win = frame.contentWindow;
}
return frame;
}), false);
if (!(frame instanceof BidiElementHandle)) {
return this.mainFrame();
}
return await frame.contentFrame();
}
catch (e_1) {
env_1.error = e_1;
env_1.hasError = true;
}
finally {
__disposeResources(env_1);
}
}
frames() {
const frames = [this.#frame];
for (const frame of frames) {
frames.push(...frame.childFrames());
}
return frames;
}
isClosed() {
return this.#frame.detached;
}
async close(options) {
try {
await this.#frame.browsingContext.close(options?.runBeforeUnload);
}
catch {
return;
}
}
async reload(options = {}) {
const [response] = await Promise.all([
this.#frame.waitForNavigation(options),
this.#frame.browsingContext.reload(),
]).catch(rewriteNavigationError(this.url(), options.timeout ?? this._timeoutSettings.navigationTimeout()));
return response;
}
setDefaultNavigationTimeout(timeout) {
this._timeoutSettings.setDefaultNavigationTimeout(timeout);
}
setDefaultTimeout(timeout) {
this._timeoutSettings.setDefaultTimeout(timeout);
}
getDefaultTimeout() {
return this._timeoutSettings.timeout();
}
isJavaScriptEnabled() {
return this.#cdpEmulationManager.javascriptEnabled;
}
async setGeolocation(options) {
return await this.#cdpEmulationManager.setGeolocation(options);
}
async setJavaScriptEnabled(enabled) {
return await this.#cdpEmulationManager.setJavaScriptEnabled(enabled);
}
async emulateMediaType(type) {
return await this.#cdpEmulationManager.emulateMediaType(type);
}
async emulateCPUThrottling(factor) {
return await this.#cdpEmulationManager.emulateCPUThrottling(factor);
}
async emulateMediaFeatures(features) {
return await this.#cdpEmulationManager.emulateMediaFeatures(features);
}
async emulateTimezone(timezoneId) {
return await this.#cdpEmulationManager.emulateTimezone(timezoneId);
}
async emulateIdleState(overrides) {
return await this.#cdpEmulationManager.emulateIdleState(overrides);
}
async emulateVisionDeficiency(type) {
return await this.#cdpEmulationManager.emulateVisionDeficiency(type);
}
async setViewport(viewport) {
if (!this.browser().cdpSupported) {
await this.#frame.browsingContext.setViewport({
viewport: viewport.width && viewport.height
? {
width: viewport.width,
height: viewport.height,
}
: null,
devicePixelRatio: viewport.deviceScaleFactor
? viewport.deviceScaleFactor
: null,
});
this.#viewport = viewport;
return;
}
const needsReload = await this.#cdpEmulationManager.emulateViewport(viewport);
this.#viewport = viewport;
if (needsReload) {
await this.reload();
}
}
viewport() {
return this.#viewport;
}
async pdf(options = {}) {
const { timeout: ms = this._timeoutSettings.timeout(), path = undefined } = options;
const { printBackground: background, margin, landscape, width, height, pageRanges: ranges, scale, preferCSSPageSize, } = parsePDFOptions(options, 'cm');
const pageRanges = ranges ? ranges.split(', ') : [];
const data = await firstValueFrom(from(this.#frame.browsingContext.print({
background,
margin,
orientation: landscape ? 'landscape' : 'portrait',
page: {
width,
height,
},
pageRanges,
scale,
shrinkToFit: !preferCSSPageSize,
})).pipe(raceWith(timeout(ms))));
const buffer = Buffer.from(data, 'base64');
await this._maybeWriteBufferToFile(path, buffer);
return buffer;
}
async createPDFStream(options) {
const buffer = await this.pdf(options);
return new ReadableStream({
start(controller) {
controller.enqueue(buffer);
controller.close();
},
});
}
async _screenshot(options) {
const { clip, type, captureBeyondViewport, quality } = options;
if (options.omitBackground !== undefined && options.omitBackground) {
throw new UnsupportedOperation(`BiDi does not support 'omitBackground'.`);
}
if (options.optimizeForSpeed !== undefined && options.optimizeForSpeed) {
throw new UnsupportedOperation(`BiDi does not support 'optimizeForSpeed'.`);
}
if (options.fromSurface !== undefined && !options.fromSurface) {
throw new UnsupportedOperation(`BiDi does not support 'fromSurface'.`);
}
if (clip !== undefined && clip.scale !== undefined && clip.scale !== 1) {
throw new UnsupportedOperation(`BiDi does not support 'scale' in 'clip'.`);
}
let box;
if (clip) {
if (captureBeyondViewport) {
box = clip;
}
else {
// The clip is always with respect to the document coordinates, so we
// need to convert this to viewport coordinates when we aren't capturing
// beyond the viewport.
const [pageLeft, pageTop] = await this.evaluate(() => {
if (!window.visualViewport) {
throw new Error('window.visualViewport is not supported.');
}
return [
window.visualViewport.pageLeft,
window.visualViewport.pageTop,
];
});
box = {
...clip,
x: clip.x - pageLeft,
y: clip.y - pageTop,
};
}
}
const data = await this.#frame.browsingContext.captureScreenshot({
origin: captureBeyondViewport ? 'document' : 'viewport',
format: {
type: `image/${type}`,
...(quality !== undefined ? { quality: quality / 100 } : {}),
},
...(box ? { clip: { type: 'box', ...box } } : {}),
});
return data;
}
async createCDPSession() {
return await this.#frame.createCDPSession();
}
async bringToFront() {
await this.#frame.browsingContext.activate();
}
async evaluateOnNewDocument(pageFunction, ...args) {
const expression = evaluationExpression(pageFunction, ...args);
const script = await this.#frame.browsingContext.addPreloadScript(expression);
return { identifier: script };
}
async removeScriptToEvaluateOnNewDocument(id) {
await this.#frame.browsingContext.removePreloadScript(id);
}
async exposeFunction(name, pptrFunction) {
return await this.mainFrame().exposeFunction(name, 'default' in pptrFunction ? pptrFunction.default : pptrFunction);
}
isDragInterceptionEnabled() {
return false;
}
async setCacheEnabled(enabled) {
// TODO: handle CDP-specific cases such as mprach.
await this._client().send('Network.setCacheDisabled', {
cacheDisabled: !enabled,
});
}
async cookies(...urls) {
const normalizedUrls = (urls.length ? urls : [this.url()]).map(url => {
return new URL(url);
});
const cookies = await this.#frame.browsingContext.getCookies();
return cookies
.map(cookie => {
return bidiToPuppeteerCookie(cookie);
})
.filter(cookie => {
return normalizedUrls.some(url => {
return testUrlMatchCookie(cookie, url);
});
});
}
isServiceWorkerBypassed() {
throw new UnsupportedOperation();
}
target() {
throw new UnsupportedOperation();
}
waitForFileChooser() {
throw new UnsupportedOperation();
}
workers() {
return [...this.#workers];
}
setRequestInterception() {
throw new UnsupportedOperation();
}
setDragInterception() {
throw new UnsupportedOperation();
}
setBypassServiceWorker() {
throw new UnsupportedOperation();
}
setOfflineMode() {
throw new UnsupportedOperation();
}
emulateNetworkConditions() {
throw new UnsupportedOperation();
}
async setCookie(...cookies) {
const pageURL = this.url();
const pageUrlStartsWithHTTP = pageURL.startsWith('http');
for (const cookie of cookies) {
let cookieUrl = cookie.url || '';
if (!cookieUrl && pageUrlStartsWithHTTP) {
cookieUrl = pageURL;
}
assert(cookieUrl !== 'about:blank', `Blank page can not have cookie "${cookie.name}"`);
assert(!String.prototype.startsWith.call(cookieUrl || '', 'data:'), `Data URL page can not have cookie "${cookie.name}"`);
const normalizedUrl = URL.canParse(cookieUrl)
? new URL(cookieUrl)
: undefined;
const domain = cookie.domain ?? normalizedUrl?.hostname;
assert(domain !== undefined, `At least one of the url and domain needs to be specified`);
const bidiCookie = {
domain: domain,
name: cookie.name,
value: {
type: 'string',
value: cookie.value,
},
...(cookie.path !== undefined ? { path: cookie.path } : {}),
...(cookie.httpOnly !== undefined ? { httpOnly: cookie.httpOnly } : {}),
...(cookie.secure !== undefined ? { secure: cookie.secure } : {}),
...(cookie.sameSite !== undefined
? { sameSite: convertCookiesSameSiteCdpToBiDi(cookie.sameSite) }
: {}),
...(cookie.expires !== undefined ? { expiry: cookie.expires } : {}),
// Chrome-specific properties.
...cdpSpecificCookiePropertiesFromPuppeteerToBidi(cookie, 'sameParty', 'sourceScheme', 'priority', 'url'),
};
// TODO: delete cookie before setting them.
// await this.deleteCookie(bidiCookie);
if (cookie.partitionKey !== undefined) {
await this.browserContext().userContext.setCookie(bidiCookie, cookie.partitionKey);
}
else {
await this.#frame.browsingContext.setCookie(bidiCookie);
}
}
}
deleteCookie() {
throw new UnsupportedOperation();
}
removeExposedFunction() {
// TODO: Quick win?
throw new UnsupportedOperation();
}
authenticate() {
throw new UnsupportedOperation();
}
setExtraHTTPHeaders() {
throw new UnsupportedOperation();
}
metrics() {
throw new UnsupportedOperation();
}
async goBack(options = {}) {
return await this.#go(-1, options);
}
async goForward(options = {}) {
return await this.#go(1, options);
}
async #go(delta, options) {
try {
const [response] = await Promise.all([
this.waitForNavigation(options),
this.#frame.browsingContext.traverseHistory(delta),
]);
return response;
}
catch (error) {
// TODO: waitForNavigation should be cancelled if an error happens.
if (isErrorLike(error)) {
if (error.message.includes('no such history entry')) {
return null;
}
}
throw error;
}
}
waitForDevicePrompt() {
throw new UnsupportedOperation();
}
};
})();
export { BidiPage };
function evaluationExpression(fun, ...args) {
return `() => {${evaluationString(fun, ...args)}}`;
}
/**
* Check domains match.
* According to cookies spec, this check should match subdomains as well, but CDP
* implementation does not do that, so this method matches only the exact domains, not
* what is written in the spec:
* https://datatracker.ietf.org/doc/html/rfc6265#section-5.1.3
*/
function testUrlMatchCookieHostname(cookie, normalizedUrl) {
const cookieDomain = cookie.domain.toLowerCase();
const urlHostname = normalizedUrl.hostname.toLowerCase();
return cookieDomain === urlHostname;
}
/**
* Check paths match.
* Spec: https://datatracker.ietf.org/doc/html/rfc6265#section-5.1.4
*/
function testUrlMatchCookiePath(cookie, normalizedUrl) {
const uriPath = normalizedUrl.pathname;
const cookiePath = cookie.path;
if (uriPath === cookiePath) {
// The cookie-path and the request-path are identical.
return true;
}
if (uriPath.startsWith(cookiePath)) {
// The cookie-path is a prefix of the request-path.
if (cookiePath.endsWith('/')) {
// The last character of the cookie-path is %x2F ("/").
return true;
}
if (uriPath[cookiePath.length] === '/') {
// The first character of the request-path that is not included in the cookie-path
// is a %x2F ("/") character.
return true;
}
}
return false;
}
/**
* Checks the cookie matches the URL according to the spec:
*/
function testUrlMatchCookie(cookie, url) {
const normalizedUrl = new URL(url);
assert(cookie !== undefined);
if (!testUrlMatchCookieHostname(cookie, normalizedUrl)) {
return false;
}
return testUrlMatchCookiePath(cookie, normalizedUrl);
}
function bidiToPuppeteerCookie(bidiCookie) {
return {
name: bidiCookie.name,
// Presents binary value as base64 string.
value: bidiCookie.value.value,
domain: bidiCookie.domain,
path: bidiCookie.path,
size: bidiCookie.size,
httpOnly: bidiCookie.httpOnly,
secure: bidiCookie.secure,
sameSite: convertCookiesSameSiteBiDiToCdp(bidiCookie.sameSite),
expires: bidiCookie.expiry ?? -1,
session: bidiCookie.expiry === undefined || bidiCookie.expiry <= 0,
// Extending with CDP-specific properties with `goog:` prefix.
...cdpSpecificCookiePropertiesFromBidiToPuppeteer(bidiCookie, 'sameParty', 'sourceScheme', 'partitionKey', 'partitionKeyOpaque', 'priority'),
};
}
const CDP_SPECIFIC_PREFIX = 'goog:';
/**
* Gets CDP-specific properties from the BiDi cookie and returns them as a new object.
*/
function cdpSpecificCookiePropertiesFromBidiToPuppeteer(bidiCookie, ...propertyNames) {
const result = {};
for (const property of propertyNames) {
if (bidiCookie[CDP_SPECIFIC_PREFIX + property] !== undefined) {
result[property] = bidiCookie[CDP_SPECIFIC_PREFIX + property];
}
}
return result;
}
/**
* Gets CDP-specific properties from the cookie, adds CDP-specific prefixes and returns
* them as a new object which can be used in BiDi.
*/
function cdpSpecificCookiePropertiesFromPuppeteerToBidi(cookieParam, ...propertyNames) {
const result = {};
for (const property of propertyNames) {
if (cookieParam[property] !== undefined) {
result[CDP_SPECIFIC_PREFIX + property] = cookieParam[property];
}
}
return result;
}
function convertCookiesSameSiteBiDiToCdp(sameSite) {
return sameSite === 'strict' ? 'Strict' : sameSite === 'lax' ? 'Lax' : 'None';
}
function convertCookiesSameSiteCdpToBiDi(sameSite) {
return sameSite === 'Strict'
? "strict" /* Bidi.Network.SameSite.Strict */
: sameSite === 'Lax'
? "lax" /* Bidi.Network.SameSite.Lax */
: "none" /* Bidi.Network.SameSite.None */;
}
//# sourceMappingURL=Page.js.map |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0093 ]-- |