2023-02-15 19:41:22 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2023 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-02-14 15:30:41 +00:00
|
|
|
import ProgressBar from 'progress';
|
2023-02-15 23:09:31 +00:00
|
|
|
import yargs from 'yargs';
|
2023-02-14 15:30:41 +00:00
|
|
|
import {hideBin} from 'yargs/helpers';
|
2023-02-15 23:09:31 +00:00
|
|
|
|
2023-03-14 11:01:11 +00:00
|
|
|
import {
|
2023-03-16 07:16:44 +00:00
|
|
|
resolveBuildId,
|
2023-03-14 11:01:11 +00:00
|
|
|
Browser,
|
|
|
|
BrowserPlatform,
|
|
|
|
ChromeReleaseChannel,
|
2023-03-16 07:16:44 +00:00
|
|
|
} from './browser-data/browser-data.js';
|
2023-02-21 14:19:06 +00:00
|
|
|
import {detectBrowserPlatform} from './detectPlatform.js';
|
2023-02-14 15:30:41 +00:00
|
|
|
import {fetch} from './fetch.js';
|
2023-03-14 11:01:11 +00:00
|
|
|
import {
|
|
|
|
computeExecutablePath,
|
|
|
|
computeSystemExecutablePath,
|
|
|
|
launch,
|
|
|
|
} from './launcher.js';
|
2023-02-14 15:30:41 +00:00
|
|
|
|
2023-02-17 06:11:50 +00:00
|
|
|
type InstallArgs = {
|
2023-02-14 15:30:41 +00:00
|
|
|
browser: {
|
|
|
|
name: Browser;
|
2023-02-21 16:15:49 +00:00
|
|
|
buildId: string;
|
2023-02-14 15:30:41 +00:00
|
|
|
};
|
|
|
|
path?: string;
|
|
|
|
platform?: BrowserPlatform;
|
|
|
|
};
|
|
|
|
|
2023-02-17 06:11:50 +00:00
|
|
|
type LaunchArgs = {
|
|
|
|
browser: {
|
|
|
|
name: Browser;
|
2023-02-21 16:15:49 +00:00
|
|
|
buildId: string;
|
2023-02-17 06:11:50 +00:00
|
|
|
};
|
|
|
|
path?: string;
|
|
|
|
platform?: BrowserPlatform;
|
|
|
|
detached: boolean;
|
2023-03-14 11:01:11 +00:00
|
|
|
system: boolean;
|
2023-02-17 06:11:50 +00:00
|
|
|
};
|
|
|
|
|
2023-02-14 15:30:41 +00:00
|
|
|
export class CLI {
|
|
|
|
#cachePath;
|
|
|
|
|
|
|
|
constructor(cachePath = process.cwd()) {
|
|
|
|
this.#cachePath = cachePath;
|
|
|
|
}
|
|
|
|
|
2023-03-08 12:36:31 +00:00
|
|
|
#defineBrowserParameter(yargs: yargs.Argv<unknown>): void {
|
|
|
|
yargs.positional('browser', {
|
|
|
|
description: 'The browser version',
|
|
|
|
type: 'string',
|
|
|
|
coerce: (opt): InstallArgs['browser'] => {
|
|
|
|
return {
|
|
|
|
name: this.#parseBrowser(opt),
|
|
|
|
buildId: this.#parseBuildId(opt),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#definePlatformParameter(yargs: yargs.Argv<unknown>): void {
|
|
|
|
yargs.option('platform', {
|
|
|
|
type: 'string',
|
|
|
|
desc: 'Platform that the binary needs to be compatible with.',
|
|
|
|
choices: Object.values(BrowserPlatform),
|
|
|
|
defaultDescription: 'Auto-detected by default.',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#definePathParameter(yargs: yargs.Argv<unknown>): void {
|
|
|
|
yargs.option('path', {
|
|
|
|
type: 'string',
|
|
|
|
desc: 'Path to the root folder for the browser downloads and installation',
|
|
|
|
default: process.cwd(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-02-14 15:30:41 +00:00
|
|
|
async run(argv: string[]): Promise<void> {
|
|
|
|
await yargs(hideBin(argv))
|
|
|
|
.command(
|
2023-02-17 06:11:50 +00:00
|
|
|
'install <browser>',
|
|
|
|
'Download and install the specified browser',
|
2023-02-14 15:30:41 +00:00
|
|
|
yargs => {
|
2023-03-08 12:36:31 +00:00
|
|
|
this.#defineBrowserParameter(yargs);
|
|
|
|
this.#definePlatformParameter(yargs);
|
|
|
|
this.#definePathParameter(yargs);
|
2023-02-14 15:30:41 +00:00
|
|
|
},
|
|
|
|
async argv => {
|
2023-02-17 06:11:50 +00:00
|
|
|
const args = argv as unknown as InstallArgs;
|
2023-02-21 14:19:06 +00:00
|
|
|
args.platform ??= detectBrowserPlatform();
|
|
|
|
if (!args.platform) {
|
|
|
|
throw new Error(`Could not resolve the current platform`);
|
|
|
|
}
|
2023-02-21 16:15:49 +00:00
|
|
|
args.browser.buildId = await resolveBuildId(
|
2023-02-21 07:27:02 +00:00
|
|
|
args.browser.name,
|
2023-02-21 14:19:06 +00:00
|
|
|
args.platform,
|
2023-02-21 16:15:49 +00:00
|
|
|
args.browser.buildId
|
2023-02-21 07:27:02 +00:00
|
|
|
);
|
2023-02-14 15:30:41 +00:00
|
|
|
await fetch({
|
|
|
|
browser: args.browser.name,
|
2023-02-21 16:15:49 +00:00
|
|
|
buildId: args.browser.buildId,
|
2023-02-14 15:30:41 +00:00
|
|
|
platform: args.platform,
|
2023-02-15 19:41:22 +00:00
|
|
|
cacheDir: args.path ?? this.#cachePath,
|
|
|
|
downloadProgressCallback: this.#makeProgressCallback(
|
2023-02-14 15:30:41 +00:00
|
|
|
args.browser.name,
|
2023-02-21 16:15:49 +00:00
|
|
|
args.browser.buildId
|
2023-02-14 15:30:41 +00:00
|
|
|
),
|
|
|
|
});
|
2023-02-21 07:27:02 +00:00
|
|
|
console.log(
|
2023-03-07 15:30:32 +00:00
|
|
|
`${args.browser.name}@${
|
|
|
|
args.browser.buildId
|
|
|
|
} ${computeExecutablePath({
|
|
|
|
browser: args.browser.name,
|
|
|
|
buildId: args.browser.buildId,
|
|
|
|
cacheDir: args.path ?? this.#cachePath,
|
|
|
|
platform: args.platform,
|
|
|
|
})}`
|
2023-02-21 07:27:02 +00:00
|
|
|
);
|
2023-02-14 15:30:41 +00:00
|
|
|
}
|
|
|
|
)
|
2023-02-17 06:11:50 +00:00
|
|
|
.command(
|
|
|
|
'launch <browser>',
|
|
|
|
'Launch the specified browser',
|
|
|
|
yargs => {
|
2023-03-08 12:36:31 +00:00
|
|
|
this.#defineBrowserParameter(yargs);
|
|
|
|
this.#definePlatformParameter(yargs);
|
|
|
|
this.#definePathParameter(yargs);
|
2023-02-22 15:38:15 +00:00
|
|
|
yargs.option('detached', {
|
|
|
|
type: 'boolean',
|
2023-03-14 11:01:11 +00:00
|
|
|
desc: 'Detach the child process.',
|
|
|
|
default: false,
|
|
|
|
});
|
|
|
|
yargs.option('system', {
|
|
|
|
type: 'boolean',
|
|
|
|
desc: 'Search for a browser installed on the system instead of the cache folder.',
|
2023-02-22 15:38:15 +00:00
|
|
|
default: false,
|
|
|
|
});
|
2023-02-17 06:11:50 +00:00
|
|
|
},
|
|
|
|
async argv => {
|
|
|
|
const args = argv as unknown as LaunchArgs;
|
2023-03-14 11:01:11 +00:00
|
|
|
const executablePath = args.system
|
|
|
|
? computeSystemExecutablePath({
|
|
|
|
browser: args.browser.name,
|
|
|
|
// TODO: throw an error if not a ChromeReleaseChannel is provided.
|
|
|
|
channel: args.browser.buildId as ChromeReleaseChannel,
|
|
|
|
platform: args.platform,
|
|
|
|
})
|
|
|
|
: computeExecutablePath({
|
|
|
|
browser: args.browser.name,
|
|
|
|
buildId: args.browser.buildId,
|
|
|
|
cacheDir: args.path ?? this.#cachePath,
|
|
|
|
platform: args.platform,
|
|
|
|
});
|
2023-02-17 06:11:50 +00:00
|
|
|
launch({
|
|
|
|
executablePath,
|
|
|
|
detached: args.detached,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
)
|
2023-02-22 12:10:26 +00:00
|
|
|
.demandCommand(1)
|
|
|
|
.help()
|
2023-02-14 15:30:41 +00:00
|
|
|
.parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
#parseBrowser(version: string): Browser {
|
|
|
|
return version.split('@').shift() as Browser;
|
|
|
|
}
|
|
|
|
|
2023-02-21 16:15:49 +00:00
|
|
|
#parseBuildId(version: string): string {
|
2023-02-14 15:30:41 +00:00
|
|
|
return version.split('@').pop() ?? 'latest';
|
|
|
|
}
|
|
|
|
|
|
|
|
#toMegabytes(bytes: number) {
|
2023-02-22 14:36:39 +00:00
|
|
|
const mb = bytes / 1000 / 1000;
|
|
|
|
return `${Math.round(mb * 10) / 10} MB`;
|
2023-02-14 15:30:41 +00:00
|
|
|
}
|
|
|
|
|
2023-02-21 16:15:49 +00:00
|
|
|
#makeProgressCallback(browser: Browser, buildId: string) {
|
2023-02-15 19:41:22 +00:00
|
|
|
let progressBar: ProgressBar;
|
2023-02-14 15:30:41 +00:00
|
|
|
let lastDownloadedBytes = 0;
|
|
|
|
return (downloadedBytes: number, totalBytes: number) => {
|
|
|
|
if (!progressBar) {
|
|
|
|
progressBar = new ProgressBar(
|
2023-02-21 16:15:49 +00:00
|
|
|
`Downloading ${browser} r${buildId} - ${this.#toMegabytes(
|
2023-02-14 15:30:41 +00:00
|
|
|
totalBytes
|
|
|
|
)} [:bar] :percent :etas `,
|
|
|
|
{
|
|
|
|
complete: '=',
|
|
|
|
incomplete: ' ',
|
|
|
|
width: 20,
|
|
|
|
total: totalBytes,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const delta = downloadedBytes - lastDownloadedBytes;
|
|
|
|
lastDownloadedBytes = downloadedBytes;
|
|
|
|
progressBar.tick(delta);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|