|
|
@ -46,6 +46,47 @@ $result = @{
|
|
|
|
src = $src -replace '\$',''
|
|
|
|
src = $src -replace '\$',''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Function Extract-Zip($src, $dest) {
|
|
|
|
|
|
|
|
$archive = [System.IO.Compression.ZipFile]::Open($src, [System.IO.Compression.ZipArchiveMode]::Read, [System.Text.Encoding]::UTF8)
|
|
|
|
|
|
|
|
foreach ($entry in $archive.Entries) {
|
|
|
|
|
|
|
|
$archive_name = $entry.FullName
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$entry_target_path = [System.IO.Path]::Combine($dest, $archive_name)
|
|
|
|
|
|
|
|
$entry_dir = [System.IO.Path]::GetDirectoryName($entry_target_path)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (-not (Test-Path -Path $entry_dir)) {
|
|
|
|
|
|
|
|
New-Item -Path $entry_dir -ItemType Directory -WhatIf:$check_mode | Out-Null
|
|
|
|
|
|
|
|
$result.changed = $true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((-not ($entry_target_path.EndsWith("\") -or $entry_target_path.EndsWith("/"))) -and (-not $check_mode)) {
|
|
|
|
|
|
|
|
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($entry, $entry_target_path, $true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$result.changed = $true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$archive.Dispose()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Function Extract-ZipLegacy($src, $dest) {
|
|
|
|
|
|
|
|
# [System.IO.Compression.ZipFile] was only added in .net 4.5, this is used
|
|
|
|
|
|
|
|
# when .net is older than that.
|
|
|
|
|
|
|
|
$shell = New-Object -ComObject Shell.Application
|
|
|
|
|
|
|
|
$zip = $shell.NameSpace([IO.Path]::GetFullPath($src))
|
|
|
|
|
|
|
|
$dest_path = $shell.NameSpace([IO.Path]::GetFullPath($dest))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$shell = New-Object -ComObject Shell.Application
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (-not $check_mode) {
|
|
|
|
|
|
|
|
# https://msdn.microsoft.com/en-us/library/windows/desktop/bb787866.aspx
|
|
|
|
|
|
|
|
# From Folder.CopyHere documentation, 1044 means:
|
|
|
|
|
|
|
|
# - 1024: do not display a user interface if an error occurs
|
|
|
|
|
|
|
|
# - 16: respond with "yes to all" for any dialog box that is displayed
|
|
|
|
|
|
|
|
# - 4: do not display a progress dialog box
|
|
|
|
|
|
|
|
$dest_path.CopyHere($zip.Items(), 1044)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$result.changed = $true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
If ($creates -and (Test-Path -LiteralPath $creates)) {
|
|
|
|
If ($creates -and (Test-Path -LiteralPath $creates)) {
|
|
|
|
$result.skipped = $true
|
|
|
|
$result.skipped = $true
|
|
|
|
$result.msg = "The file or directory '$creates' already exists."
|
|
|
|
$result.msg = "The file or directory '$creates' already exists."
|
|
|
@ -67,22 +108,29 @@ If (-Not (Test-Path -LiteralPath $dest -PathType Container)){
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
If ($ext -eq ".zip" -And $recurse -eq $false) {
|
|
|
|
If ($ext -eq ".zip" -And $recurse -eq $false) {
|
|
|
|
Try {
|
|
|
|
# TODO: PS v5 supports zip extraction, use that if available
|
|
|
|
$shell = New-Object -ComObject Shell.Application
|
|
|
|
$use_legacy = $false
|
|
|
|
$zipPkg = $shell.NameSpace([IO.Path]::GetFullPath($src))
|
|
|
|
try {
|
|
|
|
$destPath = $shell.NameSpace([IO.Path]::GetFullPath($dest))
|
|
|
|
# determines if .net 4.5 is available, if this fails we need to fall
|
|
|
|
|
|
|
|
# back to the legacy COM Shell.Application to extract the zip
|
|
|
|
|
|
|
|
Add-Type -AssemblyName System.IO.Compression.FileSystem | Out-Null
|
|
|
|
|
|
|
|
Add-Type -AssemblyName System.IO.Compression | Out-Null
|
|
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
|
|
$use_legacy = $true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (-not $check_mode) {
|
|
|
|
if ($use_legacy) {
|
|
|
|
# https://msdn.microsoft.com/en-us/library/windows/desktop/bb787866.aspx
|
|
|
|
try {
|
|
|
|
# From Folder.CopyHere documentation, 1044 means:
|
|
|
|
Extract-ZipLegacy -src $src -dest $dest
|
|
|
|
# - 1024: do not display a user interface if an error occurs
|
|
|
|
} catch {
|
|
|
|
# - 16: respond with "yes to all" for any dialog box that is displayed
|
|
|
|
Fail-Json -obj $result -message "Error unzipping '$src' to '$dest'!. Method: COM Shell.Application, Exception: $($_.Exception.Message)"
|
|
|
|
# - 4: do not display a progress dialog box
|
|
|
|
}
|
|
|
|
$destPath.CopyHere($zipPkg.Items(), 1044)
|
|
|
|
} else {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
Extract-Zip -src $src -dest $dest
|
|
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
|
|
Fail-Json -obj $result -message "Error unzipping '$src' to '$dest'!. Method: System.IO.Compression.ZipFile, Exception: $($_.Exception.Message)"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$result.changed = $true
|
|
|
|
|
|
|
|
} Catch {
|
|
|
|
|
|
|
|
Fail-Json -obj $result -message "Error unzipping '$src' to $dest! Msg: $($_.Exception.Message)"
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} Else {
|
|
|
|
} Else {
|
|
|
|
# Check if PSCX is installed
|
|
|
|
# Check if PSCX is installed
|
|
|
@ -125,7 +173,11 @@ If ($ext -eq ".zip" -And $recurse -eq $false) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
If ($delete_archive){
|
|
|
|
If ($delete_archive){
|
|
|
|
|
|
|
|
try {
|
|
|
|
Remove-Item $src -Recurse -Force -WhatIf:$check_mode
|
|
|
|
Remove-Item $src -Recurse -Force -WhatIf:$check_mode
|
|
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
|
|
Fail-Json -obj $result -message "failed to delete archive at '$src': $($_.Exception.Message)"
|
|
|
|
|
|
|
|
}
|
|
|
|
$result.removed = $true
|
|
|
|
$result.removed = $true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|