@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
245 lines (213 loc) • 9.55 kB
text/typescript
// SPDX-License-Identifier: Apache-2.0
import * as constants from '../constants.js';
import * as version from '../../../version.js';
import {inject, injectable} from 'tsyringe-neo';
import {patchInject} from '../dependency-injection/container-helper.js';
import {InjectTokens} from '../dependency-injection/inject-tokens.js';
import {BaseDependencyManager} from './base-dependency-manager.js';
import {PackageDownloader} from '../package-downloader.js';
import util from 'node:util';
import {SoloError} from '../errors/solo-error.js';
import fs from 'node:fs';
import {Zippy} from '../zippy.js';
import {GitHubRelease, ReleaseInfo, PodmanMode} from '../../types/index.js';
import {PathEx} from '../../business/utils/path-ex.js';
import {OperatingSystem} from '../../business/utils/operating-system.js';
const PODMAN_RELEASES_LIST_URL: string = 'https://api.github.com/repos/containers/podman/releases';
()
export class PodmanDependencyManager extends BaseDependencyManager {
protected checksum: string;
protected releaseBaseUrl: string;
protected artifactFileName: string;
protected artifactVersion: string;
public constructor(
(InjectTokens.PackageDownloader) downloader: PackageDownloader,
(InjectTokens.PodmanInstallationDirectory) installationDirectory: string,
(InjectTokens.OsArch) osArch: string,
(InjectTokens.PodmanVersion) podmanVersion: string,
(InjectTokens.Zippy) private readonly zippy: Zippy,
(InjectTokens.PodmanDependenciesInstallationDirectory) protected readonly helpersDirectory: string,
) {
super(
patchInject(downloader, InjectTokens.PackageDownloader, PodmanDependencyManager.name),
patchInject(installationDirectory, InjectTokens.PodmanInstallationDirectory, PodmanDependencyManager.name),
patchInject(osArch, InjectTokens.OsArch, PodmanDependencyManager.name),
patchInject(podmanVersion, InjectTokens.PodmanVersion, PodmanDependencyManager.name) || version.PODMAN_VERSION,
constants.PODMAN,
'',
);
this.zippy = patchInject(this.zippy, InjectTokens.Zippy, PodmanDependencyManager.name);
this.helpersDirectory = patchInject(
this.helpersDirectory,
InjectTokens.PodmanDependenciesInstallationDirectory,
PodmanDependencyManager.name,
);
}
/**
* Get the Podman artifact name based on version, OS, and architecture
*/
protected getArtifactName(): string {
return util.format(
this.artifactFileName,
this.getRequiredVersion(),
OperatingSystem.getFormattedPlatform(),
this.osArch,
);
}
public get mode(): PodmanMode {
return OperatingSystem.isLinux() ? PodmanMode.ROOTFUL : PodmanMode.VIRTUAL_MACHINE;
}
public async getVersion(executableWithPath: string): Promise<string> {
// The retry logic is to handle potential transient issues with the command execution
// The command `podman --version` was sometimes observed to return an empty output in the CI environment
const maxAttempts: number = 3;
for (let attempt: number = 1; attempt <= maxAttempts; attempt++) {
try {
const output: string[] = await this.run(`"${executableWithPath}" --version`);
if (output.length > 0) {
const match: RegExpMatchArray | null = output[0].trim().match(/(\d+\.\d+\.\d+)/);
return match[1];
}
} catch (error: any) {
throw new SoloError('Failed to check podman version', error);
}
}
throw new SoloError('Failed to check podman version');
}
/**
* Fetches the latest release information from GitHub API
* @returns Promise with the release base URL, asset name, digest, and version
*/
private async fetchReleaseInfo(tagName: string): Promise<ReleaseInfo> {
try {
// Make a GET request to GitHub API using fetch
const response = await fetch(PODMAN_RELEASES_LIST_URL, {
method: 'GET', // Changed from HEAD to GET to retrieve the body
headers: {
'User-Agent': constants.SOLO_USER_AGENT_HEADER,
Accept: 'application/vnd.github.v3+json', // Explicitly request GitHub API v3 format
},
});
if (!response.ok) {
throw new SoloError(`GitHub API request failed with status ${response.status}`);
}
// Parse the JSON response
const releases: GitHubRelease[] = await response.json();
if (!releases || releases.length === 0) {
throw new SoloError('No releases found');
}
// Get the latest release
const release: GitHubRelease = releases.find(release => release.tag_name === tagName);
const version: string = release.tag_name.replace(/^v/, ''); // Remove 'v' prefix if present
// Normalize platform/arch for asset matching
const arch: string = this.getArch();
// Construct asset pattern based on platform
let assetPattern: RegExp;
if (OperatingSystem.isWin32()) {
// Windows
assetPattern = new RegExp(String.raw`podman-remote-release-windows_${arch}\.zip$`);
} else if (OperatingSystem.isDarwin()) {
// macOS
assetPattern = new RegExp(String.raw`podman-remote-release-darwin_${arch}\.zip$`);
} else {
// Linux
assetPattern = new RegExp(String.raw`podman-remote-static-linux_${arch}\.tar\.gz$`);
}
// Find the matching asset
const matchingAsset = release.assets.find(asset => assetPattern.test(asset.browser_download_url));
if (!matchingAsset) {
throw new SoloError(`No matching asset found for ${OperatingSystem.getPlatform()}-${arch}`);
}
// Get the digest from the shasums file
const checksum: string = matchingAsset.digest
? matchingAsset.digest.replace('sha256:', '')
: '0000000000000000000000000000000000000000000000000000000000000000';
// Construct the release base URL (removing the filename from the download URL)
const downloadUrl: string = matchingAsset.browser_download_url.slice(
0,
Math.max(0, matchingAsset.browser_download_url.lastIndexOf('/')),
);
return {
downloadUrl,
assetName: matchingAsset.name,
checksum,
version,
};
} catch (error) {
if (error instanceof SoloError) {
throw error;
}
throw new SoloError('Failed to parse GitHub API response', error);
}
}
// Podman should only be installed if Docker is not already present on the client system
public override async shouldInstall(): Promise<boolean> {
// Check if Podman is explicitly requested via environment variable
if (process.env.FORCE_PODMAN === 'true') {
return true;
}
// Determine if Docker is already installed
try {
await this.run(`"${constants.DOCKER}" --version`);
return false;
} catch {
return true;
}
}
protected override async preInstall(): Promise<void> {
const releaseInfo: ReleaseInfo = await this.fetchReleaseInfo(version.PODMAN_VERSION);
this.checksum = releaseInfo.checksum;
this.releaseBaseUrl = releaseInfo.downloadUrl;
this.artifactFileName = releaseInfo.assetName;
this.artifactVersion = releaseInfo.version;
}
protected getDownloadURL(): string {
return `${this.releaseBaseUrl}/${this.artifactFileName}`;
}
/**
* Handle any post-download processing before copying to destination
* Child classes can override this for custom extraction or processing
*/
protected async processDownloadedPackage(packageFilePath: string, temporaryDirectory: string): Promise<string[]> {
// Extract the archive based on file extension
if (packageFilePath.endsWith('.zip')) {
this.zippy!.unzip(packageFilePath, temporaryDirectory);
} else {
this.zippy!.untar(packageFilePath, temporaryDirectory);
}
let binDirectory: string;
if (OperatingSystem.isLinux()) {
binDirectory = PathEx.join(temporaryDirectory, 'bin');
const arch: string = this.getArch();
fs.renameSync(
PathEx.join(binDirectory, `podman-remote-static-linux_${arch}`),
PathEx.join(binDirectory, constants.PODMAN),
);
} else {
// Find the Podman executable inside the extracted directory
binDirectory = PathEx.join(temporaryDirectory, `${constants.PODMAN}-${this.artifactVersion}`, 'usr', 'bin');
}
return fs.readdirSync(binDirectory).map((file: string): string => PathEx.join(binDirectory, file));
}
protected getChecksumURL(): string {
return this.checksum;
}
/**
* Create a custom containers.conf file for Podman and set the CONTAINERS_CONF env variable
* @private
*/
public override async setupConfig(): Promise<void> {
// Create the containers.conf file from the template
const configDirectory = PathEx.join(constants.SOLO_HOME_DIR, 'config');
if (!fs.existsSync(configDirectory)) {
fs.mkdirSync(configDirectory, {recursive: true});
}
const templatesDirectory: string = PathEx.join(constants.SOLO_HOME_DIR, 'cache', 'templates');
const templatePath: string = PathEx.join(templatesDirectory, 'podman', 'containers.conf');
const destinationPath: string = PathEx.join(configDirectory, 'containers.conf');
let configContent: string = fs.readFileSync(templatePath, 'utf8');
configContent = configContent.replace('$HELPER_BINARIES_DIR', this.helpersDirectory.replaceAll('\\', '/'));
fs.writeFileSync(destinationPath, configContent, 'utf8');
process.env.CONTAINERS_CONF = destinationPath;
}
}