mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
3115 lines
112 KiB
JavaScript
3115 lines
112 KiB
JavaScript
module.exports =
|
|
/******/ (() => { // webpackBootstrap
|
|
/******/ "use strict";
|
|
/******/ var __webpack_modules__ = ({
|
|
|
|
/***/ 241:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 os = __importStar(__nccwpck_require__(87));
|
|
const utils_1 = __nccwpck_require__(278);
|
|
/**
|
|
* Commands
|
|
*
|
|
* Command Format:
|
|
* ::name key=value,key=value::message
|
|
*
|
|
* Examples:
|
|
* ::warning::This is the message
|
|
* ::set-env name=MY_VAR::some value
|
|
*/
|
|
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 += ' ';
|
|
let first = true;
|
|
for (const key in this.properties) {
|
|
if (this.properties.hasOwnProperty(key)) {
|
|
const val = this.properties[key];
|
|
if (val) {
|
|
if (first) {
|
|
first = false;
|
|
}
|
|
else {
|
|
cmdStr += ',';
|
|
}
|
|
cmdStr += `${key}=${escapeProperty(val)}`;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
cmdStr += `${CMD_STRING}${escapeData(this.message)}`;
|
|
return cmdStr;
|
|
}
|
|
}
|
|
function escapeData(s) {
|
|
return utils_1.toCommandValue(s)
|
|
.replace(/%/g, '%25')
|
|
.replace(/\r/g, '%0D')
|
|
.replace(/\n/g, '%0A');
|
|
}
|
|
function escapeProperty(s) {
|
|
return utils_1.toCommandValue(s)
|
|
.replace(/%/g, '%25')
|
|
.replace(/\r/g, '%0D')
|
|
.replace(/\n/g, '%0A')
|
|
.replace(/:/g, '%3A')
|
|
.replace(/,/g, '%2C');
|
|
}
|
|
//# sourceMappingURL=command.js.map
|
|
|
|
/***/ }),
|
|
|
|
/***/ 186:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 command_1 = __nccwpck_require__(241);
|
|
const file_command_1 = __nccwpck_require__(717);
|
|
const utils_1 = __nccwpck_require__(278);
|
|
const os = __importStar(__nccwpck_require__(87));
|
|
const path = __importStar(__nccwpck_require__(622));
|
|
/**
|
|
* 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. Non-string values will be converted to a string via JSON.stringify
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
function exportVariable(name, val) {
|
|
const convertedVal = utils_1.toCommandValue(val);
|
|
process.env[name] = convertedVal;
|
|
const filePath = process.env['GITHUB_ENV'] || '';
|
|
if (filePath) {
|
|
const delimiter = '_GitHubActionsFileCommandDelimeter_';
|
|
const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`;
|
|
file_command_1.issueCommand('ENV', commandValue);
|
|
}
|
|
else {
|
|
command_1.issueCommand('set-env', { name }, convertedVal);
|
|
}
|
|
}
|
|
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) {
|
|
const filePath = process.env['GITHUB_PATH'] || '';
|
|
if (filePath) {
|
|
file_command_1.issueCommand('PATH', inputPath);
|
|
}
|
|
else {
|
|
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. Non-string values will be converted to a string via JSON.stringify
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
function setOutput(name, value) {
|
|
command_1.issueCommand('set-output', { name }, value);
|
|
}
|
|
exports.setOutput = setOutput;
|
|
/**
|
|
* Enables or disables the echoing of commands into stdout for the rest of the step.
|
|
* Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.
|
|
*
|
|
*/
|
|
function setCommandEcho(enabled) {
|
|
command_1.issue('echo', enabled ? 'on' : 'off');
|
|
}
|
|
exports.setCommandEcho = setCommandEcho;
|
|
//-----------------------------------------------------------------------
|
|
// 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
|
|
//-----------------------------------------------------------------------
|
|
/**
|
|
* Gets whether Actions Step Debug is on or not
|
|
*/
|
|
function isDebug() {
|
|
return process.env['RUNNER_DEBUG'] === '1';
|
|
}
|
|
exports.isDebug = isDebug;
|
|
/**
|
|
* 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. Errors will be converted to string via toString()
|
|
*/
|
|
function error(message) {
|
|
command_1.issue('error', message instanceof Error ? message.toString() : message);
|
|
}
|
|
exports.error = error;
|
|
/**
|
|
* Adds an warning issue
|
|
* @param message warning issue message. Errors will be converted to string via toString()
|
|
*/
|
|
function warning(message) {
|
|
command_1.issue('warning', message instanceof Error ? message.toString() : 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. Non-string values will be converted to a string via JSON.stringify
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
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
|
|
|
|
/***/ }),
|
|
|
|
/***/ 717:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
// For internal use, subject to change.
|
|
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 }));
|
|
// We use any as a valid input type
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
const fs = __importStar(__nccwpck_require__(747));
|
|
const os = __importStar(__nccwpck_require__(87));
|
|
const utils_1 = __nccwpck_require__(278);
|
|
function issueCommand(command, message) {
|
|
const filePath = process.env[`GITHUB_${command}`];
|
|
if (!filePath) {
|
|
throw new Error(`Unable to find environment variable for file command ${command}`);
|
|
}
|
|
if (!fs.existsSync(filePath)) {
|
|
throw new Error(`Missing file at path: ${filePath}`);
|
|
}
|
|
fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, {
|
|
encoding: 'utf8'
|
|
});
|
|
}
|
|
exports.issueCommand = issueCommand;
|
|
//# sourceMappingURL=file-command.js.map
|
|
|
|
/***/ }),
|
|
|
|
/***/ 278:
|
|
/***/ ((__unused_webpack_module, exports) => {
|
|
|
|
|
|
// We use any as a valid input type
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
/**
|
|
* Sanitizes an input into a string so it can be passed into issueCommand safely
|
|
* @param input input to sanitize into a string
|
|
*/
|
|
function toCommandValue(input) {
|
|
if (input === null || input === undefined) {
|
|
return '';
|
|
}
|
|
else if (typeof input === 'string' || input instanceof String) {
|
|
return input;
|
|
}
|
|
return JSON.stringify(input);
|
|
}
|
|
exports.toCommandValue = toCommandValue;
|
|
//# sourceMappingURL=utils.js.map
|
|
|
|
/***/ }),
|
|
|
|
/***/ 514:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 tr = __importStar(__nccwpck_require__(159));
|
|
/**
|
|
* 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
|
|
|
|
/***/ }),
|
|
|
|
/***/ 159:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 os = __importStar(__nccwpck_require__(87));
|
|
const events = __importStar(__nccwpck_require__(614));
|
|
const child = __importStar(__nccwpck_require__(129));
|
|
const path = __importStar(__nccwpck_require__(622));
|
|
const io = __importStar(__nccwpck_require__(351));
|
|
const ioUtil = __importStar(__nccwpck_require__(962));
|
|
/* 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* () {
|
|
// 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);
|
|
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);
|
|
}
|
|
});
|
|
if (this.options.input) {
|
|
if (!cp.stdin) {
|
|
throw new Error('child process missing stdin');
|
|
}
|
|
cp.stdin.end(this.options.input);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
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
|
|
|
|
/***/ }),
|
|
|
|
/***/ 962:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 = __nccwpck_require__(357);
|
|
const fs = __nccwpck_require__(747);
|
|
const path = __nccwpck_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
|
|
|
|
/***/ }),
|
|
|
|
/***/ 351:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
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 = __nccwpck_require__(129);
|
|
const path = __nccwpck_require__(622);
|
|
const util_1 = __nccwpck_require__(669);
|
|
const ioUtil = __nccwpck_require__(962);
|
|
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
|
|
|
|
/***/ }),
|
|
|
|
/***/ 373:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.addINIValues = exports.addINIValuesWindows = exports.addINIValuesUnix = void 0;
|
|
const utils = __importStar(__nccwpck_require__(314));
|
|
/**
|
|
* Add script to set custom ini values for unix
|
|
*
|
|
* @param ini_values_csv
|
|
*/
|
|
async function addINIValuesUnix(ini_values_csv) {
|
|
const ini_values = await utils.CSVArray(ini_values_csv);
|
|
let script = '';
|
|
await utils.asyncForEach(ini_values, async function (line) {
|
|
script +=
|
|
'\n' + (await utils.addLog('$tick', line, 'Added to php.ini', 'linux'));
|
|
});
|
|
return ('echo "' +
|
|
ini_values.join('\n') +
|
|
'" | sudo tee -a "${pecl_file:-${ini_file[@]}}" >/dev/null 2>&1' +
|
|
script);
|
|
}
|
|
exports.addINIValuesUnix = addINIValuesUnix;
|
|
/**
|
|
* Add script to set custom ini values for windows
|
|
*
|
|
* @param ini_values_csv
|
|
*/
|
|
async function addINIValuesWindows(ini_values_csv) {
|
|
const ini_values = await utils.CSVArray(ini_values_csv);
|
|
let script = '\n';
|
|
await utils.asyncForEach(ini_values, async function (line) {
|
|
script +=
|
|
(await utils.addLog('$tick', line, 'Added to php.ini', 'win32')) + '\n';
|
|
});
|
|
return ('Add-Content "$php_dir\\php.ini" "' + ini_values.join('\n') + '"' + script);
|
|
}
|
|
exports.addINIValuesWindows = addINIValuesWindows;
|
|
/**
|
|
* Function to add custom ini values
|
|
*
|
|
* @param ini_values_csv
|
|
* @param os_version
|
|
* @param no_step
|
|
*/
|
|
async function addINIValues(ini_values_csv, os_version, no_step = false) {
|
|
let script = '\n';
|
|
switch (no_step) {
|
|
case true:
|
|
script +=
|
|
(await utils.stepLog('Add php.ini values', os_version)) +
|
|
(await utils.suppressOutput(os_version)) +
|
|
'\n';
|
|
break;
|
|
case false:
|
|
default:
|
|
script += (await utils.stepLog('Add php.ini values', os_version)) + '\n';
|
|
break;
|
|
}
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return script + (await addINIValuesWindows(ini_values_csv));
|
|
case 'darwin':
|
|
case 'linux':
|
|
return script + (await addINIValuesUnix(ini_values_csv));
|
|
default:
|
|
return await utils.log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.addINIValues = addINIValues;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 84:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.addCoverage = exports.disableCoverage = exports.addCoveragePCOV = exports.addCoverageXdebug = void 0;
|
|
const utils = __importStar(__nccwpck_require__(314));
|
|
const extensions = __importStar(__nccwpck_require__(587));
|
|
const config = __importStar(__nccwpck_require__(373));
|
|
/**
|
|
* Function to setup Xdebug
|
|
*
|
|
* @param extension
|
|
* @param version
|
|
* @param os_version
|
|
* @param pipe
|
|
*/
|
|
async function addCoverageXdebug(extension, version, os_version, pipe) {
|
|
const xdebug = (await extensions.addExtension(extension, version, os_version, true)) +
|
|
pipe;
|
|
const log = await utils.addLog('$tick', extension, 'Xdebug enabled as coverage driver', os_version);
|
|
return xdebug + '\n' + log;
|
|
}
|
|
exports.addCoverageXdebug = addCoverageXdebug;
|
|
/**
|
|
* Function to setup PCOV
|
|
*
|
|
* @param version
|
|
* @param os_version
|
|
* @param pipe
|
|
*/
|
|
async function addCoveragePCOV(version, os_version, pipe) {
|
|
let script = '\n';
|
|
switch (true) {
|
|
default:
|
|
script +=
|
|
(await extensions.addExtension('pcov', version, os_version, true)) +
|
|
pipe +
|
|
'\n';
|
|
script +=
|
|
(await config.addINIValues('pcov.enabled=1', os_version, true)) + '\n';
|
|
// add command to disable xdebug and enable pcov
|
|
switch (os_version) {
|
|
case 'linux':
|
|
case 'darwin':
|
|
script += 'remove_extension xdebug' + pipe + '\n';
|
|
break;
|
|
case 'win32':
|
|
script += 'Remove-Extension xdebug' + pipe + '\n';
|
|
break;
|
|
}
|
|
// success
|
|
script += await utils.addLog('$tick', 'coverage: pcov', 'PCOV enabled as coverage driver', os_version);
|
|
// version is not supported
|
|
break;
|
|
case /5\.[3-6]|7\.0/.test(version):
|
|
script += await 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
|
|
* @param pipe
|
|
*/
|
|
async function disableCoverage(version, os_version, pipe) {
|
|
let script = '\n';
|
|
switch (os_version) {
|
|
case 'linux':
|
|
case 'darwin':
|
|
script += 'remove_extension xdebug' + pipe + '\n';
|
|
script += 'remove_extension pcov' + pipe + '\n';
|
|
break;
|
|
case 'win32':
|
|
script += 'Remove-Extension xdebug' + pipe + '\n';
|
|
script += 'Remove-Extension pcov' + pipe + '\n';
|
|
break;
|
|
}
|
|
script += await 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
|
|
*/
|
|
async function addCoverage(coverage_driver, version, os_version) {
|
|
coverage_driver = coverage_driver.toLowerCase();
|
|
const script = '\n' + (await utils.stepLog('Setup Coverage', os_version));
|
|
const pipe = await utils.suppressOutput(os_version);
|
|
switch (coverage_driver) {
|
|
case 'pcov':
|
|
return script + (await addCoveragePCOV(version, os_version, pipe));
|
|
case 'xdebug':
|
|
case 'xdebug3':
|
|
return (script + (await addCoverageXdebug('xdebug', version, os_version, pipe)));
|
|
case 'xdebug2':
|
|
return (script + (await addCoverageXdebug('xdebug2', version, os_version, pipe)));
|
|
case 'none':
|
|
return script + (await disableCoverage(version, os_version, pipe));
|
|
default:
|
|
return '';
|
|
}
|
|
}
|
|
exports.addCoverage = addCoverage;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 587:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.addExtension = exports.addExtensionLinux = exports.addExtensionWindows = exports.addExtensionDarwin = void 0;
|
|
const utils = __importStar(__nccwpck_require__(314));
|
|
/**
|
|
* Install and enable extensions for darwin
|
|
*
|
|
* @param extension_csv
|
|
* @param version
|
|
*/
|
|
async function addExtensionDarwin(extension_csv, version) {
|
|
const extensions = await utils.extensionArray(extension_csv);
|
|
let add_script = '\n';
|
|
let remove_script = '';
|
|
await utils.asyncForEach(extensions, async function (extension) {
|
|
const version_extension = version + extension;
|
|
const [ext_name, ext_version] = extension.split('-');
|
|
const ext_prefix = await utils.getExtensionPrefix(ext_name);
|
|
let matches;
|
|
switch (true) {
|
|
// match :extension
|
|
case /^:/.test(ext_name):
|
|
remove_script += '\nremove_extension ' + ext_name.slice(1);
|
|
return;
|
|
// match 5.3blackfire...8.0blackfire
|
|
// match 5.3blackfire-(semver)...8.0blackfire-(semver)
|
|
// match couchbase, pdo_oci, oci8, http, pecl_http
|
|
// match 5.3ioncube...7.4ioncube, 5.3geos...7.4geos
|
|
// match 7.0phalcon3...7.3phalcon3 and 7.2phalcon4...7.4phalcon4
|
|
case /^(5\.[3-6]|7\.[0-4]|8\.0)blackfire(-\d+\.\d+\.\d+)?$/.test(version_extension):
|
|
case /^couchbase$|^pdo_oci$|^oci8$|^http|^pecl_http|^pdo_firebird$/.test(extension):
|
|
case /^(5\.[3-6]|7\.[0-4])(ioncube|geos)$/.test(version_extension):
|
|
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/.test(version_extension):
|
|
add_script += await utils.customPackage(ext_name, 'ext', extension, 'darwin');
|
|
return;
|
|
// match pre-release versions. For example - xdebug-beta
|
|
case /.+-(stable|beta|alpha|devel|snapshot|rc|preview)/.test(extension):
|
|
add_script += await utils.joins('\nadd_unstable_extension', ext_name, ext_version, ext_prefix);
|
|
return;
|
|
// match extensions from GitHub. Do this before checking for semver as
|
|
// the version may match that as well
|
|
case /.+-.+\/.+@.+/.test(extension):
|
|
matches = /.+-(.+)\/(.+)@(.+)/.exec(extension);
|
|
add_script += await utils.joins('\nadd_extension_from_github', ext_name, matches[1], matches[2], matches[3], ext_prefix);
|
|
return;
|
|
// match semver
|
|
case /.+-\d+\.\d+\.\d+.*/.test(extension):
|
|
add_script += await utils.joins('\nadd_pecl_extension', ext_name, ext_version, ext_prefix);
|
|
return;
|
|
// match 5.3pcov to 7.0pcov
|
|
case /(5\.[3-6]|7\.0)pcov/.test(version_extension):
|
|
add_script += await utils.getUnsupportedLog('pcov', version, 'darwin');
|
|
return;
|
|
// match 5.6 to 8.9 for amqp, grpc, igbinary, imagick, imap, msgpack, protobuf, raphf, redis, swoole, xdebug, xdebug2, zmq
|
|
// match 7.1 to 8.9 for pcov
|
|
// match 5.6 to 7.4 for propro
|
|
case /(5\.6|7\.[0-4]|8\.[0-9])(amqp|grpc|igbinary|imagick|imap|msgpack|protobuf|raphf|redis|swoole|xdebug|xdebug2|zmq)/.test(version_extension):
|
|
case /(5\.6|7\.[0-4])propro/.test(version_extension):
|
|
case /(7\.[1-4]|8\.[0-9])pcov/.test(version_extension):
|
|
add_script += await utils.joins('\nadd_brew_extension', ext_name, ext_prefix);
|
|
return;
|
|
// match sqlite
|
|
case /^sqlite$/.test(extension):
|
|
extension = 'sqlite3';
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
add_script += await utils.joins('\nadd_extension', extension, ext_prefix);
|
|
});
|
|
return add_script + remove_script;
|
|
}
|
|
exports.addExtensionDarwin = addExtensionDarwin;
|
|
/**
|
|
* Install and enable extensions for windows
|
|
*
|
|
* @param extension_csv
|
|
* @param version
|
|
*/
|
|
async function addExtensionWindows(extension_csv, version) {
|
|
const extensions = await utils.extensionArray(extension_csv);
|
|
let add_script = '\n';
|
|
let remove_script = '';
|
|
await utils.asyncForEach(extensions, async function (extension) {
|
|
const [ext_name, ext_version] = extension.split('-');
|
|
const version_extension = version + extension;
|
|
let matches;
|
|
switch (true) {
|
|
// Match :extension
|
|
case /^:/.test(ext_name):
|
|
remove_script += '\nRemove-Extension ' + ext_name.slice(1);
|
|
break;
|
|
// match 5.3blackfire...8.0blackfire
|
|
// match 5.3blackfire-(semver)...8.0blackfire-(semver)
|
|
// match pdo_oci and oci8
|
|
// match 5.3ioncube...7.4ioncube
|
|
// match 7.0phalcon3...7.3phalcon3 and 7.2phalcon4...7.4phalcon4
|
|
// match 7.1pecl_http...8.0pecl_http and 7.1http...8.0http
|
|
case /^(5\.[3-6]|7\.[0-4]|8\.0)blackfire(-\d+\.\d+\.\d+)?$/.test(version_extension):
|
|
case /^pdo_oci$|^oci8$|^pdo_firebird$/.test(extension):
|
|
case /^5\.[3-6]ioncube$|^7\.[0-4]ioncube$/.test(version_extension):
|
|
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/.test(version_extension):
|
|
case /^(7\.[1-4]|8\.0)(http|pecl_http)$/.test(version_extension):
|
|
add_script += await utils.customPackage(ext_name, 'ext', extension, 'win32');
|
|
return;
|
|
// match pre-release versions. For example - xdebug-beta
|
|
case /.+-(stable|beta|alpha|devel|snapshot)/.test(extension):
|
|
add_script += await utils.joins('\nAdd-Extension', ext_name, ext_version.replace('stable', ''));
|
|
break;
|
|
// match extensions from GitHub. Do this before checking for semver as
|
|
// the version may match that as well
|
|
case /.+-.+\/.+@.+/.test(extension):
|
|
add_script += await utils.getUnsupportedLog(extension, version, 'win32');
|
|
break;
|
|
// match semver without state
|
|
case /.+-\d+\.\d+\.\d+$/.test(extension):
|
|
add_script += await utils.joins('\nAdd-Extension', ext_name, 'stable', ext_version);
|
|
break;
|
|
// match semver with state
|
|
case /.+-\d+\.\d+\.\d+[a-zA-Z]+\d*/.test(extension):
|
|
matches = /.+-(\d+\.\d+\.\d+)([a-zA-Z]+)\d*/.exec(version_extension);
|
|
add_script += await utils.joins('\nAdd-Extension', ext_name, matches[2].replace('preview', 'devel'), matches[1]);
|
|
break;
|
|
// match 7.2xdebug2 to 7.4xdebug2
|
|
case /7\.[2-4]xdebug2/.test(version_extension):
|
|
add_script += '\nAdd-Extension xdebug stable 2.9.8';
|
|
break;
|
|
// match 5.3pcov to 7.0pcov
|
|
case /(5\.[3-6]|7\.0)pcov/.test(version_extension):
|
|
add_script += await utils.getUnsupportedLog('pcov', version, 'win32');
|
|
break;
|
|
// match 5.3mysql..5.6mysql
|
|
// match 5.3mysqli..5.6mysqli
|
|
// match 5.3mysqlnd..5.6mysqlnd
|
|
case /^5\.\d(mysql|mysqli|mysqlnd)$/.test(version_extension):
|
|
add_script +=
|
|
'\nAdd-Extension mysql\nAdd-Extension mysqli\nAdd-Extension mysqlnd';
|
|
break;
|
|
// match 7.0mysql..8.9mysql
|
|
// match 7.0mysqli..8.9mysqli
|
|
// match 7.0mysqlnd..8.9mysqlnd
|
|
case /[7-8]\.\d+(mysql|mysqli|mysqlnd)$/.test(version_extension):
|
|
add_script += '\nAdd-Extension mysqli\nAdd-Extension mysqlnd';
|
|
break;
|
|
// match sqlite
|
|
case /^sqlite$/.test(extension):
|
|
extension = 'sqlite3';
|
|
add_script += await utils.joins('\nAdd-Extension', extension);
|
|
break;
|
|
default:
|
|
add_script += '\nAdd-Extension ' + extension;
|
|
break;
|
|
}
|
|
});
|
|
return add_script + remove_script;
|
|
}
|
|
exports.addExtensionWindows = addExtensionWindows;
|
|
/**
|
|
* Install and enable extensions for linux
|
|
*
|
|
* @param extension_csv
|
|
* @param version
|
|
*/
|
|
async function addExtensionLinux(extension_csv, version) {
|
|
const extensions = await utils.extensionArray(extension_csv);
|
|
let add_script = '\n';
|
|
let remove_script = '';
|
|
await utils.asyncForEach(extensions, async function (extension) {
|
|
const version_extension = version + extension;
|
|
const [ext_name, ext_version] = extension.split('-');
|
|
const ext_prefix = await utils.getExtensionPrefix(ext_name);
|
|
let matches;
|
|
switch (true) {
|
|
// Match :extension
|
|
case /^:/.test(ext_name):
|
|
remove_script += '\nremove_extension ' + ext_name.slice(1);
|
|
return;
|
|
// match 5.3blackfire...8.0blackfire
|
|
// match 5.3blackfire-(semver)...8.0blackfire-(semver)
|
|
// match 5.3pdo_cubrid...7.2php_cubrid, 5.3cubrid...7.4cubrid
|
|
// match couchbase, pdo_oci, oci8, http, pecl_http
|
|
// match 5.3ioncube...7.4ioncube, 5.3geos...7.4geos
|
|
// match 7.0phalcon3...7.3phalcon3 and 7.2phalcon4...7.4phalcon4
|
|
// match 5.6gearman...7.4gearman
|
|
case /^(5\.[3-6]|7\.[0-4]|8\.0)blackfire(-\d+\.\d+\.\d+)?$/.test(version_extension):
|
|
case /^((5\.[3-6])|(7\.[0-2]))pdo_cubrid$|^((5\.[3-6])|(7\.[0-4]))cubrid$/.test(version_extension):
|
|
case /^couchbase$|^pdo_oci$|^oci8$|^http|^pecl_http|^pdo_firebird$/.test(extension):
|
|
case /^(5\.6|7\.[0-4]|8\.0)intl-[\d]+\.[\d]+$/.test(version_extension):
|
|
case /^(5\.[3-6]|7\.[0-4])(ioncube|geos)$/.test(version_extension):
|
|
case /^7\.[0-3]phalcon3$|^7\.[2-4]phalcon4$/.test(version_extension):
|
|
case /^((5\.6)|(7\.[0-4]))gearman$/.test(version_extension):
|
|
add_script += await utils.customPackage(ext_name, 'ext', extension, 'linux');
|
|
return;
|
|
// match pre-release versions. For example - xdebug-beta
|
|
case /.+-(stable|beta|alpha|devel|snapshot|rc|preview)/.test(extension):
|
|
add_script += await utils.joins('\nadd_unstable_extension', ext_name, ext_version, ext_prefix);
|
|
return;
|
|
// match extensions from GitHub. Do this before checking for semver as
|
|
// the version may match that as well
|
|
case /.+-.+\/.+@.+/.test(extension):
|
|
matches = /.+-(.+)\/(.+)@(.+)/.exec(extension);
|
|
add_script += await utils.joins('\nadd_extension_from_github', ext_name, matches[1], matches[2], matches[3], ext_prefix);
|
|
return;
|
|
// match semver versions
|
|
case /.+-\d+\.\d+\.\d+.*/.test(extension):
|
|
add_script += await utils.joins('\nadd_pecl_extension', ext_name, ext_version, ext_prefix);
|
|
return;
|
|
// match 5.3pcov to 7.0pcov
|
|
case /(5\.[3-6]|7\.0)pcov/.test(version_extension):
|
|
add_script += await utils.getUnsupportedLog('pcov', version, 'linux');
|
|
return;
|
|
// match 7.2xdebug2...7.4xdebug2
|
|
case /^7\.[2-4]xdebug2$/.test(version_extension):
|
|
add_script += await utils.joins('\nadd_pecl_extension', 'xdebug', '2.9.8', ext_prefix);
|
|
return;
|
|
// match pdo extensions
|
|
case /^pdo[_-].+/.test(extension):
|
|
extension = extension.replace(/pdo[_-]|3/, '');
|
|
add_script += '\nadd_pdo_extension ' + extension;
|
|
return;
|
|
// match sqlite
|
|
case /^sqlite$/.test(extension):
|
|
extension = 'sqlite3';
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
add_script += await utils.joins('\nadd_extension', extension, ext_prefix);
|
|
});
|
|
return add_script + remove_script;
|
|
}
|
|
exports.addExtensionLinux = addExtensionLinux;
|
|
/**
|
|
* Install and enable extensions
|
|
*
|
|
* @param extension_csv
|
|
* @param version
|
|
* @param os_version
|
|
* @param no_step
|
|
*/
|
|
async function addExtension(extension_csv, version, os_version, no_step = false) {
|
|
const log = await utils.stepLog('Setup Extensions', os_version);
|
|
let script = '\n';
|
|
switch (no_step) {
|
|
case true:
|
|
script += log + (await utils.suppressOutput(os_version));
|
|
break;
|
|
case false:
|
|
default:
|
|
script += log;
|
|
break;
|
|
}
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return script + (await addExtensionWindows(extension_csv, version));
|
|
case 'darwin':
|
|
return script + (await addExtensionDarwin(extension_csv, version));
|
|
case 'linux':
|
|
return script + (await addExtensionLinux(extension_csv, version));
|
|
default:
|
|
return await utils.log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.addExtension = addExtension;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 649:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.run = exports.getScript = void 0;
|
|
const exec_1 = __nccwpck_require__(514);
|
|
const core = __importStar(__nccwpck_require__(186));
|
|
const config = __importStar(__nccwpck_require__(373));
|
|
const coverage = __importStar(__nccwpck_require__(84));
|
|
const extensions = __importStar(__nccwpck_require__(587));
|
|
const tools = __importStar(__nccwpck_require__(905));
|
|
const utils = __importStar(__nccwpck_require__(314));
|
|
/**
|
|
* Build the script
|
|
*
|
|
* @param filename
|
|
* @param version
|
|
* @param os_version
|
|
*/
|
|
async function getScript(filename, version, os_version) {
|
|
const name = 'setup-php';
|
|
const url = 'https://setup-php.com/support';
|
|
// taking inputs
|
|
process.env['fail_fast'] = await utils.getInput('fail-fast', false);
|
|
const extension_csv = await utils.getInput('extensions', false);
|
|
const ini_values_csv = await utils.getInput('ini-values', false);
|
|
const coverage_driver = await utils.getInput('coverage', false);
|
|
const tools_csv = await utils.getInput('tools', false);
|
|
let script = await utils.readScript(filename);
|
|
script += await tools.addTools(tools_csv, version, os_version);
|
|
if (extension_csv) {
|
|
script += await extensions.addExtension(extension_csv, version, os_version);
|
|
}
|
|
if (coverage_driver) {
|
|
script += await coverage.addCoverage(coverage_driver, version, os_version);
|
|
}
|
|
if (ini_values_csv) {
|
|
script += await config.addINIValues(ini_values_csv, os_version);
|
|
}
|
|
script += '\n' + (await utils.stepLog('Support this project', os_version));
|
|
script += '\n' + (await utils.addLog('$tick', name, url, os_version));
|
|
return await utils.writeScript(filename, script);
|
|
}
|
|
exports.getScript = getScript;
|
|
/**
|
|
* Run the script
|
|
*/
|
|
async function run() {
|
|
try {
|
|
const version = await utils.parseVersion(await utils.getInput('php-version', true));
|
|
if (version) {
|
|
const os_version = process.platform;
|
|
const tool = await utils.scriptTool(os_version);
|
|
const script = os_version + (await utils.scriptExtension(os_version));
|
|
const location = await getScript(script, version, os_version);
|
|
await exec_1.exec(await utils.joins(tool, location, version, __dirname));
|
|
}
|
|
else {
|
|
core.setFailed('Unable to get the PHP version');
|
|
}
|
|
}
|
|
catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
exports.run = run;
|
|
// call the run function
|
|
(async () => {
|
|
await run();
|
|
})().catch(error => {
|
|
core.setFailed(error.message);
|
|
});
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 905:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.addTools = exports.addPackage = exports.addDevTools = exports.addArchive = exports.getCleanedToolsList = exports.getComposerUrl = exports.addComposer = exports.getWpCliUrl = exports.getSymfonyUri = exports.getDeployerUrl = exports.getBlackfirePlayerUrl = exports.getPharUrl = exports.addPhive = exports.getUri = exports.parseTool = exports.getToolVersion = void 0;
|
|
const utils = __importStar(__nccwpck_require__(314));
|
|
/**
|
|
* Function to get tool version
|
|
*
|
|
* @param version
|
|
*/
|
|
async function getToolVersion(version) {
|
|
// 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-]+)*))?$/;
|
|
const composer_regex = /^stable$|^preview$|^snapshot$|^v?[1|2]$/;
|
|
version = version.replace(/[><=^]*/, '');
|
|
switch (true) {
|
|
case version.charAt(0) == 'v':
|
|
return version.replace('v', '');
|
|
case composer_regex.test(version):
|
|
case semver_regex.test(version):
|
|
return version;
|
|
default:
|
|
return 'latest';
|
|
}
|
|
}
|
|
exports.getToolVersion = getToolVersion;
|
|
/**
|
|
* Function to parse tool:version
|
|
*
|
|
* @param release
|
|
*/
|
|
async function parseTool(release) {
|
|
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: await getToolVersion(parts[1])
|
|
};
|
|
}
|
|
}
|
|
exports.parseTool = parseTool;
|
|
/**
|
|
* Function to get the url of tool with the given version
|
|
*
|
|
* @param tool
|
|
* @param extension
|
|
* @param version
|
|
* @param prefix
|
|
* @param version_prefix
|
|
* @param verb
|
|
*/
|
|
async function getUri(tool, extension, version, prefix, version_prefix, verb) {
|
|
switch (version) {
|
|
case 'latest':
|
|
return [prefix, version, verb, tool + extension]
|
|
.filter(Boolean)
|
|
.join('/');
|
|
default:
|
|
return [prefix, verb, version_prefix + version, tool + extension]
|
|
.filter(Boolean)
|
|
.join('/');
|
|
}
|
|
}
|
|
exports.getUri = getUri;
|
|
/**
|
|
* Helper function to get script to setup phive
|
|
*
|
|
* @param version
|
|
* @param php_version
|
|
* @param os_version
|
|
*/
|
|
async function addPhive(version, php_version, os_version) {
|
|
switch (true) {
|
|
case /5\.[3-5]/.test(php_version):
|
|
return await utils.addLog('$cross', 'phive', 'Phive is not supported on PHP ' + php_version, os_version);
|
|
case /5\.6|7\.0/.test(php_version):
|
|
version = version.replace('latest', '0.12.1');
|
|
break;
|
|
case /7\.1/.test(php_version):
|
|
version = version.replace('latest', '0.13.5');
|
|
break;
|
|
}
|
|
switch (version) {
|
|
case 'latest':
|
|
return ((await utils.getCommand(os_version, 'tool')) +
|
|
'https://phar.io/releases/phive.phar phive status');
|
|
default:
|
|
return ((await utils.getCommand(os_version, 'tool')) +
|
|
'https://github.com/phar-io/phive/releases/download/' +
|
|
version +
|
|
'/phive-' +
|
|
version +
|
|
'.phar phive status');
|
|
}
|
|
}
|
|
exports.addPhive = addPhive;
|
|
/**
|
|
* Function to get the phar url in domain/tool-version.phar format
|
|
*
|
|
* @param domain
|
|
* @param tool
|
|
* @param prefix
|
|
* @param version
|
|
*/
|
|
async function getPharUrl(domain, tool, prefix, version) {
|
|
switch (version) {
|
|
case 'latest':
|
|
return domain + '/' + tool + '.phar';
|
|
default:
|
|
return domain + '/' + tool + '-' + prefix + version + '.phar';
|
|
}
|
|
}
|
|
exports.getPharUrl = getPharUrl;
|
|
/**
|
|
* Function to get blackfire player url for a PHP version.
|
|
*
|
|
* @param version
|
|
* @param php_version
|
|
*/
|
|
async function getBlackfirePlayerUrl(version, php_version) {
|
|
switch (true) {
|
|
case /5\.[5-6]|7\.0/.test(php_version) && version == 'latest':
|
|
version = '1.9.3';
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return await getPharUrl('https://get.blackfire.io', 'blackfire-player', 'v', version);
|
|
}
|
|
exports.getBlackfirePlayerUrl = getBlackfirePlayerUrl;
|
|
/**
|
|
* Function to get the Deployer url
|
|
*
|
|
* @param version
|
|
*/
|
|
async function getDeployerUrl(version) {
|
|
const deployer = 'https://deployer.org';
|
|
switch (version) {
|
|
case 'latest':
|
|
return deployer + '/deployer.phar';
|
|
default:
|
|
return deployer + '/releases/v' + version + '/deployer.phar';
|
|
}
|
|
}
|
|
exports.getDeployerUrl = getDeployerUrl;
|
|
/**
|
|
* Function to get the Deployer url
|
|
*
|
|
* @param version
|
|
* @param os_version
|
|
*/
|
|
async function getSymfonyUri(version, os_version) {
|
|
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 await 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;
|
|
/**
|
|
* Function to get the WP-CLI url
|
|
*
|
|
* @param version
|
|
*/
|
|
async function getWpCliUrl(version) {
|
|
switch (version) {
|
|
case 'latest':
|
|
return 'wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true';
|
|
default:
|
|
return await getUri('wp-cli', '-' + version + '.phar', version, 'wp-cli/wp-cli/releases', 'v', 'download');
|
|
}
|
|
}
|
|
exports.getWpCliUrl = getWpCliUrl;
|
|
/**
|
|
* Function to add/move composer in the tools list
|
|
*
|
|
* @param tools_list
|
|
*/
|
|
async function addComposer(tools_list) {
|
|
const regex_any = /^composer($|:.*)/;
|
|
const regex_valid = /^composer:?($|preview$|snapshot$|v?[1-2]$|v?\d+\.\d+\.\d+[\w-]*$)/;
|
|
const matches = tools_list.filter(tool => regex_valid.test(tool));
|
|
let composer = 'composer';
|
|
tools_list = tools_list.filter(tool => !regex_any.test(tool));
|
|
switch (true) {
|
|
case matches[0] == undefined:
|
|
break;
|
|
default:
|
|
composer = matches[matches.length - 1].replace(/v(\d\S*)/, '$1');
|
|
break;
|
|
}
|
|
tools_list.unshift(composer);
|
|
return tools_list;
|
|
}
|
|
exports.addComposer = addComposer;
|
|
/**
|
|
* Function to get composer URL for a given version
|
|
*
|
|
* @param version
|
|
*/
|
|
async function getComposerUrl(version) {
|
|
let cache_url = `https://github.com/shivammathur/composer-cache/releases/latest/download/composer-${version.replace('latest', 'stable')}.phar`;
|
|
switch (true) {
|
|
case /^snapshot$/.test(version):
|
|
return `${cache_url},https://getcomposer.org/composer.phar`;
|
|
case /^preview$|^[1-2]$/.test(version):
|
|
return `${cache_url},https://getcomposer.org/composer-${version}.phar`;
|
|
case /^\d+\.\d+\.\d+[\w-]*$/.test(version):
|
|
cache_url = `https://github.com/composer/composer/releases/download/${version}/composer.phar`;
|
|
return `${cache_url},https://getcomposer.org/composer-${version}.phar`;
|
|
default:
|
|
return `${cache_url},https://getcomposer.org/composer-stable.phar`;
|
|
}
|
|
}
|
|
exports.getComposerUrl = getComposerUrl;
|
|
/**
|
|
* Function to get Tools list after cleanup
|
|
*
|
|
* @param tools_csv
|
|
*/
|
|
async function getCleanedToolsList(tools_csv) {
|
|
let tools_list = await utils.CSVArray(tools_csv);
|
|
tools_list = await addComposer(tools_list);
|
|
tools_list = tools_list
|
|
.map(function (extension) {
|
|
return extension
|
|
.trim()
|
|
.replace(/-agent|behat\/|codeception\/|hirak\/|icanhazstring\/|laravel\/|narrowspark\/automatic-|overtrue\/|phpspec\/|robmorgan\/|symfony\//, '');
|
|
})
|
|
.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 url
|
|
* @param os_version
|
|
* @param ver_param
|
|
*/
|
|
async function addArchive(tool, url, os_version, ver_param) {
|
|
return ((await utils.getCommand(os_version, 'tool')) +
|
|
(await utils.joins(url, tool, ver_param)));
|
|
}
|
|
exports.addArchive = addArchive;
|
|
/**
|
|
* Function to get the script to setup php-config and phpize
|
|
*
|
|
* @param tool
|
|
* @param os_version
|
|
*/
|
|
async function addDevTools(tool, os_version) {
|
|
switch (os_version) {
|
|
case 'linux':
|
|
case 'darwin':
|
|
return 'add_devtools ' + tool;
|
|
case 'win32':
|
|
return await utils.addLog('$tick', tool, tool + ' is not a windows tool', 'win32');
|
|
default:
|
|
return await utils.log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.addDevTools = addDevTools;
|
|
/**
|
|
* Helper function to get script to setup a tool using composer
|
|
*
|
|
* @param tool
|
|
* @param release
|
|
* @param prefix
|
|
* @param os_version
|
|
*/
|
|
async function addPackage(tool, release, prefix, os_version) {
|
|
const tool_command = await utils.getCommand(os_version, 'composertool');
|
|
return tool_command + tool + ' ' + release + ' ' + prefix;
|
|
}
|
|
exports.addPackage = addPackage;
|
|
/**
|
|
* Setup tools
|
|
*
|
|
* @param tools_csv
|
|
* @param php_version
|
|
* @param os_version
|
|
*/
|
|
async function addTools(tools_csv, php_version, os_version) {
|
|
let script = '\n' + (await utils.stepLog('Setup Tools', os_version));
|
|
const tools_list = await getCleanedToolsList(tools_csv);
|
|
await utils.asyncForEach(tools_list, async function (release) {
|
|
const tool_data = await parseTool(release);
|
|
const tool = tool_data.name;
|
|
const version = tool_data.version;
|
|
const github = 'https://github.com/';
|
|
let uri = await getUri(tool, '.phar', version, 'releases', '', 'download');
|
|
script += '\n';
|
|
let url = '';
|
|
switch (tool) {
|
|
case 'blackfire':
|
|
case 'grpc_php_plugin':
|
|
case 'protoc':
|
|
script += await utils.customPackage(tool, 'tools', version, os_version);
|
|
break;
|
|
case 'behat':
|
|
case 'codeception':
|
|
case 'phpspec':
|
|
script += await addPackage(tool, release, tool + '/', os_version);
|
|
break;
|
|
case 'blackfire-player':
|
|
url = await getBlackfirePlayerUrl(version, php_version);
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'composer':
|
|
url = await getComposerUrl(version);
|
|
script += await addArchive('composer', url, os_version, version);
|
|
break;
|
|
case 'composer-normalize':
|
|
uri = await getUri(tool, '.phar', version, 'releases', '', 'download');
|
|
url = github + 'ergebnis/composer-normalize/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'composer-prefetcher':
|
|
script += await addPackage(tool, release, 'narrowspark/automatic-', os_version);
|
|
break;
|
|
case 'composer-require-checker':
|
|
uri = await getUri(tool, '.phar', version, 'releases', '', 'download');
|
|
url = github + 'maglnet/ComposerRequireChecker/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'composer-unused':
|
|
script += await addPackage(tool, release, 'icanhazstring/', os_version);
|
|
break;
|
|
case 'cs2pr':
|
|
uri = await getUri(tool, '', version, 'releases', '', 'download');
|
|
url = github + 'staabm/annotate-pull-request-from-checkstyle/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'deployer':
|
|
url = await getDeployerUrl(version);
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'flex':
|
|
script += await addPackage(tool, release, 'symfony/', os_version);
|
|
break;
|
|
case 'infection':
|
|
url = github + 'infection/infection/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'pecl':
|
|
script += await utils.getCommand(os_version, 'pecl');
|
|
break;
|
|
case 'phan':
|
|
url = github + 'phan/phan/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-v"');
|
|
break;
|
|
case 'phing':
|
|
url = 'https://www.phing.info/get/phing-' + version + '.phar';
|
|
script += await addArchive(tool, url, os_version, '"-v"');
|
|
break;
|
|
case 'phinx':
|
|
script += await addPackage(tool, release, 'robmorgan/', os_version);
|
|
break;
|
|
case 'phive':
|
|
script += await addPhive(version, php_version, os_version);
|
|
break;
|
|
case 'php-config':
|
|
case 'phpize':
|
|
script += await addDevTools(tool, os_version);
|
|
break;
|
|
case 'php-cs-fixer':
|
|
uri = await getUri(tool, '.phar', version, 'releases', 'v', 'download');
|
|
url = github + 'FriendsOfPHP/PHP-CS-Fixer/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'phpcbf':
|
|
case 'phpcs':
|
|
url = github + 'squizlabs/PHP_CodeSniffer/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"--version"');
|
|
break;
|
|
case 'phpcpd':
|
|
case 'phpunit':
|
|
url = await getPharUrl('https://phar.phpunit.de', tool, '', version);
|
|
script += await addArchive(tool, url, os_version, '"--version"');
|
|
break;
|
|
case 'phplint':
|
|
script += await addPackage(tool, release, 'overtrue/', os_version);
|
|
break;
|
|
case 'phpmd':
|
|
url = github + 'phpmd/phpmd/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"--version"');
|
|
break;
|
|
case 'phpstan':
|
|
url = github + 'phpstan/phpstan/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-V"');
|
|
break;
|
|
case 'prestissimo':
|
|
script += await addPackage(tool, release, 'hirak/', os_version);
|
|
break;
|
|
case 'psalm':
|
|
url = github + 'vimeo/psalm/' + uri;
|
|
script += await addArchive(tool, url, os_version, '"-v"');
|
|
break;
|
|
case 'symfony':
|
|
case 'symfony-cli':
|
|
uri = await getSymfonyUri(version, os_version);
|
|
url = github + 'symfony/cli/' + uri;
|
|
script += await addArchive('symfony', url, os_version, 'version');
|
|
break;
|
|
case 'vapor-cli':
|
|
case 'vapor':
|
|
script += await addPackage('vapor-cli', release, 'laravel/', os_version);
|
|
break;
|
|
case 'wp':
|
|
case 'wp-cli':
|
|
url = github + (await getWpCliUrl(version));
|
|
script += await addArchive('wp-cli', url, os_version, '"--version"');
|
|
break;
|
|
default:
|
|
script += await utils.addLog('$cross', tool, 'Tool ' + tool + ' is not supported', os_version);
|
|
break;
|
|
}
|
|
});
|
|
return script;
|
|
}
|
|
exports.addTools = addTools;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 314:
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
exports.customPackage = exports.scriptTool = exports.scriptExtension = exports.joins = exports.getCommand = exports.getUnsupportedLog = exports.suppressOutput = exports.getExtensionPrefix = exports.CSVArray = exports.extensionArray = exports.writeScript = exports.readScript = exports.addLog = exports.stepLog = exports.log = exports.color = exports.asyncForEach = exports.parseVersion = exports.fetch = exports.getInput = exports.readEnv = void 0;
|
|
const fs = __importStar(__nccwpck_require__(747));
|
|
const https = __importStar(__nccwpck_require__(211));
|
|
const path = __importStar(__nccwpck_require__(622));
|
|
const core = __importStar(__nccwpck_require__(186));
|
|
/**
|
|
* Function to read environment variable and return a string value.
|
|
*
|
|
* @param property
|
|
*/
|
|
async function readEnv(property) {
|
|
const value = process.env[property];
|
|
switch (value) {
|
|
case undefined:
|
|
return '';
|
|
default:
|
|
return value;
|
|
}
|
|
}
|
|
exports.readEnv = readEnv;
|
|
/**
|
|
* Function to get inputs from both with and env annotations.
|
|
*
|
|
* @param name
|
|
* @param mandatory
|
|
*/
|
|
async function getInput(name, mandatory) {
|
|
const input = core.getInput(name);
|
|
const env_input = await readEnv(name);
|
|
switch (true) {
|
|
case input != '':
|
|
return input;
|
|
case input == '' && env_input != '':
|
|
return env_input;
|
|
case input == '' && env_input == '' && mandatory:
|
|
throw new Error(`Input required and not supplied: ${name}`);
|
|
default:
|
|
return '';
|
|
}
|
|
}
|
|
exports.getInput = getInput;
|
|
/**
|
|
* Function to fetch an URL
|
|
*
|
|
* @param url
|
|
*/
|
|
async function fetch(url) {
|
|
const fetch_promise = new Promise(resolve => {
|
|
const req = https.get(url, (res) => {
|
|
res.setEncoding('utf8');
|
|
let body = '';
|
|
res.on('data', chunk => (body += chunk));
|
|
res.on('end', () => resolve(body));
|
|
});
|
|
req.end();
|
|
});
|
|
return await fetch_promise;
|
|
}
|
|
exports.fetch = fetch;
|
|
/**
|
|
* Function to parse PHP version.
|
|
*
|
|
* @param version
|
|
*/
|
|
async function parseVersion(version) {
|
|
const manifest = 'https://raw.githubusercontent.com/shivammathur/setup-php/develop/src/configs/php-versions.json';
|
|
switch (true) {
|
|
case /^(latest|\d+\.x)$/.test(version):
|
|
return JSON.parse(await fetch(manifest))[version];
|
|
default:
|
|
switch (true) {
|
|
case version.length > 1:
|
|
return version.slice(0, 3);
|
|
default:
|
|
return version + '.0';
|
|
}
|
|
}
|
|
}
|
|
exports.parseVersion = parseVersion;
|
|
/**
|
|
* Async foreach loop
|
|
*
|
|
* @author https://github.com/Atinux
|
|
* @param array
|
|
* @param callback
|
|
*/
|
|
async function asyncForEach(array, callback) {
|
|
for (let index = 0; index < array.length; index++) {
|
|
await callback(array[index], index, array);
|
|
}
|
|
}
|
|
exports.asyncForEach = asyncForEach;
|
|
/**
|
|
* Get color index
|
|
*
|
|
* @param type
|
|
*/
|
|
async function color(type) {
|
|
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
|
|
*/
|
|
async function log(message, os_version, log_type) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return ('printf "\\033[' +
|
|
(await color(log_type)) +
|
|
';1m' +
|
|
message +
|
|
' \\033[0m"');
|
|
case 'linux':
|
|
case 'darwin':
|
|
default:
|
|
return ('echo "\\033[' + (await color(log_type)) + ';1m' + message + '\\033[0m"');
|
|
}
|
|
}
|
|
exports.log = log;
|
|
/**
|
|
* Function to log a step
|
|
*
|
|
* @param message
|
|
* @param os_version
|
|
*/
|
|
async function stepLog(message, os_version) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return 'Step-Log "' + message + '"';
|
|
case 'linux':
|
|
case 'darwin':
|
|
return 'step_log "' + message + '"';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.stepLog = stepLog;
|
|
/**
|
|
* Function to log a result
|
|
* @param mark
|
|
* @param subject
|
|
* @param message
|
|
* @param os_version
|
|
*/
|
|
async function addLog(mark, subject, message, os_version) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return 'Add-Log "' + mark + '" "' + subject + '" "' + message + '"';
|
|
case 'linux':
|
|
case 'darwin':
|
|
return 'add_log "' + mark + '" "' + subject + '" "' + message + '"';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.addLog = addLog;
|
|
/**
|
|
* Read the scripts
|
|
*
|
|
* @param filename
|
|
*/
|
|
async function readScript(filename) {
|
|
return fs.readFileSync(path.join(__dirname, '../src/scripts/' + filename), 'utf8');
|
|
}
|
|
exports.readScript = readScript;
|
|
/**
|
|
* Write final script which runs
|
|
*
|
|
* @param filename
|
|
* @param script
|
|
*/
|
|
async function writeScript(filename, script) {
|
|
const runner_dir = await 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
|
|
*/
|
|
async function extensionArray(extension_csv) {
|
|
switch (extension_csv) {
|
|
case '':
|
|
case ' ':
|
|
return [];
|
|
default:
|
|
return extension_csv
|
|
.split(',')
|
|
.map(function (extension) {
|
|
return extension
|
|
.trim()
|
|
.toLowerCase()
|
|
.replace(/^php[-_]/, '');
|
|
})
|
|
.filter(Boolean);
|
|
}
|
|
}
|
|
exports.extensionArray = extensionArray;
|
|
/**
|
|
* Function to break csv into an array
|
|
*
|
|
* @param values_csv
|
|
* @constructor
|
|
*/
|
|
async function CSVArray(values_csv) {
|
|
switch (values_csv) {
|
|
case '':
|
|
case ' ':
|
|
return [];
|
|
default:
|
|
return values_csv
|
|
.split(/,(?=(?:(?:[^"']*["']){2})*[^"']*$)/)
|
|
.map(function (value) {
|
|
return value
|
|
.trim()
|
|
.replace(/^["']|["']$|(?<==)["']/g, '')
|
|
.replace(/=(((?!E_).)*[?{}|&~![()^]+((?!E_).)+)/, "='$1'");
|
|
})
|
|
.filter(Boolean);
|
|
}
|
|
}
|
|
exports.CSVArray = CSVArray;
|
|
/**
|
|
* Function to get prefix required to load an extension.
|
|
*
|
|
* @param extension
|
|
*/
|
|
async function getExtensionPrefix(extension) {
|
|
switch (true) {
|
|
default:
|
|
return 'extension';
|
|
case /xdebug([2-3])?$|opcache|ioncube|eaccelerator/.test(extension):
|
|
return 'zend_extension';
|
|
}
|
|
}
|
|
exports.getExtensionPrefix = getExtensionPrefix;
|
|
/**
|
|
* Function to get the suffix to suppress console output
|
|
*
|
|
* @param os_version
|
|
*/
|
|
async function suppressOutput(os_version) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return ' >$null 2>&1';
|
|
case 'linux':
|
|
case 'darwin':
|
|
return ' >/dev/null 2>&1';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.suppressOutput = suppressOutput;
|
|
/**
|
|
* Function to get script to log unsupported extensions.
|
|
*
|
|
* @param extension
|
|
* @param version
|
|
* @param os_version
|
|
*/
|
|
async function getUnsupportedLog(extension, version, os_version) {
|
|
return ('\n' +
|
|
(await addLog('$cross', extension, [extension, 'is not supported on PHP', version].join(' '), os_version)) +
|
|
'\n');
|
|
}
|
|
exports.getUnsupportedLog = getUnsupportedLog;
|
|
/**
|
|
* Function to get command to setup tools
|
|
*
|
|
* @param os_version
|
|
* @param suffix
|
|
*/
|
|
async function getCommand(os_version, suffix) {
|
|
switch (os_version) {
|
|
case 'linux':
|
|
case 'darwin':
|
|
return 'add_' + suffix + ' ';
|
|
case 'win32':
|
|
return 'Add-' + suffix.charAt(0).toUpperCase() + suffix.slice(1) + ' ';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.getCommand = getCommand;
|
|
/**
|
|
* Function to join strings with space
|
|
*
|
|
* @param str
|
|
*/
|
|
async function joins(...str) {
|
|
return [...str].join(' ');
|
|
}
|
|
exports.joins = joins;
|
|
/**
|
|
* Function to get script extensions
|
|
*
|
|
* @param os_version
|
|
*/
|
|
async function scriptExtension(os_version) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return '.ps1';
|
|
case 'linux':
|
|
case 'darwin':
|
|
return '.sh';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.scriptExtension = scriptExtension;
|
|
/**
|
|
* Function to get script tool
|
|
*
|
|
* @param os_version
|
|
*/
|
|
async function scriptTool(os_version) {
|
|
switch (os_version) {
|
|
case 'win32':
|
|
return 'pwsh';
|
|
case 'linux':
|
|
case 'darwin':
|
|
return 'bash';
|
|
default:
|
|
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
|
|
}
|
|
}
|
|
exports.scriptTool = scriptTool;
|
|
/**
|
|
* Function to get script to add tools with custom support.
|
|
*
|
|
* @param pkg
|
|
* @param type
|
|
* @param version
|
|
* @param os_version
|
|
*/
|
|
async function customPackage(pkg, type, version, os_version) {
|
|
const pkg_name = pkg.replace(/\d+|(pdo|pecl)[_-]/, '');
|
|
const script_extension = await scriptExtension(os_version);
|
|
const script = path.join(__dirname, '../src/scripts/' + type + '/' + pkg_name + script_extension);
|
|
const command = await getCommand(os_version, pkg_name);
|
|
return '\n. ' + script + '\n' + command + version;
|
|
}
|
|
exports.customPackage = customPackage;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 357:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("assert");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 129:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("child_process");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 614:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("events");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 747:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("fs");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 211:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("https");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 87:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("os");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 622:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("path");;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 669:
|
|
/***/ ((module) => {
|
|
|
|
module.exports = require("util");;
|
|
|
|
/***/ })
|
|
|
|
/******/ });
|
|
/************************************************************************/
|
|
/******/ // The module cache
|
|
/******/ var __webpack_module_cache__ = {};
|
|
/******/
|
|
/******/ // The require function
|
|
/******/ function __nccwpck_require__(moduleId) {
|
|
/******/ // Check if module is in cache
|
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
|
/******/ }
|
|
/******/ // Create a new module (and put it into the cache)
|
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
/******/ // no module.id needed
|
|
/******/ // no module.loaded needed
|
|
/******/ exports: {}
|
|
/******/ };
|
|
/******/
|
|
/******/ // Execute the module function
|
|
/******/ var threw = true;
|
|
/******/ try {
|
|
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nccwpck_require__);
|
|
/******/ threw = false;
|
|
/******/ } finally {
|
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
|
/******/ }
|
|
/******/
|
|
/******/ // Return the exports of the module
|
|
/******/ return module.exports;
|
|
/******/ }
|
|
/******/
|
|
/************************************************************************/
|
|
/******/ /* webpack/runtime/compat */
|
|
/******/
|
|
/******/ __nccwpck_require__.ab = __dirname + "/";/************************************************************************/
|
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
|
/******/ // startup
|
|
/******/ // Load entry module and return exports
|
|
/******/ return __nccwpck_require__(649);
|
|
/******/ })()
|
|
; |