2022-03-24 13:51:12 +01:00
|
|
|
import { getEnvAwareBrowserInstance } from './smartpuppeteer.classes.smartpuppeteer.js';
|
|
|
|
import * as plugins from './smartpuppeteer.plugins.js';
|
2021-01-08 21:14:01 +00:00
|
|
|
|
|
|
|
export class IncognitoBrowser {
|
|
|
|
public status: 'started' | 'stopped' = 'stopped';
|
2025-02-25 17:33:48 +00:00
|
|
|
public browser!: plugins.puppeteer.Browser;
|
2021-01-08 21:14:01 +00:00
|
|
|
|
2021-01-08 21:16:25 +00:00
|
|
|
constructor() {}
|
2021-01-08 21:14:01 +00:00
|
|
|
|
|
|
|
/**
|
2025-02-25 17:33:48 +00:00
|
|
|
* Starts the IncognitoBrowser instance.
|
|
|
|
* It launches the browser using environment-aware options and sets up a listener
|
|
|
|
* to automatically re-launch if the browser disconnects while the status is 'started'.
|
2021-01-08 21:14:01 +00:00
|
|
|
*/
|
2025-02-25 17:33:48 +00:00
|
|
|
public async start(): Promise<void> {
|
2021-01-08 21:14:01 +00:00
|
|
|
this.status = 'started';
|
|
|
|
this.browser = await getEnvAwareBrowserInstance();
|
2025-02-25 17:33:48 +00:00
|
|
|
this.browser.on('disconnected', async () => {
|
2021-01-08 21:14:01 +00:00
|
|
|
try {
|
|
|
|
this.browser.removeAllListeners();
|
2025-02-25 17:33:48 +00:00
|
|
|
} catch (err) {
|
|
|
|
// Optionally handle the error.
|
|
|
|
}
|
2021-01-08 21:14:01 +00:00
|
|
|
if (this.status === 'started') {
|
|
|
|
this.browser = await getEnvAwareBrowserInstance();
|
|
|
|
}
|
2021-01-08 21:16:25 +00:00
|
|
|
});
|
2021-01-08 21:14:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2025-02-25 17:33:48 +00:00
|
|
|
* Stops the IncognitoBrowser instance.
|
|
|
|
* It forcefully kills the browser process (if needed) and then closes the browser.
|
2021-01-08 21:14:01 +00:00
|
|
|
*/
|
2025-02-25 17:33:48 +00:00
|
|
|
public async stop(): Promise<void> {
|
2021-01-08 21:14:01 +00:00
|
|
|
this.status = 'stopped';
|
2025-02-25 17:33:48 +00:00
|
|
|
const pid = this.browser.process()?.pid;
|
|
|
|
if (pid) {
|
|
|
|
plugins.treeKill(pid, 'SIGKILL');
|
|
|
|
}
|
2021-01-08 21:53:17 +00:00
|
|
|
await this.browser.close();
|
2021-01-08 21:14:01 +00:00
|
|
|
}
|
|
|
|
|
2021-01-12 14:24:21 +00:00
|
|
|
/**
|
2025-02-25 17:33:48 +00:00
|
|
|
* Rotates the browser instance.
|
|
|
|
* It closes the current browser and launches a new one.
|
2021-01-12 14:24:21 +00:00
|
|
|
*/
|
2025-02-25 17:33:48 +00:00
|
|
|
public async rotateBrowser(): Promise<void> {
|
|
|
|
try {
|
|
|
|
await this.browser.close();
|
|
|
|
} catch (err) {
|
|
|
|
// Ignore errors if the browser is already closed.
|
|
|
|
}
|
2021-01-12 14:24:21 +00:00
|
|
|
this.browser = await getEnvAwareBrowserInstance();
|
|
|
|
}
|
|
|
|
|
2025-02-25 17:33:48 +00:00
|
|
|
/**
|
|
|
|
* Returns a new incognito browser context.
|
|
|
|
* This uses Puppeteer's createIncognitoBrowserContext() API, which is the
|
|
|
|
* correct method for creating isolated sessions.
|
|
|
|
*/
|
2021-01-08 21:14:01 +00:00
|
|
|
public async getNewIncognitoContext(): Promise<plugins.puppeteer.BrowserContext> {
|
2025-02-25 17:33:48 +00:00
|
|
|
if (!this.browser) {
|
|
|
|
throw new Error('You need to start the IncognitoBrowser instance first');
|
2021-01-08 21:14:01 +00:00
|
|
|
}
|
2025-02-25 17:33:48 +00:00
|
|
|
// @ts-ignore
|
|
|
|
return this.browser.createIncognitoBrowserContext();
|
2021-01-08 21:14:01 +00:00
|
|
|
}
|
2025-02-25 17:33:48 +00:00
|
|
|
}
|