2019-07-11 03:11:48 +00:00
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
return new ( P || ( P = Promise ) ) ( function ( resolve , reject ) {
function fulfilled ( value ) { try { step ( generator . next ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function rejected ( value ) { try { step ( generator [ "throw" ] ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function step ( result ) { result . done ? resolve ( result . value ) : new P ( function ( resolve ) { resolve ( result . value ) ; } ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
var _ _importStar = ( this && this . _ _importStar ) || function ( mod ) {
if ( mod && mod . _ _esModule ) return mod ;
var result = { } ;
if ( mod != null ) for ( var k in mod ) if ( Object . hasOwnProperty . call ( mod , k ) ) result [ k ] = mod [ k ] ;
result [ "default" ] = mod ;
return result ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
let tempDirectory = process . env [ 'RUNNER_TEMPDIRECTORY' ] || '' ;
const core = _ _importStar ( require ( "@actions/core" ) ) ;
const io = _ _importStar ( require ( "@actions/io" ) ) ;
const exec = _ _importStar ( require ( "@actions/exec" ) ) ;
const tc = _ _importStar ( require ( "@actions/tool-cache" ) ) ;
const fs = _ _importStar ( require ( "fs" ) ) ;
const path = _ _importStar ( require ( "path" ) ) ;
2019-07-18 20:00:58 +00:00
const semver = _ _importStar ( require ( "semver" ) ) ;
2019-07-15 18:59:23 +00:00
const httpm = _ _importStar ( require ( "typed-rest-client/HttpClient" ) ) ;
2019-07-11 03:11:48 +00:00
const IS _WINDOWS = process . platform === 'win32' ;
if ( ! tempDirectory ) {
let baseLocation ;
if ( IS _WINDOWS ) {
// On windows use the USERPROFILE env variable
baseLocation = process . env [ 'USERPROFILE' ] || 'C:\\' ;
}
else {
if ( process . platform === 'darwin' ) {
baseLocation = '/Users' ;
}
else {
baseLocation = '/home' ;
}
}
tempDirectory = path . join ( baseLocation , 'actions' , 'temp' ) ;
}
function getJava ( version , arch , jdkFile ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let toolPath = tc . find ( 'Java' , version ) ;
if ( toolPath ) {
core . debug ( ` Tool found in cache ${ toolPath } ` ) ;
}
else {
2019-07-15 18:59:23 +00:00
let compressedFileExtension = '' ;
2019-07-15 15:26:32 +00:00
if ( ! jdkFile ) {
2019-07-15 18:59:23 +00:00
core . debug ( 'Downloading Jdk from Azul' ) ;
2019-07-18 20:00:58 +00:00
let http = new httpm . HttpClient ( 'setup-java' ) ;
let contents = yield ( yield http . get ( 'https://static.azul.com/zulu/bin/' ) ) . readBody ( ) ;
let refs = contents . match ( /<a href.*\">/gi ) || [ ] ;
const downloadInfo = getDownloadInfo ( refs , version ) ;
jdkFile = yield tc . downloadTool ( downloadInfo . url ) ;
version = downloadInfo . version ;
2019-07-15 18:59:23 +00:00
compressedFileExtension = IS _WINDOWS ? '.zip' : '.tar.gz' ;
2019-07-15 15:26:32 +00:00
}
2019-07-15 18:59:23 +00:00
else {
core . debug ( 'Retrieving Jdk from local path' ) ;
}
compressedFileExtension = compressedFileExtension || getFileEnding ( jdkFile ) ;
2019-07-11 03:11:48 +00:00
let tempDir = path . join ( tempDirectory , 'temp_' + Math . floor ( Math . random ( ) * 2000000000 ) ) ;
const jdkDir = yield unzipJavaDownload ( jdkFile , compressedFileExtension , tempDir ) ;
core . debug ( ` jdk extracted to ${ jdkDir } ` ) ;
2019-07-18 20:00:58 +00:00
toolPath = yield tc . cacheDir ( jdkDir , 'Java' , getCacheVersionString ( version ) , arch ) ;
2019-07-11 03:11:48 +00:00
}
let extendedJavaHome = 'JAVA_HOME_' + version + '_' + arch ;
core . exportVariable ( 'JAVA_HOME' , toolPath ) ;
core . exportVariable ( extendedJavaHome , toolPath ) ;
core . addPath ( path . join ( toolPath , 'bin' ) ) ;
} ) ;
}
exports . getJava = getJava ;
2019-07-18 20:00:58 +00:00
function getCacheVersionString ( version ) {
2019-07-15 18:59:23 +00:00
const versionArray = version . split ( '.' ) ;
const major = versionArray [ 0 ] ;
const minor = versionArray . length > 1 ? versionArray [ 1 ] : '0' ;
const patch = versionArray . length > 2 ? versionArray [ 2 ] : '0' ;
return ` ${ major } . ${ minor } . ${ patch } ` ;
}
2019-07-11 03:11:48 +00:00
function getFileEnding ( file ) {
let fileEnding = '' ;
if ( file . endsWith ( '.tar' ) ) {
fileEnding = '.tar' ;
}
else if ( file . endsWith ( '.tar.gz' ) ) {
fileEnding = '.tar.gz' ;
}
else if ( file . endsWith ( '.zip' ) ) {
fileEnding = '.zip' ;
}
else if ( file . endsWith ( '.7z' ) ) {
fileEnding = '.7z' ;
}
else {
throw new Error ( ` ${ file } has an unsupported file extension ` ) ;
}
return fileEnding ;
}
function extractFiles ( file , fileEnding , destinationFolder ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const stats = fs . statSync ( file ) ;
if ( ! stats ) {
throw new Error ( ` Failed to extract ${ file } - it doesn't exist ` ) ;
}
else if ( stats . isDirectory ( ) ) {
throw new Error ( ` Failed to extract ${ file } - it is a directory ` ) ;
}
if ( '.tar' === fileEnding || '.tar.gz' === fileEnding ) {
yield tc . extractTar ( file , destinationFolder ) ;
}
else if ( '.zip' === fileEnding ) {
yield tc . extractZip ( file , destinationFolder ) ;
}
else {
// fall through and use sevenZip
yield tc . extract7z ( file , destinationFolder ) ;
}
} ) ;
}
// This method recursively finds all .pack files under fsPath and unpacks them with the unpack200 tool
function unpackJars ( fsPath , javaBinPath ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
if ( fs . existsSync ( fsPath ) ) {
if ( fs . lstatSync ( fsPath ) . isDirectory ( ) ) {
for ( const file in fs . readdirSync ( fsPath ) ) {
const curPath = path . join ( fsPath , file ) ;
yield unpackJars ( curPath , javaBinPath ) ;
}
}
else if ( path . extname ( fsPath ) . toLowerCase ( ) === '.pack' ) {
// Unpack the pack file synchonously
const p = path . parse ( fsPath ) ;
const toolName = IS _WINDOWS ? 'unpack200.exe' : 'unpack200' ;
const args = IS _WINDOWS ? '-r -v -l ""' : '' ;
const name = path . join ( p . dir , p . name ) ;
yield exec . exec ( ` " ${ path . join ( javaBinPath , toolName ) } " ` , [
` ${ args } " ${ name } .pack" " ${ name } .jar" `
] ) ;
}
}
} ) ;
}
2019-07-15 18:59:23 +00:00
function unzipJavaDownload ( repoRoot , fileEnding , destinationFolder , extension ) {
2019-07-11 03:11:48 +00:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
// Create the destination folder if it doesn't exist
yield io . mkdirP ( destinationFolder ) ;
const jdkFile = path . normalize ( repoRoot ) ;
const stats = fs . statSync ( jdkFile ) ;
if ( stats . isFile ( ) ) {
yield extractFiles ( jdkFile , fileEnding , destinationFolder ) ;
const jdkDirectory = path . join ( destinationFolder , fs . readdirSync ( destinationFolder ) [ 0 ] ) ;
yield unpackJars ( jdkDirectory , path . join ( jdkDirectory , 'bin' ) ) ;
return jdkDirectory ;
}
else {
throw new Error ( ` Jdk argument ${ jdkFile } is not a file ` ) ;
}
} ) ;
}
2019-07-18 20:00:58 +00:00
function getDownloadInfo ( refs , version ) {
version = normalizeVersion ( version ) ;
let extension = '' ;
if ( IS _WINDOWS ) {
extension = ` -win_x64.zip ` ;
}
else {
if ( process . platform === 'darwin' ) {
extension = ` -macosx_x64.tar.gz ` ;
2019-07-15 18:59:23 +00:00
}
else {
2019-07-18 20:00:58 +00:00
extension = ` -linux_x64.tar.gz ` ;
2019-07-15 18:59:23 +00:00
}
2019-07-18 20:00:58 +00:00
}
// Maps version to url
let versionMap = new Map ( ) ;
// Filter by platform
refs . forEach ( ref => {
if ( ref . indexOf ( extension ) < 0 ) {
return ;
}
// If we haven't returned, means we're looking at the correct platform
let versions = ref . match ( /jdk.*-/gi ) || [ ] ;
if ( versions . length > 1 ) {
throw new Error ( ` Invalid ref received from https://static.azul.com/zulu/bin/: ${ ref } ` ) ;
}
if ( versions . length == 0 ) {
return ;
}
const refVersion = versions [ 0 ] . slice ( 'jdk' . length , versions [ 0 ] . length - 1 ) ;
if ( semver . satisfies ( refVersion , version ) ) {
versionMap . set ( refVersion , 'https://static.azul.com/zulu/bin/' +
ref . slice ( '<a href="' . length , ref . length - '">' . length ) ) ;
2019-07-15 18:59:23 +00:00
}
} ) ;
2019-07-18 20:00:58 +00:00
// Choose the most recent satisfying version
let curVersion = '0.0.0' ;
let curUrl = '' ;
for ( const entry of versionMap . entries ( ) ) {
const entryVersion = entry [ 0 ] ;
const entryUrl = entry [ 1 ] ;
if ( semver . gt ( entryVersion , curVersion ) ) {
curUrl = entryUrl ;
curVersion = entryVersion ;
}
}
if ( curUrl == '' ) {
throw new Error ( ` No valid download found for version ${ version } . Check https://static.azul.com/zulu/bin/ for a list of valid versions or download your own jdk file and add the jdkFile argument ` ) ;
}
return { version : curVersion , url : curUrl } ;
}
function normalizeVersion ( version ) {
if ( version . slice ( 0 , 2 ) === '1.' ) {
// Trim leading 1. for versions like 1.8
version = version . slice ( 2 ) ;
if ( ! version ) {
throw new Error ( '1. is not a valid version' ) ;
}
}
// Add trailing .x if it is missing
if ( version . split ( '.' ) . length != 3 ) {
if ( version [ version . length - 1 ] != 'x' ) {
version = version + '.x' ;
}
}
return version ;
2019-07-15 18:59:23 +00:00
}