2019-09-06 06:47:43 +07:00
|
|
|
param (
|
2019-12-26 20:01:18 +07:00
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$version = '7.4',
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$dir
|
2019-09-06 06:47:43 +07:00
|
|
|
)
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to log start of a operation.
|
2019-10-17 03:11:13 +07:00
|
|
|
Function Step-Log($message) {
|
2019-10-23 16:57:40 +07:00
|
|
|
printf "\n\033[90;1m==> \033[0m\033[37;1m%s \033[0m\n" $message
|
2019-10-17 03:11:13 +07:00
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to log result of a operation.
|
2019-10-17 03:11:13 +07:00
|
|
|
Function Add-Log($mark, $subject, $message) {
|
2019-11-25 17:53:13 +07:00
|
|
|
$code = if ($mark -eq $cross) { "31" } else { "32" }
|
2019-10-23 16:57:40 +07:00
|
|
|
printf "\033[%s;1m%s \033[0m\033[34;1m%s \033[0m\033[90;1m%s \033[0m\n" $code $mark $subject $message
|
2019-10-17 03:11:13 +07:00
|
|
|
}
|
|
|
|
|
2020-06-03 15:07:25 +07:00
|
|
|
# Function to add a line to a powershell profile safely.
|
|
|
|
Function Add-ToProfile {
|
|
|
|
param(
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$input_profile,
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$search,
|
|
|
|
[Parameter(Position = 2, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$value
|
|
|
|
)
|
|
|
|
if($null -eq (Get-Content $input_profile | findstr $search)) {
|
|
|
|
Add-Content -Path $input_profile -Value $value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to fetch PATH from the registry.
|
2020-05-05 01:36:09 +07:00
|
|
|
Function Get-PathFromRegistry {
|
2020-06-03 15:07:25 +07:00
|
|
|
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","User") + ";" +
|
|
|
|
[System.Environment]::GetEnvironmentVariable("Path","Machine")
|
|
|
|
Add-ToProfile $current_profile 'Get-PathFromRegistry' 'Function Get-PathFromRegistry { $env:Path = [System.Environment]::GetEnvironmentVariable("Path", "User") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "Machine") }; Get-PathFromRegistry'
|
2020-05-05 01:36:09 +07:00
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to add a location to PATH.
|
2020-05-05 01:36:09 +07:00
|
|
|
Function Add-Path {
|
|
|
|
param(
|
|
|
|
[string]$PathItem
|
|
|
|
)
|
|
|
|
$newPath = (Get-ItemProperty -Path 'hkcu:\Environment' -Name PATH).Path.replace("$PathItem;", '')
|
|
|
|
$newPath = $PathItem + ';' + $newPath
|
|
|
|
Set-ItemProperty -Path 'hkcu:\Environment' -Name Path -Value $newPath
|
|
|
|
Get-PathFromRegistry
|
|
|
|
}
|
|
|
|
|
2020-09-06 15:47:06 +07:00
|
|
|
# Function to make sure printf is in PATH.
|
|
|
|
Function Add-Printf {
|
|
|
|
if (-not(Test-Path "C:\Program Files\Git\usr\bin\printf.exe")) {
|
|
|
|
if(Test-Path "C:\msys64\usr\bin\printf.exe") {
|
|
|
|
New-Item -Path $bin_dir\printf.exe -ItemType SymbolicLink -Value C:\msys64\usr\bin\printf.exe
|
|
|
|
} else {
|
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/shivammathur/printf/releases/latest/download/printf-x64.zip" -OutFile "$bin_dir\printf.zip"
|
|
|
|
Expand-Archive -Path $bin_dir\printf.zip -DestinationPath $bin_dir -Force
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
New-Item -Path $bin_dir\printf.exe -ItemType SymbolicLink -Value "C:\Program Files\Git\usr\bin\printf.exe"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to get a clean Powershell profile.
|
2020-05-05 01:36:09 +07:00
|
|
|
Function Get-CleanPSProfile {
|
|
|
|
if(-not(Test-Path -LiteralPath $profile)) {
|
|
|
|
New-Item -Path $profile -ItemType "file" -Force
|
|
|
|
}
|
|
|
|
Set-Content $current_profile -Value ''
|
2020-06-03 15:07:25 +07:00
|
|
|
Add-ToProfile $profile $current_profile.replace('\', '\\') ". $current_profile"
|
2020-05-05 01:36:09 +07:00
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to install PhpManager.
|
2020-03-16 12:48:01 +07:00
|
|
|
Function Install-PhpManager() {
|
2020-08-25 23:00:03 +07:00
|
|
|
$module_path = "$bin_dir\PhpManager\PhpManager.psm1"
|
2020-07-15 11:15:40 +07:00
|
|
|
if(-not (Test-Path $module_path -PathType Leaf)) {
|
2020-08-25 23:00:03 +07:00
|
|
|
$release = Invoke-RestMethod https://api.github.com/repos/mlocati/powershell-phpmanager/releases/latest
|
2020-06-03 15:07:25 +07:00
|
|
|
$zip_file = "$bin_dir\PhpManager.zip"
|
2020-08-25 23:00:03 +07:00
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri $release.assets[0].browser_download_url -OutFile $zip_file
|
|
|
|
Expand-Archive -Path $zip_file -DestinationPath $bin_dir -Force
|
2020-05-05 01:36:09 +07:00
|
|
|
}
|
2020-06-03 15:07:25 +07:00
|
|
|
Import-Module $module_path
|
|
|
|
Add-ToProfile $current_profile 'powershell-phpmanager' "Import-Module $module_path"
|
2020-03-16 12:48:01 +07:00
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to add PHP extensions.
|
2019-11-25 22:35:11 +07:00
|
|
|
Function Add-Extension {
|
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$extension,
|
|
|
|
[Parameter(Position = 1, Mandatory = $false)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateSet('stable', 'beta', 'alpha', 'devel', 'snapshot')]
|
|
|
|
[string]
|
2020-07-14 15:42:50 +07:00
|
|
|
$stability = 'stable',
|
2020-02-14 00:09:00 +07:00
|
|
|
[Parameter(Position = 2, Mandatory = $false)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidatePattern('^\d+(\.\d+){0,2}$')]
|
|
|
|
[string]
|
|
|
|
$extension_version = ''
|
2019-11-25 22:35:11 +07:00
|
|
|
)
|
2019-10-11 06:11:25 +07:00
|
|
|
try {
|
2019-11-25 17:53:13 +07:00
|
|
|
$extension_info = Get-PhpExtension -Path $php_dir | Where-Object { $_.Name -eq $extension -or $_.Handle -eq $extension }
|
2020-01-30 13:33:30 +07:00
|
|
|
if ($null -ne $extension_info) {
|
2019-11-25 17:53:13 +07:00
|
|
|
switch ($extension_info.State) {
|
|
|
|
'Builtin' {
|
|
|
|
Add-Log $tick $extension "Enabled"
|
|
|
|
}
|
|
|
|
'Enabled' {
|
|
|
|
Add-Log $tick $extension "Enabled"
|
|
|
|
}
|
|
|
|
default {
|
|
|
|
Enable-PhpExtension -Extension $extension_info.Handle -Path $php_dir
|
|
|
|
Add-Log $tick $extension "Enabled"
|
|
|
|
}
|
2019-10-11 06:11:25 +07:00
|
|
|
}
|
|
|
|
}
|
2019-11-25 17:53:13 +07:00
|
|
|
else {
|
2020-02-14 16:39:56 +07:00
|
|
|
if($extension_version -ne '') {
|
2020-07-14 15:42:50 +07:00
|
|
|
Install-PhpExtension -Extension $extension -Version $extension_version -MinimumStability $stability -MaximumStability $stability -Path $php_dir
|
2020-02-16 01:55:50 +07:00
|
|
|
} else {
|
2020-07-14 15:42:50 +07:00
|
|
|
Install-PhpExtension -Extension $extension -MinimumStability $stability -MaximumStability $stability -Path $php_dir
|
2020-02-14 16:39:56 +07:00
|
|
|
}
|
2020-02-16 01:55:50 +07:00
|
|
|
|
2020-01-30 13:33:30 +07:00
|
|
|
Add-Log $tick $extension "Installed and enabled"
|
2019-10-11 06:11:25 +07:00
|
|
|
}
|
|
|
|
}
|
2019-11-25 17:53:13 +07:00
|
|
|
catch {
|
2019-12-09 09:39:03 +07:00
|
|
|
Add-Log $cross $extension "Could not install $extension on PHP $($installed.FullVersion)"
|
2019-11-25 17:53:13 +07:00
|
|
|
}
|
|
|
|
}
|
2019-12-24 00:49:38 +07:00
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to remove PHP extensions.
|
2019-12-26 20:01:18 +07:00
|
|
|
Function Remove-Extension() {
|
2019-12-24 00:49:38 +07:00
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
2019-12-26 20:01:18 +07:00
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
2019-12-24 00:49:38 +07:00
|
|
|
[string]
|
|
|
|
$extension
|
|
|
|
)
|
2019-12-26 20:01:18 +07:00
|
|
|
if(php -m | findstr -i $extension) {
|
2020-05-07 04:57:00 +07:00
|
|
|
try {
|
|
|
|
Disable-PhpExtension $extension $php_dir
|
|
|
|
if (Test-Path $ext_dir\php_$extension.dll) {
|
|
|
|
Remove-Item $ext_dir\php_$extension.dll
|
|
|
|
}
|
|
|
|
Add-Log $tick ":$extension" "Removed"
|
|
|
|
} catch {
|
|
|
|
Add-Log $cross ":$extension" "Could not remove $extension on PHP $($installed.FullVersion)"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Add-Log $tick ":$extension" "Could not find $extension on PHP $($installed.FullVersion)"
|
2019-12-26 20:01:18 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-07 18:06:32 +07:00
|
|
|
Function Edit-ComposerConfig() {
|
|
|
|
Param(
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$tool_path
|
|
|
|
)
|
|
|
|
Copy-Item $tool_path -Destination "$tool_path.phar"
|
|
|
|
php -r "try {`$p=new Phar('$tool_path.phar', 0);exit(0);} catch(Exception `$e) {exit(1);}"
|
|
|
|
if ($? -eq $False) {
|
|
|
|
Add-Log "$cross" "composer" "Could not download composer"
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
composer -q global config process-timeout 0
|
2020-10-02 05:56:51 +07:00
|
|
|
Write-Output "$env:APPDATA\Composer\vendor\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8
|
2020-07-07 18:06:32 +07:00
|
|
|
if (Test-Path env:COMPOSER_TOKEN) {
|
|
|
|
composer -q global config github-oauth.github.com $env:COMPOSER_TOKEN
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-28 12:28:02 +07:00
|
|
|
# Function to extract tool version.
|
|
|
|
Function Get-ToolVersion() {
|
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
$tool,
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
$param
|
|
|
|
)
|
|
|
|
$version_regex = "[0-9]+((\.{1}[0-9]+)+)(\.{0})(-[a-z0-9]+){0,1}"
|
|
|
|
if($tool -eq 'composer') {
|
|
|
|
if ($param -eq 'snapshot') {
|
|
|
|
$trunk = Select-String -Pattern "const\sBRANCH_ALIAS_VERSION" -Path $bin_dir\composer -Raw | Select-String -Pattern $version_regex | ForEach-Object { $_.matches.Value }
|
|
|
|
$commit = Select-String -Pattern "const\sVERSION" -Path $bin_dir\composer -Raw | Select-String -Pattern "[a-zA-Z0-9]+" -AllMatches | ForEach-Object { $_.matches[2].Value }
|
|
|
|
return "$trunk+$commit"
|
|
|
|
} else {
|
|
|
|
return Select-String -Pattern "const\sVERSION" -Path $bin_dir\composer -Raw | Select-String -Pattern $version_regex | ForEach-Object { $_.matches.Value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return . $tool $param 2> $null | ForEach-Object { $_ -replace "composer $version_regex", '' } | Select-String -Pattern $version_regex | Select-Object -First 1 | ForEach-Object { $_.matches.Value }
|
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to add tools.
|
2019-12-27 08:26:49 +07:00
|
|
|
Function Add-Tool() {
|
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
$url,
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
2020-09-28 12:28:02 +07:00
|
|
|
$tool,
|
|
|
|
[Parameter(Position = 2, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
$ver_param
|
2019-12-27 08:26:49 +07:00
|
|
|
)
|
2020-06-03 15:07:25 +07:00
|
|
|
if (Test-Path $bin_dir\$tool) {
|
|
|
|
Remove-Item $bin_dir\$tool
|
2020-01-26 12:41:36 +07:00
|
|
|
}
|
2020-08-04 22:17:30 +07:00
|
|
|
if($url.Count -gt 1) { $url = $url[0] }
|
2020-02-06 06:54:45 +07:00
|
|
|
if ($tool -eq "symfony") {
|
2020-06-03 15:07:25 +07:00
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile $bin_dir\$tool.exe
|
|
|
|
Add-ToProfile $current_profile $tool "New-Alias $tool $bin_dir\$tool.exe" >$null 2>&1
|
2019-12-28 02:12:00 +07:00
|
|
|
} else {
|
2020-01-07 09:36:14 +07:00
|
|
|
try {
|
2020-06-03 15:07:25 +07:00
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile $bin_dir\$tool
|
2020-01-07 09:36:14 +07:00
|
|
|
$bat_content = @()
|
|
|
|
$bat_content += "@ECHO off"
|
|
|
|
$bat_content += "setlocal DISABLEDELAYEDEXPANSION"
|
|
|
|
$bat_content += "SET BIN_TARGET=%~dp0/" + $tool
|
|
|
|
$bat_content += "php %BIN_TARGET% %*"
|
2020-06-03 15:07:25 +07:00
|
|
|
Set-Content -Path $bin_dir\$tool.bat -Value $bat_content
|
|
|
|
Add-ToProfile $current_profile $tool "New-Alias $tool $bin_dir\$tool.bat" >$null 2>&1
|
2020-01-26 12:41:36 +07:00
|
|
|
} catch { }
|
2020-01-07 09:36:14 +07:00
|
|
|
}
|
2020-05-21 05:21:28 +07:00
|
|
|
if($tool -eq "phan") {
|
|
|
|
Add-Extension fileinfo >$null 2>&1
|
|
|
|
Add-Extension ast >$null 2>&1
|
|
|
|
} elseif($tool -eq "phive") {
|
2020-01-21 03:10:24 +07:00
|
|
|
Add-Extension xml >$null 2>&1
|
2020-02-06 06:54:45 +07:00
|
|
|
} elseif($tool -eq "cs2pr") {
|
2020-06-03 15:07:25 +07:00
|
|
|
(Get-Content $bin_dir/cs2pr).replace('exit(9)', 'exit(0)') | Set-Content $bin_dir/cs2pr
|
2020-02-06 06:54:45 +07:00
|
|
|
} elseif($tool -eq "composer") {
|
2020-07-07 18:06:32 +07:00
|
|
|
Edit-ComposerConfig $bin_dir\$tool
|
2020-02-22 23:11:40 +07:00
|
|
|
} elseif($tool -eq "wp-cli") {
|
2020-06-03 15:07:25 +07:00
|
|
|
Copy-Item $bin_dir\wp-cli.bat -Destination $bin_dir\wp.bat
|
2020-02-03 01:21:44 +07:00
|
|
|
}
|
2020-06-03 15:07:25 +07:00
|
|
|
if (((Get-ChildItem -Path $bin_dir/* | Where-Object Name -Match "^$tool(.exe|.phar)*$").Count -gt 0)) {
|
2020-09-28 12:28:02 +07:00
|
|
|
$tool_version = Get-ToolVersion $tool $ver_param
|
|
|
|
Add-Log $tick $tool "Added $tool $tool_version"
|
2020-01-26 12:41:36 +07:00
|
|
|
} else {
|
|
|
|
Add-Log $cross $tool "Could not add $tool"
|
|
|
|
}
|
2020-01-07 09:36:14 +07:00
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to setup a tool using composer.
|
2020-02-28 14:49:12 +07:00
|
|
|
Function Add-Composertool() {
|
2020-01-07 09:36:14 +07:00
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$tool,
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$release,
|
|
|
|
[Parameter(Position = 2, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
[ValidateLength(1, [int]::MaxValue)]
|
|
|
|
[string]
|
|
|
|
$prefix
|
|
|
|
)
|
2020-09-28 12:28:02 +07:00
|
|
|
composer global require $prefix$release 2>&1 | out-null
|
|
|
|
$json = findstr $prefix$tool $env:APPDATA\Composer\composer.json
|
|
|
|
if($json) {
|
|
|
|
$tool_version = Get-ToolVersion "Write-Output" "$json"
|
|
|
|
Add-Log $tick $tool "Added $tool $tool_version"
|
2020-01-07 09:36:14 +07:00
|
|
|
} else {
|
|
|
|
Add-Log $cross $tool "Could not setup $tool"
|
2019-12-27 08:26:49 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 17:53:52 +07:00
|
|
|
# Function to handle request to add PECL.
|
2020-02-28 14:49:12 +07:00
|
|
|
Function Add-Pecl() {
|
2020-01-26 02:34:09 +07:00
|
|
|
Add-Log $tick "PECL" "Use extensions input to setup PECL extensions on windows"
|
2019-12-27 08:26:49 +07:00
|
|
|
}
|
|
|
|
|
2019-12-26 20:01:18 +07:00
|
|
|
# Variables
|
|
|
|
$tick = ([char]8730)
|
|
|
|
$cross = ([char]10007)
|
|
|
|
$php_dir = 'C:\tools\php'
|
2020-05-05 01:36:09 +07:00
|
|
|
$ext_dir = "$php_dir\ext"
|
2020-06-03 15:07:25 +07:00
|
|
|
$bin_dir = $php_dir
|
2020-05-05 01:36:09 +07:00
|
|
|
$current_profile = "$env:TEMP\setup-php.ps1"
|
2019-12-26 20:01:18 +07:00
|
|
|
$ProgressPreference = 'SilentlyContinue'
|
|
|
|
$master_version = '8.0'
|
2020-06-03 15:07:25 +07:00
|
|
|
$cert_source='CurrentUser'
|
2020-05-05 01:36:09 +07:00
|
|
|
|
2020-01-20 23:20:44 +07:00
|
|
|
$arch = 'x64'
|
2020-05-05 01:36:09 +07:00
|
|
|
if(-not([Environment]::Is64BitOperatingSystem) -or $version -lt '7.0') {
|
|
|
|
$arch = 'x86'
|
2020-01-20 23:20:44 +07:00
|
|
|
}
|
2019-12-26 20:01:18 +07:00
|
|
|
|
2020-05-05 01:36:09 +07:00
|
|
|
$ts = $env:PHPTS -eq 'ts'
|
|
|
|
if($env:PHPTS -ne 'ts') {
|
|
|
|
$env:PHPTS = 'nts'
|
|
|
|
}
|
|
|
|
if($env:RUNNER -eq 'self-hosted') {
|
|
|
|
$bin_dir = 'C:\tools\bin'
|
|
|
|
$php_dir = "$php_dir$version"
|
|
|
|
$ext_dir = "$php_dir\ext"
|
2020-06-03 15:07:25 +07:00
|
|
|
$cert_source='Curl'
|
2020-05-05 01:36:09 +07:00
|
|
|
Get-CleanPSProfile >$null 2>&1
|
|
|
|
New-Item $bin_dir -Type Directory 2>&1 | Out-Null
|
|
|
|
Add-Path -PathItem $bin_dir
|
|
|
|
if($version -lt 5.6) {
|
|
|
|
Add-Log $cross "PHP" "PHP $version is not supported on self-hosted runner"
|
2020-06-07 04:11:28 +07:00
|
|
|
Start-Sleep 1
|
2020-05-05 01:36:09 +07:00
|
|
|
exit 1
|
|
|
|
}
|
2020-06-03 15:07:25 +07:00
|
|
|
if ((Get-InstalledModule).Name -notcontains 'VcRedist') {
|
|
|
|
Install-Module -Name VcRedist -Force
|
|
|
|
}
|
2020-05-05 01:36:09 +07:00
|
|
|
New-Item $php_dir -Type Directory 2>&1 | Out-Null
|
|
|
|
Add-Path -PathItem $php_dir
|
|
|
|
setx PHPROOT $php_dir >$null 2>&1
|
|
|
|
} else {
|
|
|
|
$current_profile = "$PSHOME\Profile.ps1"
|
2020-06-03 15:07:25 +07:00
|
|
|
if(-not(Test-Path -LiteralPath $current_profile)) {
|
|
|
|
New-Item -Path $current_profile -ItemType "file" -Force >$null 2>&1
|
|
|
|
}
|
2020-05-05 01:36:09 +07:00
|
|
|
}
|
2020-09-06 15:47:06 +07:00
|
|
|
|
|
|
|
Add-Printf >$null 2>&1
|
2019-12-26 20:01:18 +07:00
|
|
|
Step-Log "Setup PhpManager"
|
2020-03-16 12:48:01 +07:00
|
|
|
Install-PhpManager >$null 2>&1
|
2019-12-26 20:01:18 +07:00
|
|
|
Add-Log $tick "PhpManager" "Installed"
|
|
|
|
|
2020-05-05 01:36:09 +07:00
|
|
|
Step-Log "Setup PHP"
|
2019-12-26 20:01:18 +07:00
|
|
|
$installed = $null
|
|
|
|
if (Test-Path -LiteralPath $php_dir -PathType Container) {
|
|
|
|
try {
|
|
|
|
$installed = Get-Php -Path $php_dir
|
2020-05-05 01:36:09 +07:00
|
|
|
} catch { }
|
2019-12-24 00:49:38 +07:00
|
|
|
}
|
2020-01-16 11:46:44 +07:00
|
|
|
$status = "Installed"
|
2020-01-20 23:20:44 +07:00
|
|
|
if ($null -eq $installed -or -not("$($installed.Version).".StartsWith(($version -replace '^(\d+(\.\d+)*).*', '$1.'))) -or $ts -ne $installed.ThreadSafe) {
|
2020-05-05 01:36:09 +07:00
|
|
|
if ($version -lt '7.0' -and (Get-InstalledModule).Name -notcontains 'VcRedist') {
|
2019-12-26 20:01:18 +07:00
|
|
|
Install-Module -Name VcRedist -Force
|
|
|
|
}
|
|
|
|
if ($version -eq $master_version) {
|
|
|
|
$version = 'master'
|
2020-07-24 18:16:31 +07:00
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri https://dl.bintray.com/shivammathur/php/Install-PhpMaster.ps1 -OutFile $php_dir\Install-PhpMaster.ps1 > $null 2>&1
|
|
|
|
& $php_dir\Install-PhpMaster.ps1 -Architecture $arch -ThreadSafe $ts -Path $php_dir
|
|
|
|
} else {
|
|
|
|
Install-Php -Version $version -Architecture $arch -ThreadSafe $ts -InstallVC -Path $php_dir -TimeZone UTC -InitialPhpIni Production -Force > $null 2>&1
|
2019-12-26 20:01:18 +07:00
|
|
|
}
|
2020-01-16 11:46:44 +07:00
|
|
|
} else {
|
2020-05-05 01:36:09 +07:00
|
|
|
if($env:update -eq 'true') {
|
2020-02-28 14:49:12 +07:00
|
|
|
Update-Php $php_dir >$null 2>&1
|
2020-02-14 00:09:00 +07:00
|
|
|
$status = "Updated to"
|
|
|
|
} else {
|
2020-01-16 11:46:44 +07:00
|
|
|
$status = "Found"
|
|
|
|
}
|
2019-12-26 20:01:18 +07:00
|
|
|
}
|
|
|
|
|
2019-12-29 01:59:28 +07:00
|
|
|
$installed = Get-Php -Path $php_dir
|
2019-12-26 20:01:18 +07:00
|
|
|
Set-PhpIniKey -Key 'date.timezone' -Value 'UTC' -Path $php_dir
|
2020-07-18 07:23:26 +07:00
|
|
|
Set-PhpIniKey -Key 'memory_limit' -Value '-1' -Path $php_dir
|
2020-02-06 06:54:45 +07:00
|
|
|
if($version -lt "5.5") {
|
2020-07-14 07:57:29 +07:00
|
|
|
ForEach($lib in "libeay32.dll", "ssleay32.dll") {
|
|
|
|
Invoke-WebRequest -UseBasicParsing -Uri https://dl.bintray.com/shivammathur/php/$lib -OutFile $php_dir\$lib >$null 2>&1
|
|
|
|
}
|
2020-05-05 01:36:09 +07:00
|
|
|
Enable-PhpExtension -Extension openssl, curl, mbstring -Path $php_dir
|
2020-02-06 06:54:45 +07:00
|
|
|
} else {
|
2020-05-05 01:36:09 +07:00
|
|
|
Enable-PhpExtension -Extension openssl, curl, opcache, mbstring -Path $php_dir
|
2020-02-06 06:54:45 +07:00
|
|
|
}
|
2020-06-03 15:07:25 +07:00
|
|
|
Update-PhpCAInfo -Path $php_dir -Source $cert_source
|
2020-01-16 11:46:44 +07:00
|
|
|
Add-Log $tick "PHP" "$status PHP $($installed.FullVersion)"
|