blob: c679ec2b4f43ba8acf6c3ede50401475cc229a98 (
plain) (
blame)
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
|
param(
[Parameter(Mandatory=$true)][string]$sourceName=$null,
[string]$output="out.exe"
)
$source = "http://packman-bootstrap.s3.amazonaws.com/" + $sourceName
$filename = $output
$triesLeft = 3
do
{
$triesLeft -= 1
$req = [System.Net.httpwebrequest]::Create($source)
$req.cookiecontainer = New-Object System.net.CookieContainer
try
{
Write-Host "Connecting to S3 ..."
$res = $req.GetResponse()
if($res.StatusCode -eq "OK") {
Write-Host "Downloading ..."
[int]$goal = $res.ContentLength
$reader = $res.GetResponseStream()
$writer = new-object System.IO.FileStream $fileName, "Create"
[byte[]]$buffer = new-object byte[] 4096
[int]$total = [int]$count = 0
do
{
$count = $reader.Read($buffer, 0, $buffer.Length);
$writer.Write($buffer, 0, $count);
$total += $count
if($goal -gt 0) {
Write-Progress "Downloading $url" "Saving $total of $goal" -id 0 -percentComplete (($total/$goal)*100)
} else {
Write-Progress "Downloading $url" "Saving $total bytes..." -id 0
}
} while ($count -gt 0)
$triesLeft = 0
}
}
catch
{
Write-Host "Error connecting to S3!"
Write-Host $_.Exception|format-list -force
}
finally
{
if ($reader)
{
$reader.Close()
}
if ($writer)
{
$writer.Flush()
$writer.Close()
}
}
} while ($triesLeft -gt 0)
|