2023-03-09 13:49:35 +01:00
|
|
|
import {JavaBase} from '../base-installer';
|
|
|
|
import {
|
|
|
|
JavaDownloadRelease,
|
|
|
|
JavaInstallerOptions,
|
|
|
|
JavaInstallerResults
|
|
|
|
} from '../base-models';
|
2023-09-20 13:22:11 +02:00
|
|
|
import {
|
|
|
|
extractJdkFile,
|
|
|
|
getDownloadArchiveExtension,
|
|
|
|
getGitHubHttpHeaders
|
|
|
|
} from '../../util';
|
2021-12-08 19:50:14 +01:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2023-11-29 15:11:46 +01:00
|
|
|
import {TypedResponse} from '@actions/http-client/lib/interfaces';
|
2021-12-08 19:50:14 +01:00
|
|
|
|
|
|
|
export class MicrosoftDistributions extends JavaBase {
|
|
|
|
constructor(installerOptions: JavaInstallerOptions) {
|
|
|
|
super('Microsoft', installerOptions);
|
|
|
|
}
|
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
protected async downloadTool(
|
|
|
|
javaRelease: JavaDownloadRelease
|
|
|
|
): Promise<JavaInstallerResults> {
|
2021-12-08 19:50:14 +01:00
|
|
|
core.info(
|
|
|
|
`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`
|
|
|
|
);
|
|
|
|
const javaArchivePath = await tc.downloadTool(javaRelease.url);
|
|
|
|
|
|
|
|
core.info(`Extracting Java archive...`);
|
|
|
|
const extension = getDownloadArchiveExtension();
|
|
|
|
const extractedJavaPath = await extractJdkFile(javaArchivePath, extension);
|
|
|
|
|
|
|
|
const archiveName = fs.readdirSync(extractedJavaPath)[0];
|
|
|
|
const archivePath = path.join(extractedJavaPath, archiveName);
|
|
|
|
|
|
|
|
const javaPath = await tc.cacheDir(
|
|
|
|
archivePath,
|
|
|
|
this.toolcacheFolderName,
|
|
|
|
this.getToolcacheVersionName(javaRelease.version),
|
|
|
|
this.architecture
|
|
|
|
);
|
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
return {version: javaRelease.version, path: javaPath};
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
protected async findPackageForDownload(
|
|
|
|
range: string
|
|
|
|
): Promise<JavaDownloadRelease> {
|
2022-10-11 01:47:17 +02:00
|
|
|
const arch = this.distributionArchitecture();
|
|
|
|
if (arch !== 'x64' && arch !== 'aarch64') {
|
2021-12-08 19:50:14 +01:00
|
|
|
throw new Error(`Unsupported architecture: ${this.architecture}`);
|
|
|
|
}
|
2021-12-15 16:23:49 +01:00
|
|
|
|
|
|
|
if (!this.stable) {
|
|
|
|
throw new Error('Early access versions are not supported');
|
|
|
|
}
|
|
|
|
|
2021-12-21 11:29:16 +01:00
|
|
|
if (this.packageType !== 'jdk') {
|
2023-03-09 13:49:35 +01:00
|
|
|
throw new Error(
|
|
|
|
'Microsoft Build of OpenJDK provides only the `jdk` package type'
|
|
|
|
);
|
2021-12-21 11:29:16 +01:00
|
|
|
}
|
|
|
|
|
2022-09-23 14:47:30 +02:00
|
|
|
const manifest = await this.getAvailableVersions();
|
|
|
|
|
|
|
|
if (!manifest) {
|
|
|
|
throw new Error('Could not load manifest for Microsoft Build of OpenJDK');
|
|
|
|
}
|
|
|
|
|
2022-10-11 01:47:17 +02:00
|
|
|
const foundRelease = await tc.findFromManifest(range, true, manifest, arch);
|
2022-09-23 14:47:30 +02:00
|
|
|
|
|
|
|
if (!foundRelease) {
|
2021-12-08 19:50:14 +01:00
|
|
|
throw new Error(
|
2022-12-13 12:45:14 +01:00
|
|
|
`Could not find satisfied version for SemVer ${range}.\nAvailable versions: ${manifest
|
2022-09-23 14:47:30 +02:00
|
|
|
.map(item => item.version)
|
|
|
|
.join(', ')}`
|
2021-12-08 19:50:14 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
return {
|
|
|
|
url: foundRelease.files[0].download_url,
|
|
|
|
version: foundRelease.version
|
|
|
|
};
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
2022-09-23 14:47:30 +02:00
|
|
|
private async getAvailableVersions(): Promise<tc.IToolRelease[] | null> {
|
2021-12-08 19:50:14 +01:00
|
|
|
// TODO get these dynamically!
|
|
|
|
// We will need Microsoft to add an endpoint where we can query for versions.
|
2022-09-23 14:47:30 +02:00
|
|
|
const owner = 'actions';
|
|
|
|
const repository = 'setup-java';
|
|
|
|
const branch = 'main';
|
2023-03-09 13:49:35 +01:00
|
|
|
const filePath =
|
|
|
|
'src/distributions/microsoft/microsoft-openjdk-versions.json';
|
2022-09-23 14:47:30 +02:00
|
|
|
|
|
|
|
let releases: tc.IToolRelease[] | null = null;
|
|
|
|
const fileUrl = `https://api.github.com/repos/${owner}/${repository}/contents/${filePath}?ref=${branch}`;
|
|
|
|
|
2023-09-20 13:22:11 +02:00
|
|
|
const headers = getGitHubHttpHeaders();
|
2022-09-23 14:47:30 +02:00
|
|
|
|
2023-11-29 15:11:46 +01:00
|
|
|
let response: TypedResponse<tc.IToolRelease[]> | null = null;
|
2022-09-23 14:47:30 +02:00
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
if (core.isDebug()) {
|
|
|
|
console.time('Retrieving available versions for Microsoft took'); // eslint-disable-line no-console
|
|
|
|
}
|
|
|
|
|
2022-09-23 14:47:30 +02:00
|
|
|
try {
|
|
|
|
response = await this.http.getJson<tc.IToolRelease[]>(fileUrl, headers);
|
|
|
|
if (!response.result) {
|
|
|
|
return null;
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
2022-09-23 14:47:30 +02:00
|
|
|
} catch (err) {
|
|
|
|
core.debug(
|
|
|
|
`Http request for microsoft-openjdk-versions.json failed with status code: ${response?.statusCode}`
|
|
|
|
);
|
|
|
|
return null;
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
2022-09-23 14:47:30 +02:00
|
|
|
if (response.result) {
|
|
|
|
releases = response.result;
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
2023-03-09 13:49:35 +01:00
|
|
|
if (core.isDebug() && releases) {
|
|
|
|
core.startGroup('Print information about available versions');
|
|
|
|
console.timeEnd('Retrieving available versions for Microsoft took'); // eslint-disable-line no-console
|
|
|
|
core.debug(`Available versions: [${releases.length}]`);
|
|
|
|
core.debug(releases.map(item => item.version).join(', '));
|
|
|
|
core.endGroup();
|
|
|
|
}
|
|
|
|
|
2022-09-23 14:47:30 +02:00
|
|
|
return releases;
|
2021-12-08 19:50:14 +01:00
|
|
|
}
|
|
|
|
}
|