forked from nats-io/natscli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.ps1
157 lines (140 loc) · 5.9 KB
/
install.ps1
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Copyright 2022 The NATS Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#Requires -RunAsAdministrator
$ErrorActionPreference = 'Stop'
$CurrentNightlyUrl = "https://get-nats.io/current-nightly"
$PlatformsUrl = "https://get-nats.io/synadia-nats-platforms.json"
$NATSDir = "NATS"
$OSInfo = "windows-amd64"
$Stable = "stable"
$Nightly = "nightly"
$NatsTool = "nats"
$NatsExe = "nats.exe"
$NatsZip = "nats.zip"
# ----------------------------------------------------------------------------------------------------
# Functions
# ----------------------------------------------------------------------------------------------------
Function Read-NightlyVersion() {
if (!$_currentNightly) {
$temp = [string](Invoke-WebRequest -Uri $CurrentNightlyUrl)
$_currentNightly = $temp.Split("`r?`n")[0]
}
return $_currentNightly
}
Function Format-EndWithBackslash($s) {
if ($s.EndsWith("\")){
return $s
}
return $s + "\"
}
Function Format-DoesntEndWithBackslash($s) {
if ($s.EndsWith("\")){
return $s.Substring(0, $s.Length - 1)
}
return $s
}
Function Select-Folder() {
[void] [System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms')
$FolderBrowserDialog = New-Object System.Windows.Forms.FolderBrowserDialog
$FolderBrowserDialog.RootFolder = 'MyComputer'
[void] $FolderBrowserDialog.ShowDialog()
return $FolderBrowserDialog.SelectedPath
}
Function Invoke-Backup($BinDir, $Tool, $ExePath) {
if ( Test-Path $ExePath )
{
Write-Host "Backing up existing $Tool executable..."
for($i = 1; $i -lt 100; $i++) # I give up after 99 tries
{
$nn = "$BinDir$Tool-" + (Get-Date -Format "yyyyMMdd") + "-backup$i.exe"
if (!(Test-Path $nn))
{
Rename-Item -Path $ExePath -NewName $nn
return
}
}
Write-Host "Cannot backup $ExePath, all backups exist."
Exit -2
}
}
# ----------------------------------------------------------------------------------------------------
# Execution
# ----------------------------------------------------------------------------------------------------
# They get to pick the folder given a default
$tempDir = (Format-EndWithBackslash $Env:ProgramFiles) + $NATSDir
$opt0 = New-Object System.Management.Automation.Host.ChoiceDescription "&Default Location","Default Location is $tempDir"
$opt1 = New-Object System.Management.Automation.Host.ChoiceDescription "&Choose Location","Choose your location."
$options = [System.Management.Automation.Host.ChoiceDescription[]]($opt0, $opt1)
$result = $host.ui.PromptForChoice("Installation Location", "Where will the programs be installed? Default Location is $tempDir", $options, 0)
if ($result -eq 1) {
$tempDir = Select-Folder
if (!$tempDir) {
Write-Host "You must pick a directory. Exiting"
Exit -1
}
}
$binDir = Format-EndWithBackslash $tempDir
$binDirNoSlash = Format-DoesntEndWithBackslash $binDir
if ( !(Test-Path $binDirNoSlash) ) {
New-Item $binDirNoSlash -ItemType Directory | Out-Null
}
# some local variables now that I have $binDir
$natsExePath = $binDir + $NatsExe
$natsZipLocal = $binDir + $NatsZip
# $channel Have the user pick which type of channel they want, i.e. stable or nightly.
$opt0 = New-Object System.Management.Automation.Host.ChoiceDescription "&$Stable","Latest Stable Build."
$opt1 = New-Object System.Management.Automation.Host.ChoiceDescription "&$Nightly","Current Nightly Build."
$options = [System.Management.Automation.Host.ChoiceDescription[]]($opt0, $opt1)
$result = $host.ui.PromptForChoice("$Channel Selection", "Which channel do you want to install?", $options, 0)
switch ($result) {
0{$channel = $Stable}
1{$channel = $Nightly}
}
Write-Host ""
# Add bin dir to path if not already in path
Write-Host "Ensuring $binDirNoSlash is in the path..."
$Machine = [EnvironmentVariableTarget]::Machine
$Path = [Environment]::GetEnvironmentVariable('Path', $Machine)
if (!(";$Path;".ToLower() -like "*;$binDirNoSlash;*".ToLower())) {
[Environment]::SetEnvironmentVariable('Path', "$Path;$binDirNoSlash", $Machine)
$Env:Path += ";$binDirNoSlash"
}
Write-Host "Downloading platform info..."
$json = (Invoke-WebRequest https://get-nats.io/synadia-nats-platforms.json -ContentType "application/json" -UseBasicParsing) | ConvertFrom-Json
$natsZipUrl = $json.$channel.platforms.$OSInfo.tools.$NatsTool.zip_url
if ($channel -eq $Nightly) {
$verNats = Read-NightlyVersion
Write-Host "$NatsTool $Nightly version $verNats"
$natsZipUrl = $natsZipUrl.Replace("%NIGHTLY%", $verNats)
}
else {
$verNats = $json.$channel.platforms.$OSInfo.tools.$NatsTool."version_tag"
Write-Host "$NatsTool $Stable version $verNats"
}
# Download the zip files
Write-Host "Downloading archive $natsZipUrl..."
Invoke-WebRequest -Uri $natsZipUrl -OutFile $natsZipLocal -UseBasicParsing
# Backup existing versions now that the downloads worked
Invoke-Backup $binDir $NatsTool $natsExePath
# nats: Unzip, stable:(move exe from folder then remove folder), Remove Archive
Write-Host "Installing $NatsTool..."
Expand-Archive -Path $natsZipLocal -DestinationPath $binDir -Force
if ($channel -eq $Stable) {
$bareVersion = $json.$channel.platforms.$OSInfo.tools.$NatsTool."version_bare"
$natsZipFolderLocal = "$binDir$NatsTool-$bareVersion-$OSInfo"
Move-Item -Path "$natsZipFolderLocal\$NatsExe" -Destination "$binDir$NatsExe"
Remove-Item "$natsZipFolderLocal\*"
Remove-Item $natsZipFolderLocal
}
Remove-Item $natsZipLocal
Write-Host "Done!`r`n"