smartpuppeteer/ts/smartpuppeteer.classes.incognitobrowser.ts

68 lines
2.0 KiB
TypeScript
Raw Normal View History

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';
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
/**
* 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
*/
public async start(): Promise<void> {
2021-01-08 21:14:01 +00:00
this.status = 'started';
this.browser = await getEnvAwareBrowserInstance();
this.browser.on('disconnected', async () => {
2021-01-08 21:14:01 +00:00
try {
this.browser.removeAllListeners();
} 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
}
/**
* 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
*/
public async stop(): Promise<void> {
2021-01-08 21:14:01 +00:00
this.status = 'stopped';
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
/**
* Rotates the browser instance.
* It closes the current browser and launches a new one.
2021-01-12 14:24:21 +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();
}
/**
* 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> {
if (!this.browser) {
throw new Error('You need to start the IncognitoBrowser instance first');
2021-01-08 21:14:01 +00:00
}
// @ts-ignore
return this.browser.createIncognitoBrowserContext();
2021-01-08 21:14:01 +00:00
}
}