-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathSave-WebFile.ps1
More file actions
140 lines (133 loc) · 5.5 KB
/
Save-WebFile.ps1
File metadata and controls
140 lines (133 loc) · 5.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<#
.SYNOPSIS
Downloads a file from the internet and returns a Get-Item Object
.DESCRIPTION
Downloads a file from the internet and returns a Get-Item Object
.LINK
https://osd.osdeploy.com/module/functions/save-webfile
#>
function Save-WebFile {
[CmdletBinding()]
[OutputType([System.IO.FileInfo])]
param
(
[Parameter(Position=0, Mandatory, ValueFromPipelineByPropertyName)]
[Alias('FileUri')]
[System.String]
$SourceUrl,
[Parameter(ValueFromPipelineByPropertyName)]
[Alias('FileName')]
[System.String]
$DestinationName,
[Alias('Path')]
[System.String]
$DestinationDirectory = (Join-Path $env:TEMP 'OSD'),
#Overwrite the file if it exists already
#The default action is to skip the download
[System.Management.Automation.SwitchParameter]
$Overwrite,
[System.Management.Automation.SwitchParameter]
$WebClient
)
#=================================================
# Values
#=================================================
Write-Verbose "SourceUrl: $SourceUrl"
Write-Verbose "DestinationName: $DestinationName"
Write-Verbose "DestinationDirectory: $DestinationDirectory"
Write-Verbose "Overwrite: $Overwrite"
Write-Verbose "WebClient: $WebClient"
#=================================================
# DestinationDirectory
#=================================================
if (Test-Path "$DestinationDirectory")
{
Write-Verbose "Directory already exists at $DestinationDirectory"
}
else {
New-Item -Path "$DestinationDirectory" -ItemType Directory -Force -ErrorAction Stop | Out-Null
}
#=================================================
# Test File
#=================================================
$DestinationNewItem = New-Item -Path (Join-Path $DestinationDirectory "$(Get-Random).txt") -ItemType File
if (Test-Path $DestinationNewItem.FullName) {
$DestinationDirectory = $DestinationNewItem | Select-Object -ExpandProperty Directory
Write-Verbose "Destination Directory is writable at $DestinationDirectory"
Remove-Item -Path $DestinationNewItem.FullName -Force | Out-Null
}
else {
Write-Warning "Unable to write to Destination Directory"
Break
}
#=================================================
# DestinationName
#=================================================
if ($PSBoundParameters['DestinationName']) {
}
else {
$DestinationNameUri = $SourceUrl -as [System.Uri] # Convert to Uri so we can ignore any query string
$DestinationName = $DestinationNameUri.AbsolutePath.Split('/')[-1]
}
Write-Verbose "DestinationName: $DestinationName"
#=================================================
# WebFileFullName
#=================================================
$DestinationDirectoryItem = (Get-Item $DestinationDirectory -Force).FullName
$DestinationFullName = Join-Path $DestinationDirectoryItem $DestinationName
#=================================================
# OverWrite
#=================================================
if ((-NOT ($PSBoundParameters['Overwrite'])) -and (Test-Path $DestinationFullName)) {
Write-Verbose "DestinationFullName already exists"
Get-Item $DestinationFullName -Force
}
else {
#=================================================
# Download
#=================================================
$SourceUrl = [Uri]::EscapeUriString($SourceUrl.Replace('%', '~')).Replace('~', '%') # Substitute and replace '%' to avoid escaping os Azure SAS tokens
Write-Verbose "Testing file at $SourceUrl"
#=================================================
# Test for WebClient Proxy
#=================================================
$UseWebClient = $false
if ($WebClient -eq $true) {
$UseWebClient = $true
}
elseif (([System.Net.WebRequest]::DefaultWebProxy).Address) {
$UseWebClient = $true
}
elseif (!(Test-CommandCurlExe)) {
$UseWebClient = $true
}
if ($UseWebClient -eq $true) {
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls1
$WebClientTemp = New-Object System.Net.WebClient
$WebClientTemp.DownloadFile($SourceUrl, $DestinationFullName)
$WebClientTemp.Dispose()
}
else {
Write-Verbose "cURL Source: $SourceUrl"
Write-Verbose "Destination: $DestinationFullName"
if ($host.name -match 'ConsoleHost') {
Invoke-Expression "& curl.exe --insecure --location --output `"$DestinationFullName`" --url `"$SourceUrl`""
}
else {
#PowerShell ISE will display a NativeCommandError, so progress will not be displayed
$Quiet = Invoke-Expression "& curl.exe --insecure --location --output `"$DestinationFullName`" --url `"$SourceUrl`" 2>&1"
}
}
#=================================================
# Return
#=================================================
if (Test-Path $DestinationFullName) {
Get-Item $DestinationFullName -Force
}
else {
Write-Warning "Could not download $DestinationFullName"
$null
}
#=================================================
}
}