|
159 | 159 | $TargetPath
|
160 | 160 | )
|
161 | 161 |
|
| 162 | + <# |
| 163 | + Inherited Variables: |
| 164 | + - $Path - Where the modules to publish lie |
| 165 | + - $Force - Whether to overwrite/redeploy modules that already exist in that path in that version |
| 166 | + #> |
| 167 | + |
162 | 168 | $PSDefaultParameterValues['Write-PSFMessage:ModuleName'] = 'PSFramework.NuGet'
|
163 | 169 | $PSDefaultParameterValues['Write-PSFMessage:FunctionName'] = 'Publish-StagingModule'
|
164 | 170 |
|
|
171 | 177 | }
|
172 | 178 |
|
173 | 179 | $publishCommon = @{
|
174 |
| - ComputerName = $env:COMPUTERNAME |
| 180 | + ComputerName = $TargetPath.ComputerName |
175 | 181 | }
|
| 182 | + |
176 | 183 | $oldSuffix = "old_$(Get-Random -Minimum 100 -Maximum 999)"
|
| 184 | + $anyFailed = $false |
| 185 | + |
| 186 | + #region Prepare Step: Create a staging directory on the remote host |
| 187 | + # This allows us to minimize the cutover time, when replacing an existing module |
| 188 | + $stagingDirectory = Invoke-Command -Session $TargetPath.Session.Session -ScriptBlock { |
| 189 | + $tempDir = $env:TEMP |
| 190 | + if (-not $tempDir) { |
| 191 | + $localAppData = $env:LOCALAPPDATA |
| 192 | + if (-not $localAppData -and -not $IsLinux -and -not $IsMacOS) { $localAppData = [Environment]::GetFolderPath("LocalApplicationData") } |
| 193 | + if (-not $localAppData -and $Env:XDG_CONFIG_HOME) {$localAppData = $Env:XDG_CONFIG_HOME } |
| 194 | + if (-not $localAppData) { $localAppData = Join-Path -Path $HOME -ChildPath '.config' } |
| 195 | + $tempDir = Join-Path -Path $localAppData -ChildPath 'Temp' |
| 196 | + } |
| 197 | + if (-not (Test-Path -Path $tempDir)) { |
| 198 | + try { $null = New-Item -Path $tempDir -ItemType Directory -Force -ErrorAction Stop } |
| 199 | + catch { |
| 200 | + [PSCustomObject]@{ |
| 201 | + Success = $false |
| 202 | + Path = '' |
| 203 | + Error = $_ |
| 204 | + } |
| 205 | + } |
| 206 | + } |
| 207 | + |
| 208 | + } |
| 209 | + #endregion Prepare Step: Create a staging directory on the remote host |
| 210 | + |
177 | 211 | throw "Not Refitted to work remotely yet!"
|
178 | 212 |
|
179 | 213 | foreach ($module in Get-ChildItem -Path $Path) {
|
|
187 | 221 |
|
188 | 222 | $testPath = Join-Path -Path $destination.Path -ChildPath "$($module.Name)/$($version.Name)/$($module.DirectoryName).psd1"
|
189 | 223 | $alreadyExists = Invoke-Command -Session $TargetPath.Session.Session -ScriptBlock {
|
190 |
| - Test-Path -Path $using:testPath |
191 |
| - } |
| 224 | + param ($TestPath) |
| 225 | + Test-Path -Path $TestPath |
| 226 | + } -ArgumentList $testPath |
192 | 227 |
|
193 | 228 | if ($alreadyExists -and -not $Force) {
|
194 |
| - Write-PSFMessage -String 'Publish-StagingModule.Skipping.AlreadyExists' -StringValues $module.Name, $version.Name |
| 229 | + Write-PSFMessage -String 'Publish-StagingModule.Remote.Skipping.AlreadyExists' -StringValues $TargetPath.ComputerName, $module.Name, $version.Name -Target ("$($module.Name) ($($version.Name))") |
195 | 230 | continue
|
196 | 231 | }
|
197 | 232 |
|
|
200 | 235 |
|
201 | 236 | # Rename old version
|
202 | 237 | if ($alreadyExists) {
|
203 |
| - Invoke-PSFProtectedCommand -ActionString 'Publish-StagingModule.Deploying.RenameOld' -ActionStringValues $module.Name, $version.Name -Target $TargetPath -ScriptBlock { |
204 |
| - Rename-Item -LiteralPath $targetVersionDirectory -NewName "$($version.Name)_$oldSuffix" -Force -ErrorAction Stop |
205 |
| - } -PSCmdlet $Cmdlet -EnableException $killIt -Continue -ErrorEvent { |
206 |
| - $result = New-PublishResult @publishCommon -Success $false -Message "Failed to rename old version: $_" |
207 |
| - $PSCmdlet.WriteObject($result, $true) |
| 238 | + Write-PSFMessage -String 'Publish-StagingModule.Remote.Deploying.RenameOld' -StringValues $TargetPath.ComputerName, $module.Name, $version.Name -Target ("$($module.Name) ($($version.Name))"), $testPath |
| 239 | + $renameResult = Invoke-Command -Session $TargetPath.Session.Session -ScriptBlock { |
| 240 | + param ($Path, $NewName) |
| 241 | + try { |
| 242 | + Rename-Item -LiteralPath $Path -NewName $NewName -ErrorAction Stop -Force |
| 243 | + [PSCustomObject]@{ Success = $true; Error = $null } |
| 244 | + } |
| 245 | + catch { |
| 246 | + [PSCustomObject]@{ Success = $true; Error = $null } |
| 247 | + } |
| 248 | + } -ArgumentList $targetVersionDirectory, "$($version.Name)_$oldSuffix" |
| 249 | + if ($renameResult.Success) { |
| 250 | + Write-PSFMessage -String 'Publish-StagingModule.Remote.Deploying.RenameOld.Success' -StringValues $TargetPath.ComputerName, $module.Name, $version.Name -Target ("$($module.Name) ($($version.Name))"), $testPath |
| 251 | + } |
| 252 | + else { |
| 253 | + Write-PSFMessage -Level Warning -String 'Publish-StagingModule.Remote.Deploying.RenameOld.Success' -StringValues $TargetPath.ComputerName, $module.Name, $version.Name -Target ("$($module.Name) ($($version.Name))"), $testPath -ErrorRecord $renameResult.Error |
| 254 | + $anyFailed = $true |
| 255 | + New-PublishResult @publishCommon -Success $false -Message "Failed to rename old version: $($renameResult.Error)" |
| 256 | + continue |
208 | 257 | }
|
209 | 258 | }
|
210 | 259 |
|
|
237 | 286 | }
|
238 | 287 | }
|
239 | 288 | }
|
| 289 | + |
| 290 | + $__PSF_Workflow.Data.Completed[$TargetPath.ComputerName] = $true |
| 291 | + if ($anyFailed) { $__PSF_Workflow.Data.Failed[$TargetPath.ComputerName] = $true } |
| 292 | + else { $__PSF_Workflow.Data.Success[$TargetPath.ComputerName] = $true } |
| 293 | + $null = $__PSF_Workflow.Data.InProgress.TryRemove($TargetPath.ComputerName, [ref]$null) |
240 | 294 | }
|
241 | 295 | #endregion Worker Code
|
242 | 296 |
|
|
0 commit comments