2019-11-24 06:44:53 +07:00
module . exports =
/******/ ( function ( modules , runtime ) { // webpackBootstrap
/******/ "use strict" ;
/******/ // The module cache
/******/ var installedModules = { } ;
/******/
/******/ // The require function
/******/ function _ _webpack _require _ _ ( moduleId ) {
/******/
/******/ // Check if module is in cache
/******/ if ( installedModules [ moduleId ] ) {
/******/ return installedModules [ moduleId ] . exports ;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules [ moduleId ] = {
/******/ i : moduleId ,
/******/ l : false ,
/******/ exports : { }
/******/ } ;
/******/
/******/ // Execute the module function
/******/ modules [ moduleId ] . call ( module . exports , module , module . exports , _ _webpack _require _ _ ) ;
/******/
/******/ // Flag the module as loaded
/******/ module . l = true ;
/******/
/******/ // Return the exports of the module
/******/ return module . exports ;
/******/ }
/******/
/******/
/******/ _ _webpack _require _ _ . ab = _ _dirname + "/" ;
/******/
/******/ // the startup function
/******/ function startup ( ) {
/******/ // Load entry module and return exports
/******/ return _ _webpack _require _ _ ( 655 ) ;
/******/ } ;
/******/
/******/ // run startup
/******/ return startup ( ) ;
/******/ } )
/************************************************************************/
/******/ ( {
2019-12-10 06:52:33 +07:00
/***/ 1 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
const childProcess = _ _webpack _require _ _ ( 129 ) ;
const path = _ _webpack _require _ _ ( 622 ) ;
const util _1 = _ _webpack _require _ _ ( 669 ) ;
const ioUtil = _ _webpack _require _ _ ( 672 ) ;
const exec = util _1 . promisify ( childProcess . exec ) ;
/ * *
* Copies a file or folder .
* Based off of shelljs - https : //github.com/shelljs/shelljs/blob/9237f66c52e5daa40458f94f9565e18e8132f5a6/src/cp.js
*
* @ param source source path
* @ param dest destination path
* @ param options optional . See CopyOptions .
* /
function cp ( source , dest , options = { } ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const { force , recursive } = readCopyOptions ( options ) ;
const destStat = ( yield ioUtil . exists ( dest ) ) ? yield ioUtil . stat ( dest ) : null ;
// Dest is an existing file, but not forcing
if ( destStat && destStat . isFile ( ) && ! force ) {
return ;
}
// If dest is an existing directory, should copy inside.
const newDest = destStat && destStat . isDirectory ( )
? path . join ( dest , path . basename ( source ) )
: dest ;
if ( ! ( yield ioUtil . exists ( source ) ) ) {
throw new Error ( ` no such file or directory: ${ source } ` ) ;
}
const sourceStat = yield ioUtil . stat ( source ) ;
if ( sourceStat . isDirectory ( ) ) {
if ( ! recursive ) {
throw new Error ( ` Failed to copy. ${ source } is a directory, but tried to copy without recursive flag. ` ) ;
}
else {
yield cpDirRecursive ( source , newDest , 0 , force ) ;
}
}
else {
if ( path . relative ( source , newDest ) === '' ) {
// a file cannot be copied to itself
throw new Error ( ` ' ${ newDest } ' and ' ${ source } ' are the same file ` ) ;
}
yield copyFile ( source , newDest , force ) ;
}
} ) ;
}
exports . cp = cp ;
/ * *
* Moves a path .
*
* @ param source source path
* @ param dest destination path
* @ param options optional . See MoveOptions .
* /
function mv ( source , dest , options = { } ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
if ( yield ioUtil . exists ( dest ) ) {
let destExists = true ;
if ( yield ioUtil . isDirectory ( dest ) ) {
// If dest is directory copy src into dest
dest = path . join ( dest , path . basename ( source ) ) ;
destExists = yield ioUtil . exists ( dest ) ;
}
if ( destExists ) {
if ( options . force == null || options . force ) {
yield rmRF ( dest ) ;
}
else {
throw new Error ( 'Destination already exists' ) ;
}
}
}
yield mkdirP ( path . dirname ( dest ) ) ;
yield ioUtil . rename ( source , dest ) ;
} ) ;
}
exports . mv = mv ;
/ * *
* Remove a path recursively with force
*
* @ param inputPath path to remove
* /
function rmRF ( inputPath ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
if ( ioUtil . IS _WINDOWS ) {
// Node doesn't provide a delete operation, only an unlink function. This means that if the file is being used by another
// program (e.g. antivirus), it won't be deleted. To address this, we shell out the work to rd/del.
try {
if ( yield ioUtil . isDirectory ( inputPath , true ) ) {
yield exec ( ` rd /s /q " ${ inputPath } " ` ) ;
}
else {
yield exec ( ` del /f /a " ${ inputPath } " ` ) ;
}
}
catch ( err ) {
// if you try to delete a file that doesn't exist, desired result is achieved
// other errors are valid
if ( err . code !== 'ENOENT' )
throw err ;
}
// Shelling out fails to remove a symlink folder with missing source, this unlink catches that
try {
yield ioUtil . unlink ( inputPath ) ;
}
catch ( err ) {
// if you try to delete a file that doesn't exist, desired result is achieved
// other errors are valid
if ( err . code !== 'ENOENT' )
throw err ;
}
}
else {
let isDir = false ;
try {
isDir = yield ioUtil . isDirectory ( inputPath ) ;
}
catch ( err ) {
// if you try to delete a file that doesn't exist, desired result is achieved
// other errors are valid
if ( err . code !== 'ENOENT' )
throw err ;
return ;
}
if ( isDir ) {
yield exec ( ` rm -rf " ${ inputPath } " ` ) ;
}
else {
yield ioUtil . unlink ( inputPath ) ;
}
}
} ) ;
}
exports . rmRF = rmRF ;
/ * *
* Make a directory . Creates the full path with folders in between
* Will throw if it fails
*
* @ param fsPath path to create
* @ returns Promise < void >
* /
function mkdirP ( fsPath ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
yield ioUtil . mkdirP ( fsPath ) ;
} ) ;
}
exports . mkdirP = mkdirP ;
/ * *
* Returns path of a tool had the tool actually been invoked . Resolves via paths .
* If you check and the tool does not exist , it will throw .
*
* @ param tool name of the tool
* @ param check whether to check if tool exists
* @ returns Promise < string > path to tool
* /
function which ( tool , check ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
if ( ! tool ) {
throw new Error ( "parameter 'tool' is required" ) ;
}
// recursive when check=true
if ( check ) {
const result = yield which ( tool , false ) ;
if ( ! result ) {
if ( ioUtil . IS _WINDOWS ) {
throw new Error ( ` Unable to locate executable file: ${ tool } . Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file. ` ) ;
}
else {
throw new Error ( ` Unable to locate executable file: ${ tool } . Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable. ` ) ;
}
}
}
try {
// build the list of extensions to try
const extensions = [ ] ;
if ( ioUtil . IS _WINDOWS && process . env . PATHEXT ) {
for ( const extension of process . env . PATHEXT . split ( path . delimiter ) ) {
if ( extension ) {
extensions . push ( extension ) ;
}
}
}
// if it's rooted, return it if exists. otherwise return empty.
if ( ioUtil . isRooted ( tool ) ) {
const filePath = yield ioUtil . tryGetExecutablePath ( tool , extensions ) ;
if ( filePath ) {
return filePath ;
}
return '' ;
}
// if any path separators, return empty
if ( tool . includes ( '/' ) || ( ioUtil . IS _WINDOWS && tool . includes ( '\\' ) ) ) {
return '' ;
}
// build the list of directories
//
// Note, technically "where" checks the current directory on Windows. From a toolkit perspective,
// it feels like we should not do this. Checking the current directory seems like more of a use
// case of a shell, and the which() function exposed by the toolkit should strive for consistency
// across platforms.
const directories = [ ] ;
if ( process . env . PATH ) {
for ( const p of process . env . PATH . split ( path . delimiter ) ) {
if ( p ) {
directories . push ( p ) ;
}
}
}
// return the first match
for ( const directory of directories ) {
const filePath = yield ioUtil . tryGetExecutablePath ( directory + path . sep + tool , extensions ) ;
if ( filePath ) {
return filePath ;
}
}
return '' ;
}
catch ( err ) {
throw new Error ( ` which failed with message ${ err . message } ` ) ;
}
} ) ;
}
exports . which = which ;
function readCopyOptions ( options ) {
const force = options . force == null ? true : options . force ;
const recursive = Boolean ( options . recursive ) ;
return { force , recursive } ;
}
function cpDirRecursive ( sourceDir , destDir , currentDepth , force ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
// Ensure there is not a run away recursive copy
if ( currentDepth >= 255 )
return ;
currentDepth ++ ;
yield mkdirP ( destDir ) ;
const files = yield ioUtil . readdir ( sourceDir ) ;
for ( const fileName of files ) {
const srcFile = ` ${ sourceDir } / ${ fileName } ` ;
const destFile = ` ${ destDir } / ${ fileName } ` ;
const srcFileStat = yield ioUtil . lstat ( srcFile ) ;
if ( srcFileStat . isDirectory ( ) ) {
// Recurse
yield cpDirRecursive ( srcFile , destFile , currentDepth , force ) ;
}
else {
yield copyFile ( srcFile , destFile , force ) ;
}
}
// Change the mode for the newly created directory
yield ioUtil . chmod ( destDir , ( yield ioUtil . stat ( sourceDir ) ) . mode ) ;
} ) ;
}
// Buffered file copy
function copyFile ( srcFile , destFile , force ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
if ( ( yield ioUtil . lstat ( srcFile ) ) . isSymbolicLink ( ) ) {
// unlink/re-link it
try {
yield ioUtil . lstat ( destFile ) ;
yield ioUtil . unlink ( destFile ) ;
}
catch ( e ) {
// Try to override file permission
if ( e . code === 'EPERM' ) {
yield ioUtil . chmod ( destFile , '0666' ) ;
yield ioUtil . unlink ( destFile ) ;
}
// other errors = it doesn't exist, no work to do
}
// Copy over symlink
const symlinkFull = yield ioUtil . readlink ( srcFile ) ;
yield ioUtil . symlink ( symlinkFull , destFile , ioUtil . IS _WINDOWS ? 'junction' : null ) ;
}
else if ( ! ( yield ioUtil . exists ( destFile ) ) || force ) {
yield ioUtil . copyFile ( srcFile , destFile ) ;
}
} ) ;
}
//# sourceMappingURL=io.js.map
/***/ } ) ,
2019-11-24 06:44:53 +07:00
/***/ 9 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
const os = _ _webpack _require _ _ ( 87 ) ;
const events = _ _webpack _require _ _ ( 614 ) ;
const child = _ _webpack _require _ _ ( 129 ) ;
2019-12-10 06:52:33 +07:00
const path = _ _webpack _require _ _ ( 622 ) ;
const io = _ _webpack _require _ _ ( 1 ) ;
const ioUtil = _ _webpack _require _ _ ( 672 ) ;
2019-11-24 06:44:53 +07:00
/* eslint-disable @typescript-eslint/unbound-method */
const IS _WINDOWS = process . platform === 'win32' ;
/ *
* Class for running command line tools . Handles quoting and arg parsing in a platform agnostic way .
* /
class ToolRunner extends events . EventEmitter {
constructor ( toolPath , args , options ) {
super ( ) ;
if ( ! toolPath ) {
throw new Error ( "Parameter 'toolPath' cannot be null or empty." ) ;
}
this . toolPath = toolPath ;
this . args = args || [ ] ;
this . options = options || { } ;
}
_debug ( message ) {
if ( this . options . listeners && this . options . listeners . debug ) {
this . options . listeners . debug ( message ) ;
}
}
_getCommandString ( options , noPrefix ) {
const toolPath = this . _getSpawnFileName ( ) ;
const args = this . _getSpawnArgs ( options ) ;
let cmd = noPrefix ? '' : '[command]' ; // omit prefix when piped to a second tool
if ( IS _WINDOWS ) {
// Windows + cmd file
if ( this . _isCmdFile ( ) ) {
cmd += toolPath ;
for ( const a of args ) {
cmd += ` ${ a } ` ;
}
}
// Windows + verbatim
else if ( options . windowsVerbatimArguments ) {
cmd += ` " ${ toolPath } " ` ;
for ( const a of args ) {
cmd += ` ${ a } ` ;
}
}
// Windows (regular)
else {
cmd += this . _windowsQuoteCmdArg ( toolPath ) ;
for ( const a of args ) {
cmd += ` ${ this . _windowsQuoteCmdArg ( a ) } ` ;
}
}
}
else {
// OSX/Linux - this can likely be improved with some form of quoting.
// creating processes on Unix is fundamentally different than Windows.
// on Unix, execvp() takes an arg array.
cmd += toolPath ;
for ( const a of args ) {
cmd += ` ${ a } ` ;
}
}
return cmd ;
}
_processLineBuffer ( data , strBuffer , onLine ) {
try {
let s = strBuffer + data . toString ( ) ;
let n = s . indexOf ( os . EOL ) ;
while ( n > - 1 ) {
const line = s . substring ( 0 , n ) ;
onLine ( line ) ;
// the rest of the string ...
s = s . substring ( n + os . EOL . length ) ;
n = s . indexOf ( os . EOL ) ;
}
strBuffer = s ;
}
catch ( err ) {
// streaming lines to console is best effort. Don't fail a build.
this . _debug ( ` error processing line. Failed with error ${ err } ` ) ;
}
}
_getSpawnFileName ( ) {
if ( IS _WINDOWS ) {
if ( this . _isCmdFile ( ) ) {
return process . env [ 'COMSPEC' ] || 'cmd.exe' ;
}
}
return this . toolPath ;
}
_getSpawnArgs ( options ) {
if ( IS _WINDOWS ) {
if ( this . _isCmdFile ( ) ) {
let argline = ` /D /S /C " ${ this . _windowsQuoteCmdArg ( this . toolPath ) } ` ;
for ( const a of this . args ) {
argline += ' ' ;
argline += options . windowsVerbatimArguments
? a
: this . _windowsQuoteCmdArg ( a ) ;
}
argline += '"' ;
return [ argline ] ;
}
}
return this . args ;
}
_endsWith ( str , end ) {
return str . endsWith ( end ) ;
}
_isCmdFile ( ) {
const upperToolPath = this . toolPath . toUpperCase ( ) ;
return ( this . _endsWith ( upperToolPath , '.CMD' ) ||
this . _endsWith ( upperToolPath , '.BAT' ) ) ;
}
_windowsQuoteCmdArg ( arg ) {
// for .exe, apply the normal quoting rules that libuv applies
if ( ! this . _isCmdFile ( ) ) {
return this . _uvQuoteCmdArg ( arg ) ;
}
// otherwise apply quoting rules specific to the cmd.exe command line parser.
// the libuv rules are generic and are not designed specifically for cmd.exe
// command line parser.
//
// for a detailed description of the cmd.exe command line parser, refer to
// http://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912
// need quotes for empty arg
if ( ! arg ) {
return '""' ;
}
// determine whether the arg needs to be quoted
const cmdSpecialChars = [
' ' ,
'\t' ,
'&' ,
'(' ,
')' ,
'[' ,
']' ,
'{' ,
'}' ,
'^' ,
'=' ,
';' ,
'!' ,
"'" ,
'+' ,
',' ,
'`' ,
'~' ,
'|' ,
'<' ,
'>' ,
'"'
] ;
let needsQuotes = false ;
for ( const char of arg ) {
if ( cmdSpecialChars . some ( x => x === char ) ) {
needsQuotes = true ;
break ;
}
}
// short-circuit if quotes not needed
if ( ! needsQuotes ) {
return arg ;
}
// the following quoting rules are very similar to the rules that by libuv applies.
//
// 1) wrap the string in quotes
//
// 2) double-up quotes - i.e. " => ""
//
// this is different from the libuv quoting rules. libuv replaces " with \", which unfortunately
// doesn't work well with a cmd.exe command line.
//
// note, replacing " with "" also works well if the arg is passed to a downstream .NET console app.
// for example, the command line:
// foo.exe "myarg:""my val"""
// is parsed by a .NET console app into an arg array:
// [ "myarg:\"my val\"" ]
// which is the same end result when applying libuv quoting rules. although the actual
// command line from libuv quoting rules would look like:
// foo.exe "myarg:\"my val\""
//
// 3) double-up slashes that precede a quote,
// e.g. hello \world => "hello \world"
// hello\"world => "hello\\""world"
// hello\\"world => "hello\\\\""world"
// hello world\ => "hello world\\"
//
// technically this is not required for a cmd.exe command line, or the batch argument parser.
// the reasons for including this as a .cmd quoting rule are:
//
// a) this is optimized for the scenario where the argument is passed from the .cmd file to an
// external program. many programs (e.g. .NET console apps) rely on the slash-doubling rule.
//
// b) it's what we've been doing previously (by deferring to node default behavior) and we
// haven't heard any complaints about that aspect.
//
// note, a weakness of the quoting rules chosen here, is that % is not escaped. in fact, % cannot be
// escaped when used on the command line directly - even though within a .cmd file % can be escaped
// by using %%.
//
// the saving grace is, on the command line, %var% is left as-is if var is not defined. this contrasts
// the line parsing rules within a .cmd file, where if var is not defined it is replaced with nothing.
//
// one option that was explored was replacing % with ^% - i.e. %var% => ^%var^%. this hack would
// often work, since it is unlikely that var^ would exist, and the ^ character is removed when the
// variable is used. the problem, however, is that ^ is not removed when %* is used to pass the args
// to an external program.
//
// an unexplored potential solution for the % escaping problem, is to create a wrapper .cmd file.
// % can be escaped within a .cmd file.
let reverse = '"' ;
let quoteHit = true ;
for ( let i = arg . length ; i > 0 ; i -- ) {
// walk the string in reverse
reverse += arg [ i - 1 ] ;
if ( quoteHit && arg [ i - 1 ] === '\\' ) {
reverse += '\\' ; // double the slash
}
else if ( arg [ i - 1 ] === '"' ) {
quoteHit = true ;
reverse += '"' ; // double the quote
}
else {
quoteHit = false ;
}
}
reverse += '"' ;
return reverse
. split ( '' )
. reverse ( )
. join ( '' ) ;
}
_uvQuoteCmdArg ( arg ) {
// Tool runner wraps child_process.spawn() and needs to apply the same quoting as
// Node in certain cases where the undocumented spawn option windowsVerbatimArguments
// is used.
//
// Since this function is a port of quote_cmd_arg from Node 4.x (technically, lib UV,
// see https://github.com/nodejs/node/blob/v4.x/deps/uv/src/win/process.c for details),
// pasting copyright notice from Node within this function:
//
// Copyright Joyent, Inc. and other Node contributors. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
if ( ! arg ) {
// Need double quotation for empty argument
return '""' ;
}
if ( ! arg . includes ( ' ' ) && ! arg . includes ( '\t' ) && ! arg . includes ( '"' ) ) {
// No quotation needed
return arg ;
}
if ( ! arg . includes ( '"' ) && ! arg . includes ( '\\' ) ) {
// No embedded double quotes or backslashes, so I can just wrap
// quote marks around the whole thing.
return ` " ${ arg } " ` ;
}
// Expected input/output:
// input : hello"world
// output: "hello\"world"
// input : hello""world
// output: "hello\"\"world"
// input : hello\world
// output: hello\world
// input : hello\\world
// output: hello\\world
// input : hello\"world
// output: "hello\\\"world"
// input : hello\\"world
// output: "hello\\\\\"world"
// input : hello world\
// output: "hello world\\" - note the comment in libuv actually reads "hello world\"
// but it appears the comment is wrong, it should be "hello world\\"
let reverse = '"' ;
let quoteHit = true ;
for ( let i = arg . length ; i > 0 ; i -- ) {
// walk the string in reverse
reverse += arg [ i - 1 ] ;
if ( quoteHit && arg [ i - 1 ] === '\\' ) {
reverse += '\\' ;
}
else if ( arg [ i - 1 ] === '"' ) {
quoteHit = true ;
reverse += '\\' ;
}
else {
quoteHit = false ;
}
}
reverse += '"' ;
return reverse
. split ( '' )
. reverse ( )
. join ( '' ) ;
}
_cloneExecOptions ( options ) {
options = options || { } ;
const result = {
cwd : options . cwd || process . cwd ( ) ,
env : options . env || process . env ,
silent : options . silent || false ,
windowsVerbatimArguments : options . windowsVerbatimArguments || false ,
failOnStdErr : options . failOnStdErr || false ,
ignoreReturnCode : options . ignoreReturnCode || false ,
delay : options . delay || 10000
} ;
result . outStream = options . outStream || process . stdout ;
result . errStream = options . errStream || process . stderr ;
return result ;
}
_getSpawnOptions ( options , toolPath ) {
options = options || { } ;
const result = { } ;
result . cwd = options . cwd ;
result . env = options . env ;
result [ 'windowsVerbatimArguments' ] =
options . windowsVerbatimArguments || this . _isCmdFile ( ) ;
if ( options . windowsVerbatimArguments ) {
result . argv0 = ` " ${ toolPath } " ` ;
}
return result ;
}
/ * *
* Exec a tool .
* Output will be streamed to the live console .
* Returns promise with return code
*
* @ param tool path to tool to exec
* @ param options optional exec options . See ExecOptions
* @ returns number
* /
exec ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-10 06:52:33 +07:00
// root the tool path if it is unrooted and contains relative pathing
if ( ! ioUtil . isRooted ( this . toolPath ) &&
( this . toolPath . includes ( '/' ) ||
( IS _WINDOWS && this . toolPath . includes ( '\\' ) ) ) ) {
// prefer options.cwd if it is specified, however options.cwd may also need to be rooted
this . toolPath = path . resolve ( process . cwd ( ) , this . options . cwd || process . cwd ( ) , this . toolPath ) ;
}
// if the tool is only a file name, then resolve it from the PATH
// otherwise verify it exists (add extension on Windows if necessary)
this . toolPath = yield io . which ( this . toolPath , true ) ;
2019-11-24 06:44:53 +07:00
return new Promise ( ( resolve , reject ) => {
this . _debug ( ` exec tool: ${ this . toolPath } ` ) ;
this . _debug ( 'arguments:' ) ;
for ( const arg of this . args ) {
this . _debug ( ` ${ arg } ` ) ;
}
const optionsNonNull = this . _cloneExecOptions ( this . options ) ;
if ( ! optionsNonNull . silent && optionsNonNull . outStream ) {
optionsNonNull . outStream . write ( this . _getCommandString ( optionsNonNull ) + os . EOL ) ;
}
const state = new ExecState ( optionsNonNull , this . toolPath ) ;
state . on ( 'debug' , ( message ) => {
this . _debug ( message ) ;
} ) ;
const fileName = this . _getSpawnFileName ( ) ;
const cp = child . spawn ( fileName , this . _getSpawnArgs ( optionsNonNull ) , this . _getSpawnOptions ( this . options , fileName ) ) ;
const stdbuffer = '' ;
if ( cp . stdout ) {
cp . stdout . on ( 'data' , ( data ) => {
if ( this . options . listeners && this . options . listeners . stdout ) {
this . options . listeners . stdout ( data ) ;
}
if ( ! optionsNonNull . silent && optionsNonNull . outStream ) {
optionsNonNull . outStream . write ( data ) ;
}
this . _processLineBuffer ( data , stdbuffer , ( line ) => {
if ( this . options . listeners && this . options . listeners . stdline ) {
this . options . listeners . stdline ( line ) ;
}
} ) ;
} ) ;
}
const errbuffer = '' ;
if ( cp . stderr ) {
cp . stderr . on ( 'data' , ( data ) => {
state . processStderr = true ;
if ( this . options . listeners && this . options . listeners . stderr ) {
this . options . listeners . stderr ( data ) ;
}
if ( ! optionsNonNull . silent &&
optionsNonNull . errStream &&
optionsNonNull . outStream ) {
const s = optionsNonNull . failOnStdErr
? optionsNonNull . errStream
: optionsNonNull . outStream ;
s . write ( data ) ;
}
this . _processLineBuffer ( data , errbuffer , ( line ) => {
if ( this . options . listeners && this . options . listeners . errline ) {
this . options . listeners . errline ( line ) ;
}
} ) ;
} ) ;
}
cp . on ( 'error' , ( err ) => {
state . processError = err . message ;
state . processExited = true ;
state . processClosed = true ;
state . CheckComplete ( ) ;
} ) ;
cp . on ( 'exit' , ( code ) => {
state . processExitCode = code ;
state . processExited = true ;
this . _debug ( ` Exit code ${ code } received from tool ' ${ this . toolPath } ' ` ) ;
state . CheckComplete ( ) ;
} ) ;
cp . on ( 'close' , ( code ) => {
state . processExitCode = code ;
state . processExited = true ;
state . processClosed = true ;
this . _debug ( ` STDIO streams have closed for tool ' ${ this . toolPath } ' ` ) ;
state . CheckComplete ( ) ;
} ) ;
state . on ( 'done' , ( error , exitCode ) => {
if ( stdbuffer . length > 0 ) {
this . emit ( 'stdline' , stdbuffer ) ;
}
if ( errbuffer . length > 0 ) {
this . emit ( 'errline' , errbuffer ) ;
}
cp . removeAllListeners ( ) ;
if ( error ) {
reject ( error ) ;
}
else {
resolve ( exitCode ) ;
}
} ) ;
} ) ;
} ) ;
}
}
exports . ToolRunner = ToolRunner ;
/ * *
* Convert an arg string to an array of args . Handles escaping
*
* @ param argString string of arguments
* @ returns string [ ] array of arguments
* /
function argStringToArray ( argString ) {
const args = [ ] ;
let inQuotes = false ;
let escaped = false ;
let arg = '' ;
function append ( c ) {
// we only escape double quotes.
if ( escaped && c !== '"' ) {
arg += '\\' ;
}
arg += c ;
escaped = false ;
}
for ( let i = 0 ; i < argString . length ; i ++ ) {
const c = argString . charAt ( i ) ;
if ( c === '"' ) {
if ( ! escaped ) {
inQuotes = ! inQuotes ;
}
else {
append ( c ) ;
}
continue ;
}
if ( c === '\\' && escaped ) {
append ( c ) ;
continue ;
}
if ( c === '\\' && inQuotes ) {
escaped = true ;
continue ;
}
if ( c === ' ' && ! inQuotes ) {
if ( arg . length > 0 ) {
args . push ( arg ) ;
arg = '' ;
}
continue ;
}
append ( c ) ;
}
if ( arg . length > 0 ) {
args . push ( arg . trim ( ) ) ;
}
return args ;
}
exports . argStringToArray = argStringToArray ;
class ExecState extends events . EventEmitter {
constructor ( options , toolPath ) {
super ( ) ;
this . processClosed = false ; // tracks whether the process has exited and stdio is closed
this . processError = '' ;
this . processExitCode = 0 ;
this . processExited = false ; // tracks whether the process has exited
this . processStderr = false ; // tracks whether stderr was written to
this . delay = 10000 ; // 10 seconds
this . done = false ;
this . timeout = null ;
if ( ! toolPath ) {
throw new Error ( 'toolPath must not be empty' ) ;
}
this . options = options ;
this . toolPath = toolPath ;
if ( options . delay ) {
this . delay = options . delay ;
}
}
CheckComplete ( ) {
if ( this . done ) {
return ;
}
if ( this . processClosed ) {
this . _setResult ( ) ;
}
else if ( this . processExited ) {
this . timeout = setTimeout ( ExecState . HandleTimeout , this . delay , this ) ;
}
}
_debug ( message ) {
this . emit ( 'debug' , message ) ;
}
_setResult ( ) {
// determine whether there is an error
let error ;
if ( this . processExited ) {
if ( this . processError ) {
error = new Error ( ` There was an error when attempting to execute the process ' ${ this . toolPath } '. This may indicate the process failed to start. Error: ${ this . processError } ` ) ;
}
else if ( this . processExitCode !== 0 && ! this . options . ignoreReturnCode ) {
error = new Error ( ` The process ' ${ this . toolPath } ' failed with exit code ${ this . processExitCode } ` ) ;
}
else if ( this . processStderr && this . options . failOnStdErr ) {
error = new Error ( ` The process ' ${ this . toolPath } ' failed because one or more lines were written to the STDERR stream ` ) ;
}
}
// clear the timeout
if ( this . timeout ) {
clearTimeout ( this . timeout ) ;
this . timeout = null ;
}
this . done = true ;
this . emit ( 'done' , error , this . processExitCode ) ;
}
static HandleTimeout ( state ) {
if ( state . done ) {
return ;
}
if ( ! state . processClosed && state . processExited ) {
const message = ` The STDIO streams did not close within ${ state . delay /
1000 } seconds of the exit event from process '${state.toolPath}' . This may indicate a child process inherited the STDIO streams and has not yet exited . ` ;
state . _debug ( message ) ;
}
state . _setResult ( ) ;
}
}
//# sourceMappingURL=toolrunner.js.map
2019-12-19 04:08:12 +07:00
/***/ } ) ,
/***/ 86 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
const io = _ _importStar ( _ _webpack _require _ _ ( 1 ) ) ;
/ * *
* Cache json files for problem matchers
* /
function addMatchers ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-02-14 02:56:09 +07:00
const config _path = path . join ( _ _dirname , '..' , 'src' , 'configs' ) ;
2019-12-19 04:08:12 +07:00
const runner _dir = yield utils . getInput ( 'RUNNER_TOOL_CACHE' , false ) ;
2020-02-14 02:56:09 +07:00
yield io . cp ( path . join ( config _path , 'phpunit.json' ) , runner _dir ) ;
yield io . cp ( path . join ( config _path , 'php.json' ) , runner _dir ) ;
2019-12-19 04:08:12 +07:00
} ) ;
}
exports . addMatchers = addMatchers ;
2019-11-24 06:44:53 +07:00
/***/ } ) ,
/***/ 87 :
/***/ ( function ( module ) {
module . exports = require ( "os" ) ;
/***/ } ) ,
/***/ 129 :
/***/ ( function ( module ) {
module . exports = require ( "child_process" ) ;
/***/ } ) ,
/***/ 163 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const fs = _ _importStar ( _ _webpack _require _ _ ( 747 ) ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
const core = _ _importStar ( _ _webpack _require _ _ ( 470 ) ) ;
/ * *
* Function to get inputs from both with and env annotations .
*
* @ param name
* @ param mandatory
* /
function getInput ( name , mandatory ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const input = process . env [ name ] ;
switch ( input ) {
case '' :
case undefined :
return core . getInput ( name , { required : mandatory } ) ;
default :
return input ;
}
} ) ;
}
exports . getInput = getInput ;
/ * *
* Async foreach loop
*
* @ author https : //github.com/Atinux
* @ param array
* @ param callback
* /
function asyncForEach ( array , callback ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
for ( let index = 0 ; index < array . length ; index ++ ) {
yield callback ( array [ index ] , index , array ) ;
}
} ) ;
}
exports . asyncForEach = asyncForEach ;
/ * *
* Get color index
*
* @ param type
* /
function color ( type ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( type ) {
case 'error' :
return '31' ;
default :
case 'success' :
return '32' ;
case 'warning' :
return '33' ;
}
} ) ;
}
exports . color = color ;
/ * *
* Log to console
*
* @ param message
* @ param os _version
* @ param log _type
* @ param prefix
* /
function log ( message , os _version , log _type ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'win32' :
return ( 'printf "\\033[' +
( yield color ( log _type ) ) +
';1m' +
message +
' \\033[0m"' ) ;
case 'linux' :
case 'darwin' :
default :
return ( 'echo "\\033[' + ( yield color ( log _type ) ) + ';1m' + message + '\\033[0m"' ) ;
}
} ) ;
}
exports . log = log ;
/ * *
* Function to log a step
*
* @ param message
* @ param os _version
* /
function stepLog ( message , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'win32' :
return 'Step-Log "' + message + '"' ;
case 'linux' :
case 'darwin' :
return 'step_log "' + message + '"' ;
default :
return yield log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . stepLog = stepLog ;
/ * *
* Function to log a result
* @ param mark
* @ param subject
* @ param message
* /
function addLog ( mark , subject , message , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'win32' :
return 'Add-Log "' + mark + '" "' + subject + '" "' + message + '"' ;
case 'linux' :
case 'darwin' :
return 'add_log "' + mark + '" "' + subject + '" "' + message + '"' ;
default :
return yield log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . addLog = addLog ;
/ * *
* Read the scripts
*
* @ param filename
* @ param version
* @ param os _version
* /
function readScript ( filename , version , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-11-30 04:59:00 +07:00
return fs . readFileSync ( path . join ( _ _dirname , '../src/scripts/' + filename ) , 'utf8' ) ;
2019-11-24 06:44:53 +07:00
} ) ;
}
exports . readScript = readScript ;
/ * *
* Write final script which runs
*
* @ param filename
* @ param version
* @ param script
* /
function writeScript ( filename , script ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const runner _dir = yield getInput ( 'RUNNER_TOOL_CACHE' , false ) ;
const script _path = path . join ( runner _dir , filename ) ;
fs . writeFileSync ( script _path , script , { mode : 0o755 } ) ;
return script _path ;
} ) ;
}
exports . writeScript = writeScript ;
/ * *
* Function to break extension csv into an array
*
* @ param extension _csv
* /
function extensionArray ( extension _csv ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( extension _csv ) {
case '' :
case ' ' :
return [ ] ;
default :
2019-12-27 08:26:49 +07:00
return extension _csv
. split ( ',' )
. map ( function ( extension ) {
2019-11-24 06:44:53 +07:00
return extension
. trim ( )
. replace ( 'php-' , '' )
. replace ( 'php_' , '' ) ;
2019-12-27 08:26:49 +07:00
} )
. filter ( Boolean ) ;
2019-11-24 06:44:53 +07:00
}
} ) ;
}
exports . extensionArray = extensionArray ;
/ * *
2019-12-27 08:26:49 +07:00
* Function to break csv into an array
2019-11-24 06:44:53 +07:00
*
2019-12-27 08:26:49 +07:00
* @ param values _csv
2019-11-24 06:44:53 +07:00
* @ constructor
* /
2019-12-27 08:26:49 +07:00
function CSVArray ( values _csv ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-27 08:26:49 +07:00
switch ( values _csv ) {
2019-11-24 06:44:53 +07:00
case '' :
case ' ' :
return [ ] ;
default :
2019-12-27 08:26:49 +07:00
return values _csv
. split ( ',' )
. map ( function ( value ) {
return value . trim ( ) ;
} )
. filter ( Boolean ) ;
2019-11-24 06:44:53 +07:00
}
} ) ;
}
2019-12-27 08:26:49 +07:00
exports . CSVArray = CSVArray ;
2019-11-24 06:44:53 +07:00
/ * *
* Function to get prefix required to load an extension .
*
* @ param extension
* /
function getExtensionPrefix ( extension ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const zend = [ 'xdebug' , 'opcache' , 'ioncube' , 'eaccelerator' ] ;
switch ( zend . indexOf ( extension ) ) {
case 0 :
case 1 :
return 'zend_extension' ;
case - 1 :
default :
return 'extension' ;
}
} ) ;
}
exports . getExtensionPrefix = getExtensionPrefix ;
/ * *
* Function to get the suffix to suppress console output
*
* @ param os _version
* /
function suppressOutput ( os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'win32' :
return ' >$null 2>&1' ;
case 'linux' :
case 'darwin' :
return ' >/dev/null 2>&1' ;
default :
return yield log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . suppressOutput = suppressOutput ;
2019-12-10 06:52:33 +07:00
/***/ } ) ,
/***/ 357 :
/***/ ( function ( module ) {
module . exports = require ( "assert" ) ;
2019-11-24 06:44:53 +07:00
/***/ } ) ,
/***/ 431 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
2020-01-26 17:55:58 +07:00
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 ;
} ;
2019-11-24 06:44:53 +07:00
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
2020-01-26 17:55:58 +07:00
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
2019-11-24 06:44:53 +07:00
/ * *
* Commands
*
* Command Format :
2020-01-26 17:55:58 +07:00
* : : name key = value , key = value : : message
2019-11-24 06:44:53 +07:00
*
* Examples :
2020-01-26 17:55:58 +07:00
* : : warning : : This is the message
* : : set - env name = MY _VAR : : some value
2019-11-24 06:44:53 +07:00
* /
function issueCommand ( command , properties , message ) {
const cmd = new Command ( command , properties , message ) ;
process . stdout . write ( cmd . toString ( ) + os . EOL ) ;
}
exports . issueCommand = issueCommand ;
function issue ( name , message = '' ) {
issueCommand ( name , { } , message ) ;
}
exports . issue = issue ;
const CMD _STRING = '::' ;
class Command {
constructor ( command , properties , message ) {
if ( ! command ) {
command = 'missing.command' ;
}
this . command = command ;
this . properties = properties ;
this . message = message ;
}
toString ( ) {
let cmdStr = CMD _STRING + this . command ;
if ( this . properties && Object . keys ( this . properties ) . length > 0 ) {
cmdStr += ' ' ;
2020-01-17 15:15:04 +07:00
let first = true ;
2019-11-24 06:44:53 +07:00
for ( const key in this . properties ) {
if ( this . properties . hasOwnProperty ( key ) ) {
const val = this . properties [ key ] ;
if ( val ) {
2020-01-17 15:15:04 +07:00
if ( first ) {
first = false ;
}
else {
cmdStr += ',' ;
}
2020-01-26 17:55:58 +07:00
cmdStr += ` ${ key } = ${ escapeProperty ( val ) } ` ;
2019-11-24 06:44:53 +07:00
}
}
}
}
2020-01-26 17:55:58 +07:00
cmdStr += ` ${ CMD _STRING } ${ escapeData ( this . message ) } ` ;
2019-11-24 06:44:53 +07:00
return cmdStr ;
}
}
function escapeData ( s ) {
2020-01-26 17:55:58 +07:00
return ( s || '' )
. replace ( /%/g , '%25' )
. replace ( /\r/g , '%0D' )
. replace ( /\n/g , '%0A' ) ;
2019-11-24 06:44:53 +07:00
}
2020-01-26 17:55:58 +07:00
function escapeProperty ( s ) {
return ( s || '' )
. replace ( /%/g , '%25' )
2019-11-24 06:44:53 +07:00
. replace ( /\r/g , '%0D' )
. replace ( /\n/g , '%0A' )
2020-01-26 17:55:58 +07:00
. replace ( /:/g , '%3A' )
. replace ( /,/g , '%2C' ) ;
2019-11-24 06:44:53 +07:00
}
//# sourceMappingURL=command.js.map
/***/ } ) ,
/***/ 470 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
2020-01-26 17:55:58 +07:00
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 ;
} ;
2019-11-24 06:44:53 +07:00
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
const command _1 = _ _webpack _require _ _ ( 431 ) ;
2020-01-26 17:55:58 +07:00
const os = _ _importStar ( _ _webpack _require _ _ ( 87 ) ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
2019-11-24 06:44:53 +07:00
/ * *
* The code to exit an action
* /
var ExitCode ;
( function ( ExitCode ) {
/ * *
* A code indicating that the action was successful
* /
ExitCode [ ExitCode [ "Success" ] = 0 ] = "Success" ;
/ * *
* A code indicating that the action was a failure
* /
ExitCode [ ExitCode [ "Failure" ] = 1 ] = "Failure" ;
} ) ( ExitCode = exports . ExitCode || ( exports . ExitCode = { } ) ) ;
//-----------------------------------------------------------------------
// Variables
//-----------------------------------------------------------------------
/ * *
* Sets env variable for this action and future actions in the job
* @ param name the name of the variable to set
* @ param val the value of the variable
* /
function exportVariable ( name , val ) {
process . env [ name ] = val ;
command _1 . issueCommand ( 'set-env' , { name } , val ) ;
}
exports . exportVariable = exportVariable ;
/ * *
* Registers a secret which will get masked from logs
* @ param secret value of the secret
* /
function setSecret ( secret ) {
command _1 . issueCommand ( 'add-mask' , { } , secret ) ;
}
exports . setSecret = setSecret ;
/ * *
* Prepends inputPath to the PATH ( for this action and future actions )
* @ param inputPath
* /
function addPath ( inputPath ) {
command _1 . issueCommand ( 'add-path' , { } , inputPath ) ;
process . env [ 'PATH' ] = ` ${ inputPath } ${ path . delimiter } ${ process . env [ 'PATH' ] } ` ;
}
exports . addPath = addPath ;
/ * *
* Gets the value of an input . The value is also trimmed .
*
* @ param name name of the input to get
* @ param options optional . See InputOptions .
* @ returns string
* /
function getInput ( name , options ) {
const val = process . env [ ` INPUT_ ${ name . replace ( / /g , '_' ) . toUpperCase ( ) } ` ] || '' ;
if ( options && options . required && ! val ) {
throw new Error ( ` Input required and not supplied: ${ name } ` ) ;
}
return val . trim ( ) ;
}
exports . getInput = getInput ;
/ * *
* Sets the value of an output .
*
* @ param name name of the output to set
* @ param value value to store
* /
function setOutput ( name , value ) {
command _1 . issueCommand ( 'set-output' , { name } , value ) ;
}
exports . setOutput = setOutput ;
//-----------------------------------------------------------------------
// Results
//-----------------------------------------------------------------------
/ * *
* Sets the action status to failed .
* When the action exits it will be with an exit code of 1
* @ param message add error issue message
* /
function setFailed ( message ) {
process . exitCode = ExitCode . Failure ;
error ( message ) ;
}
exports . setFailed = setFailed ;
//-----------------------------------------------------------------------
// Logging Commands
//-----------------------------------------------------------------------
/ * *
* Writes debug message to user log
* @ param message debug message
* /
function debug ( message ) {
command _1 . issueCommand ( 'debug' , { } , message ) ;
}
exports . debug = debug ;
/ * *
* Adds an error issue
* @ param message error issue message
* /
function error ( message ) {
command _1 . issue ( 'error' , message ) ;
}
exports . error = error ;
/ * *
* Adds an warning issue
* @ param message warning issue message
* /
function warning ( message ) {
command _1 . issue ( 'warning' , message ) ;
}
exports . warning = warning ;
/ * *
* Writes info to log with console . log .
* @ param message info message
* /
function info ( message ) {
process . stdout . write ( message + os . EOL ) ;
}
exports . info = info ;
/ * *
* Begin an output group .
*
* Output until the next ` groupEnd ` will be foldable in this group
*
* @ param name The name of the output group
* /
function startGroup ( name ) {
command _1 . issue ( 'group' , name ) ;
}
exports . startGroup = startGroup ;
/ * *
* End an output group .
* /
function endGroup ( ) {
command _1 . issue ( 'endgroup' ) ;
}
exports . endGroup = endGroup ;
/ * *
* Wrap an asynchronous function call in a group .
*
* Returns the same type as the function itself .
*
* @ param name The name of the group
* @ param fn The function to wrap in the group
* /
function group ( name , fn ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
startGroup ( name ) ;
let result ;
try {
result = yield fn ( ) ;
}
finally {
endGroup ( ) ;
}
return result ;
} ) ;
}
exports . group = group ;
//-----------------------------------------------------------------------
// Wrapper action state
//-----------------------------------------------------------------------
/ * *
* Saves state for current action , the state can only be retrieved by this action ' s post job execution .
*
* @ param name name of the state to store
* @ param value value to store
* /
function saveState ( name , value ) {
command _1 . issueCommand ( 'save-state' , { name } , value ) ;
}
exports . saveState = saveState ;
/ * *
* Gets the value of an state set by this action ' s main execution .
*
* @ param name name of the state to get
* @ returns string
* /
function getState ( name ) {
return process . env [ ` STATE_ ${ name } ` ] || '' ;
}
exports . getState = getState ;
//# sourceMappingURL=core.js.map
2019-12-27 08:26:49 +07:00
/***/ } ) ,
/***/ 534 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
2020-01-07 09:36:14 +07:00
/ * *
* Function to get command to setup tool
*
* @ param os _version
* /
function getArchiveCommand ( os _version ) {
2019-12-27 08:26:49 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'linux' :
case 'darwin' :
return 'add_tool ' ;
case 'win32' :
return 'Add-Tool ' ;
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
2020-01-07 09:36:14 +07:00
exports . getArchiveCommand = getArchiveCommand ;
/ * *
* Function to get command to setup tools using composer
*
* @ param os _version
* /
function getPackageCommand ( os _version ) {
2019-12-27 08:26:49 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'linux' :
case 'darwin' :
2020-01-07 09:36:14 +07:00
return 'add_composer_tool ' ;
2019-12-27 08:26:49 +07:00
case 'win32' :
2020-01-07 09:36:14 +07:00
return 'Add-Composer-Tool ' ;
2019-12-27 08:26:49 +07:00
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
2020-01-07 09:36:14 +07:00
exports . getPackageCommand = getPackageCommand ;
/ * *
*
* Function to get command to setup PECL
*
* @ param os _version
* /
function getPECLCommand ( os _version ) {
2019-12-31 05:56:18 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'linux' :
case 'darwin' :
2020-01-07 09:36:14 +07:00
return 'add_pecl ' ;
2019-12-31 05:56:18 +07:00
case 'win32' :
2020-01-07 09:36:14 +07:00
return 'Add-PECL ' ;
2019-12-31 05:56:18 +07:00
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
2020-01-07 09:36:14 +07:00
exports . getPECLCommand = getPECLCommand ;
/ * *
* Function to get tool version
*
* @ param version
* /
function getToolVersion ( version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
// semver_regex - https://semver.org/
const semver _regex = /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/ ;
version = version . replace ( /[><=^]*/ , '' ) ;
switch ( true ) {
case semver _regex . test ( version ) :
return version ;
default :
return 'latest' ;
}
} ) ;
}
exports . getToolVersion = getToolVersion ;
/ * *
* Function to parse tool : version
*
* @ param release
* /
function parseTool ( release ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const parts = release . split ( ':' ) ;
const tool = parts [ 0 ] ;
const version = parts [ 1 ] ;
switch ( version ) {
case undefined :
return {
name : tool ,
version : 'latest'
} ;
default :
return {
name : tool ,
version : yield getToolVersion ( parts [ 1 ] )
} ;
}
} ) ;
}
exports . parseTool = parseTool ;
/ * *
* Function to get the url of tool with the given version
*
* @ param version
* @ param prefix
* @ param version _prefix
* @ param verb
* /
2020-02-03 01:21:44 +07:00
function getUri ( tool , extension , version , prefix , version _prefix , verb ) {
2020-01-07 09:36:14 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( version ) {
case 'latest' :
2020-02-03 01:21:44 +07:00
return [ prefix , version , verb , tool + extension ]
. filter ( Boolean )
. join ( '/' ) ;
2020-01-07 09:36:14 +07:00
default :
2020-02-03 01:21:44 +07:00
return [ prefix , verb , version _prefix + version , tool + extension ]
2020-01-07 09:36:14 +07:00
. filter ( Boolean )
. join ( '/' ) ;
}
} ) ;
}
exports . getUri = getUri ;
/ * *
* Helper function to get the codeception url
*
* @ param version
* @ param suffix
* /
2020-02-09 05:38:48 +07:00
function getCodeceptionUriBuilder ( version , suffix ) {
2020-01-07 09:36:14 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-02-09 05:38:48 +07:00
return [ 'releases' , version , suffix , 'codecept.phar' ]
. filter ( Boolean )
. join ( '/' ) ;
2020-01-07 09:36:14 +07:00
} ) ;
}
exports . getCodeceptionUriBuilder = getCodeceptionUriBuilder ;
/ * *
* Function to get the codeception url
*
* @ param version
* @ param php _version
* /
function getCodeceptionUri ( version , php _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-02-09 05:38:48 +07:00
const codecept = yield getCodeceptionUriBuilder ( version , '' ) ;
const codecept54 = yield getCodeceptionUriBuilder ( version , 'php54' ) ;
const codecept56 = yield getCodeceptionUriBuilder ( version , 'php56' ) ;
// Refer to https://codeception.com/builds
2020-01-07 09:36:14 +07:00
switch ( true ) {
case /latest/ . test ( version ) :
switch ( true ) {
2020-02-09 05:38:48 +07:00
case /5\.6|7\.[0|1]/ . test ( php _version ) :
2020-01-07 09:36:14 +07:00
return 'php56/codecept.phar' ;
2020-02-09 05:38:48 +07:00
case /7\.[2-4]/ . test ( php _version ) :
2020-01-07 09:36:14 +07:00
default :
return 'codecept.phar' ;
}
2020-02-09 05:38:48 +07:00
case /(^[4-9]|\d{2,})\..*/ . test ( version ) :
switch ( true ) {
case /5\.6|7\.[0|1]/ . test ( php _version ) :
return codecept56 ;
case /7\.[2-4]/ . test ( php _version ) :
default :
return codecept ;
}
case /(^2\.[4-5]\.\d+|^3\.[0-1]\.\d+).*/ . test ( version ) :
switch ( true ) {
case /5\.6/ . test ( php _version ) :
return codecept54 ;
case /7\.[0-4]/ . test ( php _version ) :
default :
return codecept ;
}
case /^2\.3\.\d+.*/ . test ( version ) :
switch ( true ) {
case /5\.[4-6]/ . test ( php _version ) :
return codecept54 ;
case /^7\.[0-4]$/ . test ( php _version ) :
default :
return codecept ;
}
case /(^2\.(1\.([6-9]|\d{2,}))|^2\.2\.\d+).*/ . test ( version ) :
switch ( true ) {
case /5\.[4-5]/ . test ( php _version ) :
return codecept54 ;
case /5.6|7\.[0-4]/ . test ( php _version ) :
default :
return codecept ;
}
case /(^2\.(1\.[0-5]|0\.\d+)|^1\.[6-8]\.\d+).*/ . test ( version ) :
return codecept ;
2020-01-07 09:36:14 +07:00
default :
2020-02-09 05:38:48 +07:00
return yield codecept ;
2020-01-07 09:36:14 +07:00
}
} ) ;
}
exports . getCodeceptionUri = getCodeceptionUri ;
2020-01-21 03:10:24 +07:00
/ * *
* Helper function to get script to setup phive
*
* @ param tool
* @ param version
* @ param url
* @ param os _version
* /
function addPhive ( version , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( version ) {
case 'latest' :
return ( ( yield getArchiveCommand ( os _version ) ) +
'https://phar.io/releases/phive.phar phive' ) ;
default :
return ( ( yield getArchiveCommand ( os _version ) ) +
'https://github.com/phar-io/phive/releases/download/' +
version +
'/phive-' +
version +
'.phar phive' ) ;
}
} ) ;
}
exports . addPhive = addPhive ;
2020-01-07 09:36:14 +07:00
/ * *
* Function to get the PHPUnit url
*
* @ param version
* /
function getPhpunitUrl ( tool , version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const phpunit = 'https://phar.phpunit.de' ;
switch ( version ) {
case 'latest' :
return phpunit + '/' + tool + '.phar' ;
default :
return phpunit + '/' + tool + '-' + version + '.phar' ;
}
} ) ;
}
exports . getPhpunitUrl = getPhpunitUrl ;
/ * *
* Function to get the Deployer url
*
* @ param version
* /
function getDeployerUrl ( version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const deployer = 'https://deployer.org' ;
switch ( version ) {
case 'latest' :
return deployer + '/deployer.phar' ;
default :
return deployer + '/releases/v' + version + '/deployer.phar' ;
}
} ) ;
}
exports . getDeployerUrl = getDeployerUrl ;
2020-01-26 12:41:36 +07:00
/ * *
* Function to get the Deployer url
*
* @ param version
* @ param os _version
* /
function getSymfonyUri ( version , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let filename = '' ;
switch ( os _version ) {
case 'linux' :
case 'darwin' :
filename = 'symfony_' + os _version + '_amd64' ;
break ;
case 'win32' :
filename = 'symfony_windows_amd64.exe' ;
break ;
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
switch ( version ) {
case 'latest' :
return 'releases/latest/download/' + filename ;
default :
return 'releases/download/v' + version + '/' + filename ;
}
} ) ;
}
exports . getSymfonyUri = getSymfonyUri ;
2020-02-22 11:36:14 +07:00
/ * *
* Function to get the WP - CLI url
*
* @ param version
* /
function getWpCliUrl ( version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( version ) {
case 'latest' :
2020-02-22 23:11:40 +07:00
return 'wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true' ;
2020-02-22 11:36:14 +07:00
default :
2020-02-22 23:11:40 +07:00
return yield getUri ( 'wp-cli' , '-' + version + '.phar' , version , 'wp-cli/wp-cli/releases' , 'v' , 'download' ) ;
2020-02-22 11:36:14 +07:00
}
} ) ;
}
exports . getWpCliUrl = getWpCliUrl ;
2020-01-07 09:36:14 +07:00
/ * *
* Function to add / move composer in the tools list
*
* @ param tools
* /
function addComposer ( tools _list ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const regex = /^composer($|:.*)/ ;
const composer = tools _list . filter ( tool => regex . test ( tool ) ) [ 0 ] ;
switch ( composer ) {
case undefined :
break ;
default :
tools _list = tools _list . filter ( tool => ! regex . test ( tool ) ) ;
break ;
}
tools _list . unshift ( 'composer' ) ;
return tools _list ;
} ) ;
}
exports . addComposer = addComposer ;
/ * *
* Function to get Tools list after cleanup
*
* @ param tools _csv
* /
function getCleanedToolsList ( tools _csv ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let tools _list = yield utils . CSVArray ( tools _csv ) ;
tools _list = yield addComposer ( tools _list ) ;
tools _list = tools _list
. map ( function ( extension ) {
return extension
. trim ( )
. replace ( /robmorgan\/|hirak\/|narrowspark\/automatic-/ , '' ) ;
} )
. filter ( Boolean ) ;
return [ ... new Set ( tools _list ) ] ;
} ) ;
}
exports . getCleanedToolsList = getCleanedToolsList ;
/ * *
* Helper function to get script to setup a tool using a phar url
*
* @ param tool
* @ param version
* @ param url
* @ param os _version
* /
function addArchive ( tool , version , url , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
return ( yield getArchiveCommand ( os _version ) ) + url + ' ' + tool ;
} ) ;
}
exports . addArchive = addArchive ;
2020-01-17 14:28:28 +07:00
/ * *
* Function to get the script to setup php - config and phpize
*
* @ param tool
* @ param os _version
* /
function addDevTools ( tool , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
switch ( os _version ) {
case 'linux' :
return ( 'add_devtools' +
'\n' +
( yield utils . addLog ( '$tick' , tool , 'Added' , 'linux' ) ) ) ;
case 'darwin' :
return yield utils . addLog ( '$tick' , tool , 'Added' , 'darwin' ) ;
case 'win32' :
return yield utils . addLog ( '$cross' , tool , tool + ' is not a windows tool' , 'win32' ) ;
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . addDevTools = addDevTools ;
2020-01-07 09:36:14 +07:00
/ * *
* Helper function to get script to setup a tool using composer
*
* @ param tool
* @ param release
* @ param prefix
* @ param os _version
* /
function addPackage ( tool , release , prefix , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const tool _command = yield getPackageCommand ( os _version ) ;
return tool _command + tool + ' ' + release + ' ' + prefix ;
} ) ;
}
exports . addPackage = addPackage ;
2019-12-27 08:26:49 +07:00
/ * *
* Setup tools
*
* @ param tool _csv
* @ param os _version
* /
2020-01-07 09:36:14 +07:00
function addTools ( tools _csv , php _version , os _version ) {
2019-12-27 08:26:49 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-28 02:12:00 +07:00
let script = '\n' + ( yield utils . stepLog ( 'Setup Tools' , os _version ) ) ;
2020-01-07 09:36:14 +07:00
const tools _list = yield getCleanedToolsList ( tools _csv ) ;
yield utils . asyncForEach ( tools _list , function ( release ) {
2019-12-27 08:26:49 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-01-07 09:36:14 +07:00
const tool _data = yield parseTool ( release ) ;
const tool = tool _data . name ;
const version = tool _data . version ;
const github = 'https://github.com/' ;
2020-02-03 01:21:44 +07:00
let uri = yield getUri ( tool , '.phar' , version , 'releases' , '' , 'download' ) ;
2019-12-27 08:26:49 +07:00
script += '\n' ;
2020-01-07 09:36:14 +07:00
let url = '' ;
2019-12-27 08:26:49 +07:00
switch ( tool ) {
2020-02-03 01:21:44 +07:00
case 'cs2pr' :
uri = yield getUri ( tool , '' , version , 'releases' , '' , 'download' ) ;
url = github + 'staabm/annotate-pull-request-from-checkstyle/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
break ;
2019-12-27 08:26:49 +07:00
case 'php-cs-fixer' :
2020-02-03 01:21:44 +07:00
uri = yield getUri ( tool , '.phar' , version , 'releases' , 'v' , 'download' ) ;
2020-01-07 09:36:14 +07:00
url = github + 'FriendsOfPHP/PHP-CS-Fixer/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
case 'phpcs' :
case 'phpcbf' :
2020-01-07 09:36:14 +07:00
url = github + 'squizlabs/PHP_CodeSniffer/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
2020-01-21 03:10:24 +07:00
case 'phive' :
script += yield addPhive ( version , os _version ) ;
break ;
2019-12-27 08:26:49 +07:00
case 'phpstan' :
2020-01-07 09:36:14 +07:00
url = github + 'phpstan/phpstan/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
case 'phpmd' :
2020-01-07 09:36:14 +07:00
url = github + 'phpmd/phpmd/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
2019-12-28 02:12:00 +07:00
case 'psalm' :
2020-01-07 09:36:14 +07:00
url = github + 'vimeo/psalm/' + uri ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-28 02:12:00 +07:00
break ;
2019-12-27 08:26:49 +07:00
case 'composer' :
2020-02-25 23:35:48 +07:00
// If RC is released as latest release, switch to getcomposer.
// Prefered source is GitHub as it is faster.
// url = github + 'composer/composer/releases/latest/download/composer.phar';
url = 'https://getcomposer.org/composer-stable.phar' ;
2020-01-07 09:36:14 +07:00
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
case 'codeception' :
2020-01-07 09:36:14 +07:00
url =
'https://codeception.com/' +
( yield getCodeceptionUri ( version , php _version ) ) ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
2020-01-07 09:36:14 +07:00
case 'phpcpd' :
2019-12-27 08:26:49 +07:00
case 'phpunit' :
2020-01-07 09:36:14 +07:00
url = yield getPhpunitUrl ( tool , version ) ;
script += yield addArchive ( tool , version , url , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
case 'deployer' :
2020-01-07 09:36:14 +07:00
url = yield getDeployerUrl ( version ) ;
script += yield addArchive ( tool , version , url , os _version ) ;
break ;
2020-02-25 11:30:07 +07:00
case 'flex' :
script += yield addPackage ( tool , release , 'symfony/' , os _version ) ;
break ;
2020-01-07 09:36:14 +07:00
case 'phinx' :
script += yield addPackage ( tool , release , 'robmorgan/' , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
case 'prestissimo' :
2020-01-07 09:36:14 +07:00
script += yield addPackage ( tool , release , 'hirak/' , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
2020-01-04 13:22:15 +07:00
case 'composer-prefetcher' :
2020-01-07 09:36:14 +07:00
script += yield addPackage ( tool , release , 'narrowspark/automatic-' , os _version ) ;
2020-01-04 13:22:15 +07:00
break ;
2019-12-27 08:26:49 +07:00
case 'pecl' :
script += yield getPECLCommand ( os _version ) ;
break ;
2020-01-17 14:28:28 +07:00
case 'php-config' :
case 'phpize' :
script += yield addDevTools ( tool , os _version ) ;
break ;
2020-01-26 12:41:36 +07:00
case 'symfony' :
case 'symfony-cli' :
uri = yield getSymfonyUri ( version , os _version ) ;
url = github + 'symfony/cli/' + uri ;
script += yield addArchive ( 'symfony' , version , url , os _version ) ;
break ;
2020-02-22 11:36:14 +07:00
case 'wp-cli' :
2020-02-22 23:11:40 +07:00
url = github + ( yield getWpCliUrl ( version ) ) ;
2020-02-22 11:36:14 +07:00
script += yield addArchive ( tool , version , url , os _version ) ;
break ;
2019-12-27 08:26:49 +07:00
default :
2020-01-07 09:36:14 +07:00
script += yield utils . addLog ( '$cross' , tool , 'Tool ' + tool + ' is not supported' , os _version ) ;
2019-12-27 08:26:49 +07:00
break ;
}
} ) ;
} ) ;
return script ;
} ) ;
}
exports . addTools = addTools ;
2019-11-24 06:44:53 +07:00
/***/ } ) ,
/***/ 614 :
/***/ ( function ( module ) {
module . exports = require ( "events" ) ;
/***/ } ) ,
/***/ 622 :
/***/ ( function ( module ) {
module . exports = require ( "path" ) ;
/***/ } ) ,
/***/ 635 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
const extensions = _ _importStar ( _ _webpack _require _ _ ( 911 ) ) ;
const config = _ _importStar ( _ _webpack _require _ _ ( 641 ) ) ;
/ * *
* Function to setup Xdebug
*
* @ param version
* @ param os _version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function addCoverageXdebug ( version , os _version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-09 16:24:14 +07:00
switch ( version ) {
case '8.0' :
return ( '\n' +
( yield utils . addLog ( '$cross' , 'xdebug' , 'Xdebug currently only supports PHP 7.4 or lower' , os _version ) ) ) ;
case '7.4' :
default :
return ( ( yield extensions . addExtension ( 'xdebug' , version , os _version , true ) ) +
2019-12-26 20:01:18 +07:00
pipe +
2019-12-09 16:24:14 +07:00
'\n' +
( yield utils . addLog ( '$tick' , 'xdebug' , 'Xdebug enabled as coverage driver' , os _version ) ) ) ;
}
2019-11-24 06:44:53 +07:00
} ) ;
}
exports . addCoverageXdebug = addCoverageXdebug ;
/ * *
* Function to setup PCOV
*
* @ param version
* @ param os _version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function addCoveragePCOV ( version , os _version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let script = '\n' ;
2020-02-09 05:38:48 +07:00
switch ( true ) {
2019-11-24 06:44:53 +07:00
default :
script +=
( yield extensions . addExtension ( 'pcov' , version , os _version , true ) ) +
2019-12-26 20:01:18 +07:00
pipe +
2019-11-24 06:44:53 +07:00
'\n' ;
script +=
( yield config . addINIValues ( 'pcov.enabled=1' , os _version , true ) ) + '\n' ;
// add command to disable xdebug and enable pcov
switch ( os _version ) {
case 'linux' :
case 'darwin' :
2019-12-26 20:01:18 +07:00
script += 'remove_extension xdebug' + pipe + '\n' ;
2019-11-24 06:44:53 +07:00
break ;
case 'win32' :
2019-12-26 20:01:18 +07:00
script += 'Remove-Extension xdebug' + pipe + '\n' ;
2019-11-24 06:44:53 +07:00
break ;
}
// success
script += yield utils . addLog ( '$tick' , 'coverage: pcov' , 'PCOV enabled as coverage driver' , os _version ) ;
// version is not supported
break ;
2020-02-09 05:38:48 +07:00
case /5\.[3-6]|7\.0/ . test ( version ) :
2019-11-24 06:44:53 +07:00
script += yield utils . addLog ( '$cross' , 'pcov' , 'PHP 7.1 or newer is required' , os _version ) ;
break ;
}
return script ;
} ) ;
}
exports . addCoveragePCOV = addCoveragePCOV ;
/ * *
* Function to disable Xdebug and PCOV
*
* @ param version
* @ param os _version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function disableCoverage ( version , os _version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let script = '\n' ;
switch ( os _version ) {
case 'linux' :
case 'darwin' :
2019-12-26 20:01:18 +07:00
script += 'remove_extension xdebug' + pipe + '\n' ;
script += 'remove_extension pcov' + pipe + '\n' ;
2019-11-24 06:44:53 +07:00
break ;
case 'win32' :
2019-12-26 20:01:18 +07:00
script += 'Remove-Extension xdebug' + pipe + '\n' ;
script += 'Remove-Extension pcov' + pipe + '\n' ;
2019-11-24 06:44:53 +07:00
break ;
}
script += yield utils . addLog ( '$tick' , 'none' , 'Disabled Xdebug and PCOV' , os _version ) ;
return script ;
} ) ;
}
exports . disableCoverage = disableCoverage ;
/ * *
* Function to set coverage driver
*
* @ param coverage _driver
* @ param version
* @ param os _version
* /
function addCoverage ( coverage _driver , version , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-01-26 17:45:39 +07:00
coverage _driver = coverage _driver . toLowerCase ( ) ;
2019-11-24 06:44:53 +07:00
const script = '\n' + ( yield utils . stepLog ( 'Setup Coverage' , os _version ) ) ;
2019-12-26 20:01:18 +07:00
const pipe = yield utils . suppressOutput ( os _version ) ;
2019-11-24 06:44:53 +07:00
switch ( coverage _driver ) {
case 'pcov' :
2019-12-26 20:01:18 +07:00
return script + ( yield addCoveragePCOV ( version , os _version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
case 'xdebug' :
2019-12-26 20:01:18 +07:00
return script + ( yield addCoverageXdebug ( version , os _version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
case 'none' :
2019-12-26 20:01:18 +07:00
return script + ( yield disableCoverage ( version , os _version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
default :
return '' ;
}
} ) ;
}
exports . addCoverage = addCoverage ;
/***/ } ) ,
/***/ 641 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
/ * *
* Add script to set custom ini values for unix
*
* @ param ini _values _csv
* /
function addINIValuesUnix ( ini _values _csv ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-27 08:26:49 +07:00
const ini _values = yield utils . CSVArray ( ini _values _csv ) ;
2019-11-24 06:44:53 +07:00
let script = '\n' ;
yield utils . asyncForEach ( ini _values , function ( line ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
script +=
( yield utils . addLog ( '$tick' , line , 'Added to php.ini' , 'linux' ) ) + '\n' ;
} ) ;
} ) ;
return 'echo "' + ini _values . join ( '\n' ) + '" >> $ini_file' + script ;
} ) ;
}
exports . addINIValuesUnix = addINIValuesUnix ;
/ * *
* Add script to set custom ini values for windows
*
* @ param ini _values _csv
* /
function addINIValuesWindows ( ini _values _csv ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-27 08:26:49 +07:00
const ini _values = yield utils . CSVArray ( ini _values _csv ) ;
2019-11-24 06:44:53 +07:00
let script = '\n' ;
yield utils . asyncForEach ( ini _values , function ( line ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
script +=
( yield utils . addLog ( '$tick' , line , 'Added to php.ini' , 'win32' ) ) + '\n' ;
} ) ;
} ) ;
return ( 'Add-Content C:\\tools\\php\\php.ini "' +
ini _values . join ( '\n' ) +
'"' +
script ) ;
} ) ;
}
exports . addINIValuesWindows = addINIValuesWindows ;
/ * *
* Function to add custom ini values
*
* @ param ini _values _csv
* @ param os _version
* /
function addINIValues ( ini _values _csv , os _version , no _step = false ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let script = '\n' ;
switch ( no _step ) {
case true :
script +=
( yield utils . stepLog ( 'Add php.ini values' , os _version ) ) +
( yield utils . suppressOutput ( os _version ) ) +
'\n' ;
break ;
case false :
default :
script += ( yield utils . stepLog ( 'Add php.ini values' , os _version ) ) + '\n' ;
break ;
}
switch ( os _version ) {
case 'win32' :
return script + ( yield addINIValuesWindows ( ini _values _csv ) ) ;
case 'darwin' :
case 'linux' :
return script + ( yield addINIValuesUnix ( ini _values _csv ) ) ;
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . addINIValues = addINIValues ;
/***/ } ) ,
/***/ 655 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const exec _1 = _ _webpack _require _ _ ( 986 ) ;
const core = _ _importStar ( _ _webpack _require _ _ ( 470 ) ) ;
const config = _ _importStar ( _ _webpack _require _ _ ( 641 ) ) ;
const coverage = _ _importStar ( _ _webpack _require _ _ ( 635 ) ) ;
const extensions = _ _importStar ( _ _webpack _require _ _ ( 911 ) ) ;
2019-12-27 08:26:49 +07:00
const tools = _ _importStar ( _ _webpack _require _ _ ( 534 ) ) ;
2019-11-24 06:44:53 +07:00
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
2019-12-19 04:08:12 +07:00
const matchers = _ _importStar ( _ _webpack _require _ _ ( 86 ) ) ;
2019-11-24 06:44:53 +07:00
/ * *
* Build the script
*
* @ param filename
* @ param version
* @ param os _version
* /
function build ( filename , version , os _version ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
// taking inputs
2019-12-09 12:22:43 +07:00
const extension _csv = ( yield utils . getInput ( 'extensions' , false ) ) ||
2020-02-17 04:05:18 +07:00
( yield utils . getInput ( 'extension' , false ) ) ;
const ini _values _csv = yield utils . getInput ( 'ini-values' , false ) ;
2019-11-24 06:44:53 +07:00
const coverage _driver = yield utils . getInput ( 'coverage' , false ) ;
2019-12-27 08:26:49 +07:00
const pecl = yield utils . getInput ( 'pecl' , false ) ;
let tools _csv = yield utils . getInput ( 'tools' , false ) ;
2020-01-26 02:34:09 +07:00
if ( pecl == 'true' ||
2020-02-14 00:09:00 +07:00
/.*-(beta|alpha|devel|snapshot).*/ . test ( extension _csv ) ||
/.*-(\d+\.\d+\.\d+).*/ . test ( extension _csv ) ) {
2019-12-27 08:26:49 +07:00
tools _csv = 'pecl, ' + tools _csv ;
}
2019-11-24 06:44:53 +07:00
let script = yield utils . readScript ( filename , version , os _version ) ;
2020-01-07 09:36:14 +07:00
script += yield tools . addTools ( tools _csv , version , os _version ) ;
2019-11-24 06:44:53 +07:00
if ( extension _csv ) {
script += yield extensions . addExtension ( extension _csv , version , os _version ) ;
}
if ( ini _values _csv ) {
script += yield config . addINIValues ( ini _values _csv , os _version ) ;
}
if ( coverage _driver ) {
script += yield coverage . addCoverage ( coverage _driver , version , os _version ) ;
}
return yield utils . writeScript ( filename , script ) ;
} ) ;
}
exports . build = build ;
/ * *
* Run the script
* /
function run ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
try {
2019-12-14 11:43:01 +07:00
let version = yield utils . getInput ( 'php-version' , true ) ;
2019-12-20 19:59:05 +07:00
version = version . length > 1 ? version . slice ( 0 , 3 ) : version + '.0' ;
2020-02-14 00:09:00 +07:00
const os _version = process . platform ;
2019-11-24 06:44:53 +07:00
// check the os version and run the respective script
let script _path = '' ;
switch ( os _version ) {
case 'darwin' :
2019-12-27 08:26:49 +07:00
case 'linux' :
2019-11-24 06:44:53 +07:00
script _path = yield build ( os _version + '.sh' , version , os _version ) ;
2020-02-09 05:38:48 +07:00
yield exec _1 . exec ( 'bash ' + script _path + ' ' + version + ' ' + _ _dirname ) ;
2019-11-24 06:44:53 +07:00
break ;
case 'win32' :
script _path = yield build ( 'win32.ps1' , version , os _version ) ;
2019-12-26 20:01:18 +07:00
yield exec _1 . exec ( 'pwsh ' + script _path + ' ' + version + ' ' + _ _dirname ) ;
2019-11-24 06:44:53 +07:00
break ;
}
2019-12-19 04:08:12 +07:00
yield matchers . addMatchers ( ) ;
2019-11-24 06:44:53 +07:00
}
catch ( error ) {
core . setFailed ( error . message ) ;
}
} ) ;
}
exports . run = run ;
// call the run function
run ( ) ;
2019-12-10 06:52:33 +07:00
/***/ } ) ,
/***/ 669 :
/***/ ( function ( module ) {
module . exports = require ( "util" ) ;
/***/ } ) ,
/***/ 672 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
var _a ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
const assert _1 = _ _webpack _require _ _ ( 357 ) ;
const fs = _ _webpack _require _ _ ( 747 ) ;
const path = _ _webpack _require _ _ ( 622 ) ;
_a = fs . promises , exports . chmod = _a . chmod , exports . copyFile = _a . copyFile , exports . lstat = _a . lstat , exports . mkdir = _a . mkdir , exports . readdir = _a . readdir , exports . readlink = _a . readlink , exports . rename = _a . rename , exports . rmdir = _a . rmdir , exports . stat = _a . stat , exports . symlink = _a . symlink , exports . unlink = _a . unlink ;
exports . IS _WINDOWS = process . platform === 'win32' ;
function exists ( fsPath ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
try {
yield exports . stat ( fsPath ) ;
}
catch ( err ) {
if ( err . code === 'ENOENT' ) {
return false ;
}
throw err ;
}
return true ;
} ) ;
}
exports . exists = exists ;
function isDirectory ( fsPath , useStat = false ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const stats = useStat ? yield exports . stat ( fsPath ) : yield exports . lstat ( fsPath ) ;
return stats . isDirectory ( ) ;
} ) ;
}
exports . isDirectory = isDirectory ;
/ * *
* On OSX / Linux , true if path starts with '/' . On Windows , true for paths like :
* \ , \ hello , \ \ hello \ share , C : , and C : \ hello ( and corresponding alternate separator cases ) .
* /
function isRooted ( p ) {
p = normalizeSeparators ( p ) ;
if ( ! p ) {
throw new Error ( 'isRooted() parameter "p" cannot be empty' ) ;
}
if ( exports . IS _WINDOWS ) {
return ( p . startsWith ( '\\' ) || /^[A-Z]:/i . test ( p ) // e.g. \ or \hello or \\hello
) ; // e.g. C: or C:\hello
}
return p . startsWith ( '/' ) ;
}
exports . isRooted = isRooted ;
/ * *
* Recursively create a directory at ` fsPath ` .
*
* This implementation is optimistic , meaning it attempts to create the full
* path first , and backs up the path stack from there .
*
* @ param fsPath The path to create
* @ param maxDepth The maximum recursion depth
* @ param depth The current recursion depth
* /
function mkdirP ( fsPath , maxDepth = 1000 , depth = 1 ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
assert _1 . ok ( fsPath , 'a path argument must be provided' ) ;
fsPath = path . resolve ( fsPath ) ;
if ( depth >= maxDepth )
return exports . mkdir ( fsPath ) ;
try {
yield exports . mkdir ( fsPath ) ;
return ;
}
catch ( err ) {
switch ( err . code ) {
case 'ENOENT' : {
yield mkdirP ( path . dirname ( fsPath ) , maxDepth , depth + 1 ) ;
yield exports . mkdir ( fsPath ) ;
return ;
}
default : {
let stats ;
try {
stats = yield exports . stat ( fsPath ) ;
}
catch ( err2 ) {
throw err ;
}
if ( ! stats . isDirectory ( ) )
throw err ;
}
}
}
} ) ;
}
exports . mkdirP = mkdirP ;
/ * *
* Best effort attempt to determine whether a file exists and is executable .
* @ param filePath file path to check
* @ param extensions additional file extensions to try
* @ return if file exists and is executable , returns the file path . otherwise empty string .
* /
function tryGetExecutablePath ( filePath , extensions ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
let stats = undefined ;
try {
// test file exists
stats = yield exports . stat ( filePath ) ;
}
catch ( err ) {
if ( err . code !== 'ENOENT' ) {
// eslint-disable-next-line no-console
console . log ( ` Unexpected error attempting to determine if executable file exists ' ${ filePath } ': ${ err } ` ) ;
}
}
if ( stats && stats . isFile ( ) ) {
if ( exports . IS _WINDOWS ) {
// on Windows, test for valid extension
const upperExt = path . extname ( filePath ) . toUpperCase ( ) ;
if ( extensions . some ( validExt => validExt . toUpperCase ( ) === upperExt ) ) {
return filePath ;
}
}
else {
if ( isUnixExecutable ( stats ) ) {
return filePath ;
}
}
}
// try each extension
const originalFilePath = filePath ;
for ( const extension of extensions ) {
filePath = originalFilePath + extension ;
stats = undefined ;
try {
stats = yield exports . stat ( filePath ) ;
}
catch ( err ) {
if ( err . code !== 'ENOENT' ) {
// eslint-disable-next-line no-console
console . log ( ` Unexpected error attempting to determine if executable file exists ' ${ filePath } ': ${ err } ` ) ;
}
}
if ( stats && stats . isFile ( ) ) {
if ( exports . IS _WINDOWS ) {
// preserve the case of the actual file (since an extension was appended)
try {
const directory = path . dirname ( filePath ) ;
const upperName = path . basename ( filePath ) . toUpperCase ( ) ;
for ( const actualName of yield exports . readdir ( directory ) ) {
if ( upperName === actualName . toUpperCase ( ) ) {
filePath = path . join ( directory , actualName ) ;
break ;
}
}
}
catch ( err ) {
// eslint-disable-next-line no-console
console . log ( ` Unexpected error attempting to determine the actual case of the file ' ${ filePath } ': ${ err } ` ) ;
}
return filePath ;
}
else {
if ( isUnixExecutable ( stats ) ) {
return filePath ;
}
}
}
}
return '' ;
} ) ;
}
exports . tryGetExecutablePath = tryGetExecutablePath ;
function normalizeSeparators ( p ) {
p = p || '' ;
if ( exports . IS _WINDOWS ) {
// convert slashes on Windows
p = p . replace ( /\//g , '\\' ) ;
// remove redundant slashes
return p . replace ( /\\\\+/g , '\\' ) ;
}
// remove redundant slashes
return p . replace ( /\/\/+/g , '/' ) ;
}
// on Mac/Linux, test the execute bit
// R W X R W X R W X
// 256 128 64 32 16 8 4 2 1
function isUnixExecutable ( stats ) {
return ( ( stats . mode & 1 ) > 0 ||
( ( stats . mode & 8 ) > 0 && stats . gid === process . getgid ( ) ) ||
( ( stats . mode & 64 ) > 0 && stats . uid === process . getuid ( ) ) ) ;
}
//# sourceMappingURL=io-util.js.map
2019-11-24 06:44:53 +07:00
/***/ } ) ,
/***/ 747 :
/***/ ( function ( module ) {
module . exports = require ( "fs" ) ;
/***/ } ) ,
/***/ 911 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( 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 } ) ;
const path = _ _importStar ( _ _webpack _require _ _ ( 622 ) ) ;
const utils = _ _importStar ( _ _webpack _require _ _ ( 163 ) ) ;
/ * *
* Install and enable extensions for darwin
*
* @ param extension _csv
* @ param version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function addExtensionDarwin ( extension _csv , version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const extensions = yield utils . extensionArray ( extension _csv ) ;
let script = '\n' ;
yield utils . asyncForEach ( extensions , function ( extension ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
extension = extension . toLowerCase ( ) ;
2019-12-26 20:01:18 +07:00
const version _extension = version + extension ;
2020-02-16 01:55:50 +07:00
const [ ext _name , ext _version ] = extension . split ( '-' ) ;
const prefix = yield utils . getExtensionPrefix ( ext _name ) ;
2019-11-24 06:44:53 +07:00
let install _command = '' ;
2019-12-24 00:49:38 +07:00
switch ( true ) {
2020-01-26 02:34:09 +07:00
// match pre-release versions
case /.*-(beta|alpha|devel|snapshot)/ . test ( version _extension ) :
2020-01-30 13:33:30 +07:00
script +=
'\nadd_unstable_extension ' +
2020-02-16 01:55:50 +07:00
ext _name +
2020-01-30 13:33:30 +07:00
' ' +
2020-02-16 01:55:50 +07:00
ext _version +
2020-01-30 13:33:30 +07:00
' ' +
prefix ;
return ;
2020-02-23 20:30:40 +07:00
// match exact versions
case /.*-\d+\.\d+\.\d+.*/ . test ( version _extension ) :
script +=
'\nadd_pecl_extension ' + ext _name + ' ' + ext _version + ' ' + prefix ;
return ;
2020-02-05 22:28:44 +07:00
case /5\.3xdebug/ . test ( version _extension ) :
install _command = 'sudo pecl install -f xdebug-2.2.7' + pipe ;
break ;
case /5\.4xdebug/ . test ( version _extension ) :
install _command = 'sudo pecl install -f xdebug-2.4.1' + pipe ;
break ;
case /5\.[5-6]xdebug/ . test ( version _extension ) :
2020-01-26 02:34:09 +07:00
install _command = 'sudo pecl install -f xdebug-2.5.5' + pipe ;
2019-11-24 06:44:53 +07:00
break ;
2020-01-17 07:21:46 +07:00
case /7\.0xdebug/ . test ( version _extension ) :
2020-01-26 02:34:09 +07:00
install _command = 'sudo pecl install -f xdebug-2.9.0' + pipe ;
2020-01-17 07:21:46 +07:00
break ;
2019-12-26 20:01:18 +07:00
case /5\.6redis/ . test ( version _extension ) :
2020-01-26 02:34:09 +07:00
install _command = 'sudo pecl install -f redis-2.2.8' + pipe ;
2019-12-26 20:01:18 +07:00
break ;
2020-01-21 02:36:31 +07:00
case /[5-9]\.\dimagick/ . test ( version _extension ) :
install _command =
'brew install pkg-config imagemagick' +
pipe +
2020-01-26 02:34:09 +07:00
' && sudo pecl install -f imagick' +
2020-01-21 02:36:31 +07:00
pipe ;
break ;
2019-12-26 20:01:18 +07:00
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/ . test ( version _extension ) :
2020-02-16 00:21:02 +07:00
script +=
2019-12-26 20:01:18 +07:00
'sh ' +
path . join ( _ _dirname , '../src/scripts/ext/phalcon_darwin.sh' ) +
' ' +
extension +
2019-12-31 07:16:33 +07:00
' ' +
2020-02-16 00:21:02 +07:00
version ;
return ;
2019-11-24 06:44:53 +07:00
default :
2020-01-26 02:34:09 +07:00
install _command = 'sudo pecl install -f ' + extension + pipe ;
2019-11-24 06:44:53 +07:00
break ;
}
script +=
'\nadd_extension ' +
2020-02-23 20:30:40 +07:00
extension +
2019-11-24 06:44:53 +07:00
' "' +
install _command +
'" ' +
( yield utils . getExtensionPrefix ( extension ) ) ;
} ) ;
} ) ;
return script ;
} ) ;
}
exports . addExtensionDarwin = addExtensionDarwin ;
/ * *
* Install and enable extensions for windows
*
* @ param extension _csv
* @ param version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function addExtensionWindows ( extension _csv , version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const extensions = yield utils . extensionArray ( extension _csv ) ;
let script = '\n' ;
yield utils . asyncForEach ( extensions , function ( extension ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2020-01-26 02:34:09 +07:00
extension = extension . toLowerCase ( ) ;
2020-02-16 01:55:50 +07:00
const [ ext _name , ext _version ] = extension . split ( '-' ) ;
2019-12-26 20:01:18 +07:00
const version _extension = version + extension ;
2020-02-16 01:55:50 +07:00
let matches ;
2019-12-24 00:49:38 +07:00
switch ( true ) {
2020-01-26 02:34:09 +07:00
// match pre-release versions
case /.*-(beta|alpha|devel|snapshot)/ . test ( version _extension ) :
2020-02-16 01:55:50 +07:00
script += '\nAdd-Extension ' + ext _name + ' ' + ext _version ;
2020-01-26 02:34:09 +07:00
break ;
2020-02-14 00:09:00 +07:00
// match exact versions
2020-02-16 01:55:50 +07:00
case /.*-\d+\.\d+\.\d+$/ . test ( version _extension ) :
script += '\nAdd-Extension ' + ext _name + ' stable ' + ext _version ;
return ;
case /.*-(\d+\.\d+\.\d)+(beta|alpha|devel|snapshot)\d*/ . test ( version _extension ) :
matches = /.*-(\d+\.\d+\.\d)+(beta|alpha|devel|snapshot)\d*/ . exec ( version _extension ) ;
script +=
'\nAdd-Extension ' + ext _name + ' ' + matches [ 2 ] + ' ' + matches [ 1 ] ;
2020-02-14 00:09:00 +07:00
return ;
2019-12-24 00:49:38 +07:00
// match 7.0phalcon3...7.3phalcon3 and 7.2phalcon4...7.4phalcon4
2019-12-26 20:01:18 +07:00
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/ . test ( version _extension ) :
script +=
'\n& ' +
path . join ( _ _dirname , '../src/scripts/ext/phalcon.ps1' ) +
' ' +
extension +
' ' +
version +
'\n' ;
2019-12-02 22:13:45 +07:00
break ;
default :
script += '\nAdd-Extension ' + extension ;
break ;
}
2019-11-24 06:44:53 +07:00
} ) ;
} ) ;
return script ;
} ) ;
}
exports . addExtensionWindows = addExtensionWindows ;
/ * *
* Install and enable extensions for linux
*
* @ param extension _csv
* @ param version
2019-12-26 20:01:18 +07:00
* @ param pipe
2019-11-24 06:44:53 +07:00
* /
2019-12-26 20:01:18 +07:00
function addExtensionLinux ( extension _csv , version , pipe ) {
2019-11-24 06:44:53 +07:00
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const extensions = yield utils . extensionArray ( extension _csv ) ;
let script = '\n' ;
yield utils . asyncForEach ( extensions , function ( extension ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
extension = extension . toLowerCase ( ) ;
2019-12-26 20:01:18 +07:00
const version _extension = version + extension ;
2020-02-16 01:55:50 +07:00
const [ ext _name , ext _version ] = extension . split ( '-' ) ;
const prefix = yield utils . getExtensionPrefix ( ext _name ) ;
2019-11-24 06:44:53 +07:00
let install _command = '' ;
2019-12-24 00:49:38 +07:00
switch ( true ) {
2020-01-26 02:34:09 +07:00
// match pre-release versions
case /.*-(beta|alpha|devel|snapshot)/ . test ( version _extension ) :
2020-01-30 13:33:30 +07:00
script +=
'\nadd_unstable_extension ' +
2020-02-16 01:55:50 +07:00
ext _name +
2020-01-30 13:33:30 +07:00
' ' +
2020-02-16 01:55:50 +07:00
ext _version +
2020-01-30 13:33:30 +07:00
' ' +
prefix ;
return ;
2020-02-14 00:09:00 +07:00
// match exact versions
2020-02-16 01:55:50 +07:00
case /.*-\d+\.\d+\.\d+.*/ . test ( version _extension ) :
2020-02-23 20:30:40 +07:00
script +=
'\nadd_pecl_extension ' + ext _name + ' ' + ext _version + ' ' + prefix ;
2020-02-14 00:09:00 +07:00
return ;
2019-12-24 00:49:38 +07:00
// match 5.6gearman..7.4gearman
2019-12-26 20:01:18 +07:00
case /^((5\.6)|(7\.[0-4]))gearman$/ . test ( version _extension ) :
2019-11-24 06:44:53 +07:00
install _command =
'sh ' +
2019-12-26 20:01:18 +07:00
path . join ( _ _dirname , '../src/scripts/ext/gearman.sh' ) +
2019-12-24 00:49:38 +07:00
' ' +
2019-11-24 06:44:53 +07:00
version +
2019-12-26 20:01:18 +07:00
pipe ;
2019-11-24 06:44:53 +07:00
break ;
2020-01-22 02:30:13 +07:00
// match 7.0phalcon3...7.3phalcon3 or 7.2phalcon4...7.4phalcon4
2020-01-21 19:28:09 +07:00
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/ . test ( version _extension ) :
script +=
'\nsh ' +
path . join ( _ _dirname , '../src/scripts/ext/phalcon.sh' ) +
' ' +
extension +
' ' +
version ;
return ;
2020-01-14 08:27:04 +07:00
// match 7.0xdebug..7.4xdebug
case /^7\.[0-4]xdebug$/ . test ( version _extension ) :
2020-01-17 17:48:00 +07:00
script +=
2020-02-09 05:38:48 +07:00
'\nupdate_extension xdebug 2.9.1' +
2020-01-17 17:48:00 +07:00
pipe +
'\n' +
( yield utils . addLog ( '$tick' , 'xdebug' , 'Enabled' , 'linux' ) ) ;
2020-01-14 08:27:04 +07:00
return ;
2019-11-24 06:44:53 +07:00
default :
install _command =
'sudo DEBIAN_FRONTEND=noninteractive apt-get install -y php' +
version +
'-' +
extension . replace ( 'pdo_' , '' ) . replace ( 'pdo-' , '' ) +
2019-12-26 20:01:18 +07:00
pipe ;
2019-11-24 06:44:53 +07:00
break ;
}
script +=
2020-01-30 13:33:30 +07:00
'\nadd_extension ' + extension + ' "' + install _command + '" ' + prefix ;
2019-11-24 06:44:53 +07:00
} ) ;
} ) ;
return script ;
} ) ;
}
exports . addExtensionLinux = addExtensionLinux ;
/ * *
* Install and enable extensions
*
* @ param extension _csv
* @ param version
* @ param os _version
* @ param log _prefix
* /
function addExtension ( extension _csv , version , os _version , no _step = false ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
2019-12-26 20:01:18 +07:00
const pipe = yield utils . suppressOutput ( os _version ) ;
2019-11-24 06:44:53 +07:00
let script = '\n' ;
switch ( no _step ) {
case true :
2019-12-26 20:01:18 +07:00
script += ( yield utils . stepLog ( 'Setup Extensions' , os _version ) ) + pipe ;
2019-11-24 06:44:53 +07:00
break ;
case false :
default :
script += yield utils . stepLog ( 'Setup Extensions' , os _version ) ;
break ;
}
switch ( os _version ) {
case 'win32' :
2019-12-26 20:01:18 +07:00
return script + ( yield addExtensionWindows ( extension _csv , version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
case 'darwin' :
2019-12-26 20:01:18 +07:00
return script + ( yield addExtensionDarwin ( extension _csv , version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
case 'linux' :
2019-12-26 20:01:18 +07:00
return script + ( yield addExtensionLinux ( extension _csv , version , pipe ) ) ;
2019-11-24 06:44:53 +07:00
default :
return yield utils . log ( 'Platform ' + os _version + ' is not supported' , os _version , 'error' ) ;
}
} ) ;
}
exports . addExtension = addExtension ;
/***/ } ) ,
/***/ 986 :
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
var _ _awaiter = ( this && this . _ _awaiter ) || function ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
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 ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
const tr = _ _webpack _require _ _ ( 9 ) ;
/ * *
* Exec a command .
* Output will be streamed to the live console .
* Returns promise with return code
*
* @ param commandLine command to execute ( can include additional args ) . Must be correctly escaped .
* @ param args optional arguments for tool . Escaping is handled by the lib .
* @ param options optional exec options . See ExecOptions
* @ returns Promise < number > exit code
* /
function exec ( commandLine , args , options ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const commandArgs = tr . argStringToArray ( commandLine ) ;
if ( commandArgs . length === 0 ) {
throw new Error ( ` Parameter 'commandLine' cannot be null or empty. ` ) ;
}
// Path to tool to execute should be first arg
const toolPath = commandArgs [ 0 ] ;
args = commandArgs . slice ( 1 ) . concat ( args || [ ] ) ;
const runner = new tr . ToolRunner ( toolPath , args , options ) ;
return runner . exec ( ) ;
} ) ;
}
exports . exec = exec ;
//# sourceMappingURL=exec.js.map
/***/ } )
/******/ } ) ;