Spaces:
Sleeping
Sleeping
File size: 13,934 Bytes
c2b7eb3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | "use strict";
/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveDownloadUrl = resolveDownloadUrl;
exports.resolveDownloadPath = resolveDownloadPath;
exports.relativeExecutablePath = relativeExecutablePath;
exports.changeBaseVersionUrlForTesting = changeBaseVersionUrlForTesting;
exports.resetBaseVersionUrlForTesting = resetBaseVersionUrlForTesting;
exports.getLastKnownGoodReleaseForChannel = getLastKnownGoodReleaseForChannel;
exports.getLastKnownGoodReleaseForMilestone = getLastKnownGoodReleaseForMilestone;
exports.getLastKnownGoodReleaseForBuild = getLastKnownGoodReleaseForBuild;
exports.resolveBuildId = resolveBuildId;
exports.resolveSystemExecutablePaths = resolveSystemExecutablePaths;
exports.resolveDefaultUserDataDir = resolveDefaultUserDataDir;
exports.compareVersions = compareVersions;
const node_child_process_1 = require("node:child_process");
const node_os_1 = __importDefault(require("node:os"));
const node_path_1 = __importDefault(require("node:path"));
const semver_1 = __importDefault(require("semver"));
const httpUtil_js_1 = require("../httpUtil.js");
const types_js_1 = require("./types.js");
function folder(platform) {
switch (platform) {
case types_js_1.BrowserPlatform.LINUX_ARM:
case types_js_1.BrowserPlatform.LINUX:
return 'linux64';
case types_js_1.BrowserPlatform.MAC_ARM:
return 'mac-arm64';
case types_js_1.BrowserPlatform.MAC:
return 'mac-x64';
case types_js_1.BrowserPlatform.WIN32:
return 'win32';
case types_js_1.BrowserPlatform.WIN64:
return 'win64';
}
}
function resolveDownloadUrl(platform, buildId, baseUrl = 'https://storage.googleapis.com/chrome-for-testing-public') {
return `${baseUrl}/${resolveDownloadPath(platform, buildId).join('/')}`;
}
function resolveDownloadPath(platform, buildId) {
return [buildId, folder(platform), `chrome-${folder(platform)}.zip`];
}
function relativeExecutablePath(platform, _buildId) {
switch (platform) {
case types_js_1.BrowserPlatform.MAC:
case types_js_1.BrowserPlatform.MAC_ARM:
return node_path_1.default.join('chrome-' + folder(platform), 'Google Chrome for Testing.app', 'Contents', 'MacOS', 'Google Chrome for Testing');
case types_js_1.BrowserPlatform.LINUX_ARM:
case types_js_1.BrowserPlatform.LINUX:
return node_path_1.default.join('chrome-linux64', 'chrome');
case types_js_1.BrowserPlatform.WIN32:
case types_js_1.BrowserPlatform.WIN64:
return node_path_1.default.join('chrome-' + folder(platform), 'chrome.exe');
}
}
let baseVersionUrl = 'https://googlechromelabs.github.io/chrome-for-testing';
function changeBaseVersionUrlForTesting(url) {
baseVersionUrl = url;
}
function resetBaseVersionUrlForTesting() {
baseVersionUrl = 'https://googlechromelabs.github.io/chrome-for-testing';
}
async function getLastKnownGoodReleaseForChannel(channel) {
const data = (await (0, httpUtil_js_1.getJSON)(new URL(`${baseVersionUrl}/last-known-good-versions.json`)));
for (const channel of Object.keys(data.channels)) {
data.channels[channel.toLowerCase()] = data.channels[channel];
delete data.channels[channel];
}
return data.channels[channel];
}
async function getLastKnownGoodReleaseForMilestone(milestone) {
const data = (await (0, httpUtil_js_1.getJSON)(new URL(`${baseVersionUrl}/latest-versions-per-milestone.json`)));
return data.milestones[milestone];
}
async function getLastKnownGoodReleaseForBuild(
/**
* @example `112.0.23`,
*/
buildPrefix) {
const data = (await (0, httpUtil_js_1.getJSON)(new URL(`${baseVersionUrl}/latest-patch-versions-per-build.json`)));
return data.builds[buildPrefix];
}
async function resolveBuildId(channel) {
if (Object.values(types_js_1.ChromeReleaseChannel).includes(channel)) {
return (await getLastKnownGoodReleaseForChannel(channel)).version;
}
if (channel.match(/^\d+$/)) {
// Potentially a milestone.
return (await getLastKnownGoodReleaseForMilestone(channel))?.version;
}
if (channel.match(/^\d+\.\d+\.\d+$/)) {
// Potentially a build prefix without the patch version.
return (await getLastKnownGoodReleaseForBuild(channel))?.version;
}
return;
}
const WINDOWS_ENV_PARAM_NAMES = [
'PROGRAMFILES',
'ProgramW6432',
'ProgramFiles(x86)',
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/installer/mini_installer/README.md
'LOCALAPPDATA',
];
function getChromeWindowsLocation(channel, locationsPrefixes) {
if (locationsPrefixes.size === 0) {
throw new Error('Non of the common Windows Env variables were set');
}
let suffix;
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
suffix = 'Google\\Chrome\\Application\\chrome.exe';
break;
case types_js_1.ChromeReleaseChannel.BETA:
suffix = 'Google\\Chrome Beta\\Application\\chrome.exe';
break;
case types_js_1.ChromeReleaseChannel.CANARY:
suffix = 'Google\\Chrome SxS\\Application\\chrome.exe';
break;
case types_js_1.ChromeReleaseChannel.DEV:
suffix = 'Google\\Chrome Dev\\Application\\chrome.exe';
break;
}
return [...locationsPrefixes.values()].map(l => {
return node_path_1.default.win32.join(l, suffix);
});
}
function getWslVariable(variable) {
try {
// The Windows env for the paths are not passed down
// to WSL, so we evoke `cmd.exe` which is usually on the PATH
// from which the env can be access with all uppercase names.
// The return value is a Windows Path - `C:\Program Files`.
const result = (0, node_child_process_1.execSync)(`cmd.exe /c echo %${variable.toLocaleUpperCase()}%`, {
// We need to ignore the stderr as cmd.exe
// prints a message about wrong UNC path not supported.
stdio: ['ignore', 'pipe', 'ignore'],
encoding: 'utf-8',
}).trim();
if (result) {
return result;
}
}
catch { }
return;
}
function getWslLocation(channel) {
const wslVersion = (0, node_child_process_1.execSync)('wslinfo --version', {
stdio: ['ignore', 'pipe', 'ignore'],
encoding: 'utf-8',
}).trim();
if (!wslVersion) {
throw new Error('Not in WSL or unsupported version of WSL.');
}
const wslPrefixes = new Set();
for (const name of WINDOWS_ENV_PARAM_NAMES) {
const wslPrefix = getWslVariable(name);
if (wslPrefix) {
wslPrefixes.add(wslPrefix);
}
}
const windowsPath = getChromeWindowsLocation(channel, wslPrefixes);
return windowsPath.map(path => {
// The above command returned the Windows paths `C:\Program Files\...\chrome.exe`
// Use the `wslpath` utility tool to transform into the mounted disk
return (0, node_child_process_1.execSync)(`wslpath "${path}"`).toString().trim();
});
}
function getChromeLinuxOrWslLocation(channel) {
const locations = [];
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
locations.push('/opt/google/chrome/chrome');
break;
case types_js_1.ChromeReleaseChannel.BETA:
locations.push('/opt/google/chrome-beta/chrome');
break;
case types_js_1.ChromeReleaseChannel.CANARY:
locations.push('/opt/google/chrome-canary/chrome');
break;
case types_js_1.ChromeReleaseChannel.DEV:
locations.push('/opt/google/chrome-unstable/chrome');
break;
}
try {
const wslPath = getWslLocation(channel);
if (wslPath) {
locations.push(...wslPath);
}
}
catch {
// Ignore WSL errors
}
return locations;
}
function resolveSystemExecutablePaths(platform, channel) {
switch (platform) {
case types_js_1.BrowserPlatform.WIN64:
case types_js_1.BrowserPlatform.WIN32:
const prefixLocation = new Set(WINDOWS_ENV_PARAM_NAMES.map(name => {
return process.env[name];
}).filter((l) => {
return !!l;
}));
// Fallbacks in case env vars are misconfigured.
prefixLocation.add('C:\\Program Files');
prefixLocation.add('C:\\Program Files (x86)');
prefixLocation.add('D:\\Program Files');
prefixLocation.add('D:\\Program Files (x86)');
return getChromeWindowsLocation(channel, prefixLocation);
case types_js_1.BrowserPlatform.MAC_ARM:
case types_js_1.BrowserPlatform.MAC:
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
return [
'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
];
case types_js_1.ChromeReleaseChannel.BETA:
return [
'/Applications/Google Chrome Beta.app/Contents/MacOS/Google Chrome Beta',
];
case types_js_1.ChromeReleaseChannel.CANARY:
return [
'/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary',
];
case types_js_1.ChromeReleaseChannel.DEV:
return [
'/Applications/Google Chrome Dev.app/Contents/MacOS/Google Chrome Dev',
];
}
case types_js_1.BrowserPlatform.LINUX_ARM:
case types_js_1.BrowserPlatform.LINUX:
return getChromeLinuxOrWslLocation(channel);
}
}
function resolveDefaultUserDataDir(platform, channel) {
switch (platform) {
case types_js_1.BrowserPlatform.WIN64:
case types_js_1.BrowserPlatform.WIN32:
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/common/chrome_paths_win.cc;l=42;drc=4c86c7940a47c36b8bf52c134483ef2da86caa62
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
return node_path_1.default.join(getLocalAppDataWin(), 'Google', 'Chrome', 'User Data');
case types_js_1.ChromeReleaseChannel.BETA:
return node_path_1.default.join(getLocalAppDataWin(), 'Google', 'Chrome Beta', 'User Data');
case types_js_1.ChromeReleaseChannel.CANARY:
return node_path_1.default.join(getLocalAppDataWin(), 'Google', 'Chrome SxS', 'User Data');
case types_js_1.ChromeReleaseChannel.DEV:
return node_path_1.default.join(getLocalAppDataWin(), 'Google', 'Chrome Dev', 'User Data');
}
case types_js_1.BrowserPlatform.MAC_ARM:
case types_js_1.BrowserPlatform.MAC:
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/common/chrome_paths_mac.mm;l=86;drc=4c86c7940a47c36b8bf52c134483ef2da86caa62
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
return node_path_1.default.join(getBaseUserDataDirPathMac(), 'Chrome');
case types_js_1.ChromeReleaseChannel.BETA:
return node_path_1.default.join(getBaseUserDataDirPathMac(), 'Chrome Beta');
case types_js_1.ChromeReleaseChannel.DEV:
return node_path_1.default.join(getBaseUserDataDirPathMac(), 'Chrome Dev');
case types_js_1.ChromeReleaseChannel.CANARY:
return node_path_1.default.join(getBaseUserDataDirPathMac(), 'Chrome Canary');
}
case types_js_1.BrowserPlatform.LINUX_ARM:
case types_js_1.BrowserPlatform.LINUX:
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/common/chrome_paths_linux.cc;l=80;drc=4c86c7940a47c36b8bf52c134483ef2da86caa62
switch (channel) {
case types_js_1.ChromeReleaseChannel.STABLE:
return node_path_1.default.join(getConfigHomeLinux(), 'google-chrome');
case types_js_1.ChromeReleaseChannel.BETA:
return node_path_1.default.join(getConfigHomeLinux(), 'google-chrome-beta');
case types_js_1.ChromeReleaseChannel.CANARY:
return node_path_1.default.join(getConfigHomeLinux(), 'google-chrome-canary');
case types_js_1.ChromeReleaseChannel.DEV:
return node_path_1.default.join(getConfigHomeLinux(), 'google-chrome-unstable');
}
}
}
function getLocalAppDataWin() {
return (process.env['LOCALAPPDATA'] || node_path_1.default.join(node_os_1.default.homedir(), 'AppData', 'Local'));
}
function getConfigHomeLinux() {
return (process.env['CHROME_CONFIG_HOME'] ||
process.env['XDG_CONFIG_HOME'] ||
node_path_1.default.join(node_os_1.default.homedir(), '.config'));
}
function getBaseUserDataDirPathMac() {
return node_path_1.default.join(node_os_1.default.homedir(), 'Library', 'Application Support', 'Google');
}
function compareVersions(a, b) {
if (!semver_1.default.valid(a)) {
throw new Error(`Version ${a} is not a valid semver version`);
}
if (!semver_1.default.valid(b)) {
throw new Error(`Version ${b} is not a valid semver version`);
}
if (semver_1.default.gt(a, b)) {
return 1;
}
else if (semver_1.default.lt(a, b)) {
return -1;
}
else {
return 0;
}
}
//# sourceMappingURL=chrome.js.map |