Miao-Yunzai/.puppeteerrc.cjs

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-08-14 14:04:35 +08:00
const os = require("os")
2023-09-06 13:00:16 +08:00
const { existsSync } = require("fs")
2023-09-04 13:46:08 +08:00
const { execSync } = require("child_process")
const arch = os.arch()
2023-08-14 14:04:35 +08:00
let skipDownload = false
let executablePath
2023-09-04 13:46:08 +08:00
if (process.platform == "linux" || process.platform == "android")
for (const item of [
"chromium",
"chromium-browser",
"chrome",
]) try {
const chromiumPath = execSync(`command -v ${item}`).toString().trim()
if (chromiumPath && existsSync(chromiumPath)) {
2023-09-06 13:00:16 +08:00
executablePath = chromiumPath
2023-09-04 13:46:08 +08:00
break
}
} catch (err) {}
if (!executablePath) for (const item of [
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
2023-09-06 13:00:16 +08:00
"/usr/bin/chrome",
"C:/Program Files/Google/Chrome/Application/chrome.exe",
"C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe",
2023-09-08 12:01:04 +08:00
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge",
2023-09-04 13:46:08 +08:00
]) if (existsSync(item)) {
executablePath = item
break
}
if (executablePath || arch == "arm64" || arch == "aarch64") {
(typeof logger == "object" ? logger : console).info(`[Chromium] ${executablePath}`)
2023-08-14 14:04:35 +08:00
skipDownload = true
2023-06-29 10:41:02 +08:00
}
2023-09-04 13:46:08 +08:00
2023-08-14 14:04:35 +08:00
module.exports = { skipDownload, executablePath }