import * as fs from 'fs' import * as os from 'os' import * as path from 'path' import * as httpm from '@actions/http-client' import * as core from '@actions/core' import * as toolCache from '@actions/tool-cache' import * as gradlew from './gradlew' const gradleVersionsBaseUrl = 'https://services.gradle.org/versions' /** * @return Gradle executable path */ export async function gradleVersion(version: string): Promise { switch (version) { case 'current': return gradleCurrent() case 'rc': return gradleReleaseCandidate() case 'nightly': return gradleNightly() case 'release-nightly': return gradleReleaseNightly() default: return gradle(version) } } async function gradleCurrent(): Promise { const versionInfo = await gradleVersionDeclaration( `${gradleVersionsBaseUrl}/current` ) return provisionGradle(versionInfo.version, versionInfo.downloadUrl) } async function gradleReleaseCandidate(): Promise { const versionInfo = await gradleVersionDeclaration( `${gradleVersionsBaseUrl}/release-candidate` ) if (versionInfo && versionInfo.version && versionInfo.downloadUrl) { return provisionGradle(versionInfo.version, versionInfo.downloadUrl) } core.info('No current release-candidate found, will fallback to current') return gradleCurrent() } async function gradleNightly(): Promise { const versionInfo = await gradleVersionDeclaration( `${gradleVersionsBaseUrl}/nightly` ) return provisionGradle(versionInfo.version, versionInfo.downloadUrl) } async function gradleReleaseNightly(): Promise { const versionInfo = await gradleVersionDeclaration( `${gradleVersionsBaseUrl}/release-nightly` ) return provisionGradle(versionInfo.version, versionInfo.downloadUrl) } async function gradle(version: string): Promise { const versionInfo = await findGradleVersionDeclaration(version) if (!versionInfo) { throw new Error(`Gradle version ${version} does not exists`) } return provisionGradle(versionInfo.version, versionInfo.downloadUrl) } async function gradleVersionDeclaration( url: string ): Promise { return await httpGetGradleVersion(url) } async function findGradleVersionDeclaration( version: string ): Promise { const gradleVersions = await httpGetGradleVersions( `${gradleVersionsBaseUrl}/all` ) return gradleVersions.find((entry: GradleVersionInfo) => { return entry.version === version }) } async function provisionGradle(version: string, url: string): Promise { const cachedInstall: string = toolCache.find('gradle', version) if (cachedInstall.length > 0) { const cachedExecutable = executableFrom(cachedInstall) core.info(`Provisioned Gradle executable ${cachedExecutable}`) return cachedExecutable } const tmpdir = path.join(os.homedir(), 'gradle-provision-tmpdir') core.info(`Downloading ${url}`) const downloadPath = path.join( tmpdir, `downloads/gradle-${version}-bin.zip` ) await toolCache.downloadTool(url, downloadPath) core.info( `Downloaded at ${downloadPath}, size ${fs.statSync(downloadPath).size}` ) const installsDir = path.join(tmpdir, 'installs') await toolCache.extractZip(downloadPath, installsDir) const installDir = path.join(installsDir, `gradle-${version}`) core.info(`Extracted in ${installDir}`) const executable = executableFrom(installDir) fs.chmodSync(executable, '755') core.info(`Provisioned Gradle executable ${executable}`) toolCache.cacheDir(installDir, 'gradle', version) return executable } function executableFrom(installDir: string): string { return path.join(installDir, 'bin', `${gradlew.installScriptFilename()}`) } async function httpGetGradleVersion(url: string): Promise { return JSON.parse(await httpGetString(url)) } async function httpGetGradleVersions( url: string ): Promise { return JSON.parse(await httpGetString(url)) } async function httpGetString(url: string): Promise { const httpClient = new httpm.HttpClient('eskatos/gradle-command-action') const response = await httpClient.get(url) return response.readBody() } interface GradleVersionInfo { version: string downloadUrl: string }