Skip to content

Extract all extension DLLs included in downloaded zip archives #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 17 additions & 48 deletions PhpManager/public/Install-PhpExtension.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -158,58 +158,27 @@
if ($remoteFileIsZip) {
$tempFolder = New-TempDirectory
Expand-ArchiveWith7Zip -ArchivePath $downloadedFile -DestinationPath $tempFolder
$phpDlls = @(Get-ChildItem -Path $tempFolder\php_*.dll -File -Depth 0)
if ($phpDlls.Count -eq 0) {
$phpDlls = @(Get-ChildItem -Path $tempFolder\php_*.dll -File -Depth 1)
}
if ($phpDlls.Count -eq 0) {
throw ("No PHP DLL found in archive downloaded from {0}" -f $availablePackageVersion.PackageArchiveUrl)
}
if ($phpDlls.Count -ne 1) {
throw ("Multiple PHP DLL found in archive downloaded from {0}" -f $availablePackageVersion.PackageArchiveUrl)
}
$dllPath = $phpDlls[0].FullName
switch ($peclPackageHandle) {
'amqp' {
$tmp = Get-ChildItem -Path $tempFolder\rabbit*.dll -File -Depth 1
if ($tmp) {
$additionalFiles += $tmp
}
}
'couchbase' {
$libcouchbaseDll = Join-Path -Path $tempFolder -ChildPath 'libcouchbase.dll'
if (Test-Path -LiteralPath $libcouchbaseDll -PathType Leaf) {
$additionalFiles += $libcouchbaseDll
}
}
'decimal' {
$libmpdecDll = Join-Path -Path $tempFolder -ChildPath 'libmpdec.dll'
if (Test-Path -LiteralPath $libmpdecDll -PathType Leaf) {
$additionalFiles += $libmpdecDll
}
}
'imagick' {
$additionalFiles += @(Get-ChildItem -Path $tempFolder\CORE_*.dll -File -Depth 1)
$additionalFiles += @(Get-ChildItem -Path $tempFolder\IM_*.dll -File -Depth 1)
$additionalFiles += @(Get-ChildItem -Path $tempFolder\FILTER_*.dll -File -Depth 1)
}
'memcached' {
$libmemcachedDll = Join-Path -Path $tempFolder -ChildPath 'libmemcached.dll'
$libhashkitDll = Join-Path -Path $tempFolder -ChildPath 'libhashkit.dll'
if (Test-Path -LiteralPath $libmemcachedDll -PathType Leaf) {
$additionalFiles += $libmemcachedDll
}
if (Test-Path -LiteralPath $libhashkitDll -PathType Leaf) {
$additionalFiles += $libhashkitDll
}
$dllFiles = Get-ChildItem -Path $tempFolder\*.dll -File -Depth 0
if (-not($dllFiles)) {
$dllFiles = Get-ChildItem -Path $tempFolder\*.dll -File -Depth 1
if (-not($dllFiles)) {
$dllFiles = @()
}
'yaml' {
$yamlDll = Join-Path -Path $tempFolder -ChildPath 'yaml.dll'
if (Test-Path -LiteralPath $yamlDll -PathType Leaf) {
$additionalFiles += $yamlDll
}
$dllPath = $null
foreach ($dllFile in $dllFiles) {
if ($dllFile.Name -like "php_*.dll") {
if ($dllPath) {
throw ("Multiple PHP DLL found in archive downloaded from {0}" -f $availablePackageVersion.PackageArchiveUrl)
}
$dllPath = $dllFile.FullName
} else {
$additionalFiles += $dllFile.FullName
}
}
if (-not($dllPath)) {
throw ("No PHP DLL found in archive downloaded from {0}" -f $availablePackageVersion.PackageArchiveUrl)
}
}
else {
$keepDownloadedFile = $true
Expand Down