| /** |
| * @license |
| * Copyright 2017 Google Inc. |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| import assert from 'node:assert'; |
| import { spawnSync } from 'node:child_process'; |
| import { existsSync, readFileSync } from 'node:fs'; |
| import { mkdir, unlink } from 'node:fs/promises'; |
| import os from 'node:os'; |
| import path from 'node:path'; |
| import { Browser, BrowserPlatform, downloadUrls, } from './browser-data/browser-data.js'; |
| import { Cache, InstalledBrowser } from './Cache.js'; |
| import { debug } from './debug.js'; |
| import { DefaultProvider } from './DefaultProvider.js'; |
| import { detectBrowserPlatform } from './detectPlatform.js'; |
| import { unpackArchive } from './fileUtil.js'; |
| import { downloadFile, headHttpRequest } from './httpUtil.js'; |
| import { ProgressBar } from './ProgressBar.js'; |
| const debugInstall = debug('puppeteer:browsers:install'); |
| const times = new Map(); |
| function debugTime(label) { |
| times.set(label, process.hrtime()); |
| } |
| function debugTimeEnd(label) { |
| const end = process.hrtime(); |
| const start = times.get(label); |
| if (!start) { |
| return; |
| } |
| const duration = end[0] * 1000 + end[1] / 1e6 - (start[0] * 1000 + start[1] / 1e6); // calculate duration in milliseconds |
| debugInstall?.(`Duration for ${label}: ${duration}ms`); |
| } |
| /** |
| * Install using custom provider plugins. |
| * Tries each provider in order until one succeeds. |
| * Falls back to default provider if all custom providers fail. |
| * |
| * @internal |
| */ |
| async function installWithProviders(options) { |
| if (!options.platform) { |
| throw new Error('Platform must be defined'); |
| } |
| const cache = new Cache(options.cacheDir); |
| const browserRoot = cache.browserRoot(options.browser); |
| // Build provider list with proper fallback behavior |
| const providers = [...(options.providers || [])]; |
| // If custom baseUrl is provided, add it as a provider |
| if (options.baseUrl) { |
| providers.push(new DefaultProvider(options.baseUrl)); |
| } |
| // Always add default provider as final fallback |
| // (unless custom baseUrl is provided and forceFallbackForTesting is false) |
| if (!options.baseUrl || options.forceFallbackForTesting) { |
| providers.push(new DefaultProvider()); |
| } |
| const downloadOptions = { |
| browser: options.browser, |
| platform: options.platform, |
| buildId: options.buildId, |
| progressCallback: options.downloadProgressCallback === 'default' |
| ? await makeProgressCallback(options.browser, options.buildIdAlias ?? options.buildId) |
| : options.downloadProgressCallback, |
| }; |
| const errors = []; |
| for (const provider of providers) { |
| try { |
| // Check: does this provider support this browser/platform? |
| if (!(await provider.supports(downloadOptions))) { |
| debugInstall?.(`Provider ${provider.getName()} does not support ${options.browser} on ${options.platform}`); |
| continue; |
| } |
| // Warn if using non-default provider |
| if (!(provider instanceof DefaultProvider)) { |
| debugInstall?.(`⚠️ Using custom downloader: ${provider.getName()}`); |
| debugInstall?.(`⚠️ Puppeteer does not guarantee compatibility with non-default providers`); |
| } |
| debugInstall?.(`Trying provider: ${provider.getName()} for ${options.browser} ${options.buildId}`); |
| // Get download URL from provider |
| const url = await provider.getDownloadUrl(downloadOptions); |
| if (!url) { |
| debugInstall?.(`Provider ${provider.getName()} returned no URL for ${options.browser} ${options.buildId}`); |
| continue; |
| } |
| debugInstall?.(`Successfully got URL from ${provider.getName()}: ${url}`); |
| if (!existsSync(browserRoot)) { |
| await mkdir(browserRoot, { recursive: true }); |
| } |
| // Download and install using the URL from the provider |
| return await installUrl(url, options, provider); |
| } |
| catch (err) { |
| debugInstall?.(`Provider ${provider.getName()} failed: ${err.message}`); |
| errors.push({ |
| providerName: provider.getName(), |
| error: err, |
| }); |
| // Continue to next provider |
| } |
| } |
| // All providers failed |
| const errorDetails = errors |
| .map(e => { |
| return ` - ${e.providerName}: ${e.error.message}`; |
| }) |
| .join('\n'); |
| throw new Error(`All providers failed for ${options.browser} ${options.buildId}:\n${errorDetails}`); |
| } |
| export async function install(options) { |
| options.platform ??= detectBrowserPlatform(); |
| options.unpack ??= true; |
| if (!options.platform) { |
| throw new Error(`Cannot download a binary for the provided platform: ${os.platform()} (${os.arch()})`); |
| } |
| // Always use plugin architecture (uses default provider if none specified) |
| options.providers ??= []; |
| return await installWithProviders(options); |
| } |
| async function installDeps(installedBrowser) { |
| if (process.platform !== 'linux' || |
| installedBrowser.platform !== BrowserPlatform.LINUX) { |
| return; |
| } |
| // Currently, only Debian-like deps are supported. |
| const depsPath = path.join(path.dirname(installedBrowser.executablePath), 'deb.deps'); |
| if (!existsSync(depsPath)) { |
| debugInstall?.(`deb.deps file was not found at ${depsPath}`); |
| return; |
| } |
| const data = readFileSync(depsPath, 'utf-8').split('\n').join(','); |
| if (process.getuid?.() !== 0) { |
| throw new Error('Installing system dependencies requires root privileges'); |
| } |
| let result = spawnSync('apt-get', ['-v']); |
| if (result.status !== 0) { |
| throw new Error('Failed to install system dependencies: apt-get does not seem to be available'); |
| } |
| debugInstall?.(`Trying to install dependencies: ${data}`); |
| result = spawnSync('apt-get', [ |
| 'satisfy', |
| '-y', |
| data, |
| '--no-install-recommends', |
| ]); |
| if (result.status !== 0) { |
| throw new Error(`Failed to install system dependencies: status=${result.status},error=${result.error},stdout=${result.stdout.toString('utf8')},stderr=${result.stderr.toString('utf8')}`); |
| } |
| debugInstall?.(`Installed system dependencies ${data}`); |
| } |
| async function installUrl(url, options, provider) { |
| if (!provider) { |
| throw new Error('Provider is required for installation'); |
| } |
| options.platform ??= detectBrowserPlatform(); |
| if (!options.platform) { |
| throw new Error(`Cannot download a binary for the provided platform: ${os.platform()} (${os.arch()})`); |
| } |
| let downloadProgressCallback = options.downloadProgressCallback; |
| if (downloadProgressCallback === 'default') { |
| downloadProgressCallback = await makeProgressCallback(options.browser, options.buildIdAlias ?? options.buildId); |
| } |
| const fileName = decodeURIComponent(url.toString()).split('/').pop(); |
| assert(fileName, `A malformed download URL was found: ${url}.`); |
| const cache = new Cache(options.cacheDir); |
| const browserRoot = cache.browserRoot(options.browser); |
| const archivePath = path.join(browserRoot, `${options.buildId}-${fileName}`); |
| if (!existsSync(browserRoot)) { |
| await mkdir(browserRoot, { recursive: true }); |
| } |
| if (options.expectedHash) { |
| debugInstall?.(`Using provided checksum for ${fileName}: ${options.expectedHash}`); |
| } |
| if (!options.unpack) { |
| if (existsSync(archivePath)) { |
| return archivePath; |
| } |
| debugInstall?.(`Downloading binary from ${url}`); |
| debugTime('download'); |
| await downloadFile(url, archivePath, downloadProgressCallback, options.expectedHash); |
| debugTimeEnd('download'); |
| return archivePath; |
| } |
| const outputPath = cache.installationDir(options.browser, options.platform, options.buildId); |
| // Get executable path from provider once (used for both cached and new installations) |
| const relativeExecutablePath = await provider.getExecutablePath({ |
| browser: options.browser, |
| buildId: options.buildId, |
| platform: options.platform, |
| }); |
| debugInstall?.(`Using executable path from provider: ${relativeExecutablePath}`); |
| const installedBrowser = new InstalledBrowser(cache, options.browser, options.buildId, options.platform); |
| // Write metadata for the installation (only for non-default providers) |
| if (!(provider instanceof DefaultProvider)) { |
| cache.writeExecutablePath(options.browser, options.platform, options.buildId, relativeExecutablePath); |
| } |
| try { |
| if (existsSync(outputPath)) { |
| if (!existsSync(installedBrowser.executablePath)) { |
| throw new Error(`The browser folder (${outputPath}) exists but the executable (${installedBrowser.executablePath}) is missing`); |
| } |
| await runSetup(installedBrowser); |
| if (options.installDeps) { |
| await installDeps(installedBrowser); |
| } |
| return installedBrowser; |
| } |
| // Check if archive already exists (e.g., from a custom provider) |
| if (!existsSync(archivePath)) { |
| debugInstall?.(`Downloading binary from ${url}`); |
| try { |
| debugTime('download'); |
| await downloadFile(url, archivePath, downloadProgressCallback, options.expectedHash); |
| } |
| finally { |
| debugTimeEnd('download'); |
| } |
| } |
| else { |
| debugInstall?.(`Using existing archive at ${archivePath}`); |
| } |
| debugInstall?.(`Installing ${archivePath} to ${outputPath}`); |
| try { |
| debugTime('extract'); |
| await unpackArchive(archivePath, outputPath); |
| } |
| finally { |
| debugTimeEnd('extract'); |
| } |
| if (options.buildIdAlias) { |
| const metadata = installedBrowser.readMetadata(); |
| metadata.aliases[options.buildIdAlias] = options.buildId; |
| installedBrowser.writeMetadata(metadata); |
| } |
| await runSetup(installedBrowser); |
| if (options.installDeps) { |
| await installDeps(installedBrowser); |
| } |
| return installedBrowser; |
| } |
| finally { |
| if (existsSync(archivePath)) { |
| await unlink(archivePath); |
| } |
| } |
| } |
| async function runSetup(installedBrowser) { |
| // On Windows for Chrome invoke setup.exe to configure sandboxes. |
| if ((installedBrowser.platform === BrowserPlatform.WIN32 || |
| installedBrowser.platform === BrowserPlatform.WIN64) && |
| installedBrowser.browser === Browser.CHROME && |
| installedBrowser.platform === detectBrowserPlatform()) { |
| try { |
| debugTime('permissions'); |
| const browserDir = path.dirname(installedBrowser.executablePath); |
| const setupExePath = path.join(browserDir, 'setup.exe'); |
| if (!existsSync(setupExePath)) { |
| return; |
| } |
| spawnSync(path.join(browserDir, 'setup.exe'), [`--configure-browser-in-directory=` + browserDir], { |
| shell: false, |
| }); |
| // TODO: Handle error here. Currently the setup.exe sometimes |
| // errors although it sets the permissions correctly. |
| } |
| finally { |
| debugTimeEnd('permissions'); |
| } |
| } |
| } |
| /** |
| * |
| * @public |
| */ |
| export async function uninstall(options) { |
| options.platform ??= detectBrowserPlatform(); |
| if (!options.platform) { |
| throw new Error(`Cannot detect the browser platform for: ${os.platform()} (${os.arch()})`); |
| } |
| new Cache(options.cacheDir).uninstall(options.browser, options.platform, options.buildId); |
| } |
| /** |
| * Returns metadata about browsers installed in the cache directory. |
| * |
| * @public |
| */ |
| export async function getInstalledBrowsers(options) { |
| return new Cache(options.cacheDir).getInstalledBrowsers(); |
| } |
| /** |
| * @public |
| */ |
| export async function canDownload(options) { |
| options.platform ??= detectBrowserPlatform(); |
| if (!options.platform) { |
| throw new Error(`Cannot download a binary for the provided platform: ${os.platform()} (${os.arch()})`); |
| } |
| // Always use plugin architecture (uses default provider if none specified) |
| const providers = [ |
| ...(options.providers || []), |
| new DefaultProvider(options.baseUrl), |
| ]; |
| const downloadOptions = { |
| browser: options.browser, |
| platform: options.platform, |
| buildId: options.buildId, |
| }; |
| // Check if any provider can provide a valid, downloadable URL |
| for (const provider of providers) { |
| if (!(await provider.supports(downloadOptions))) { |
| continue; |
| } |
| const url = await provider.getDownloadUrl(downloadOptions); |
| if (url && (await headHttpRequest(url))) { |
| return true; |
| } |
| } |
| return false; |
| } |
| /** |
| * Retrieves a URL for downloading the binary archive of a given browser. |
| * |
| * The archive is bound to the specific platform and build ID specified. |
| * |
| * @public |
| */ |
| export function getDownloadUrl(browser, platform, buildId, baseUrl) { |
| return new URL(downloadUrls[browser](platform, buildId, baseUrl)); |
| } |
| /** |
| * @internal |
| */ |
| export async function makeProgressCallback(browser, buildId) { |
| let ticker; |
| let lastDownloadedBytes = 0; |
| return (downloadedBytes, totalBytes) => { |
| if (!ticker) { |
| ticker = ProgressBar.createBarTicker(`Downloading ${browser} ${buildId} - ${toMegabytes(totalBytes)}`, totalBytes); |
| } |
| const delta = downloadedBytes - lastDownloadedBytes; |
| lastDownloadedBytes = downloadedBytes; |
| ticker(delta); |
| }; |
| } |
| function toMegabytes(bytes) { |
| const mb = bytes / 1000 / 1000; |
| return `${Math.round(mb * 10) / 10} MB`; |
| } |
| //# sourceMappingURL=install.js.map |