Skip to content

Commit 69f988a

Browse files
progress remoting implementation
1 parent 9418790 commit 69f988a

File tree

1 file changed

+63
-9
lines changed

1 file changed

+63
-9
lines changed

PSFramework.NuGet/internal/functions/Get/Publish-StagingModule.ps1

+63-9
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,12 @@
159159
$TargetPath
160160
)
161161

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+
162168
$PSDefaultParameterValues['Write-PSFMessage:ModuleName'] = 'PSFramework.NuGet'
163169
$PSDefaultParameterValues['Write-PSFMessage:FunctionName'] = 'Publish-StagingModule'
164170

@@ -171,9 +177,37 @@
171177
}
172178

173179
$publishCommon = @{
174-
ComputerName = $env:COMPUTERNAME
180+
ComputerName = $TargetPath.ComputerName
175181
}
182+
176183
$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+
177211
throw "Not Refitted to work remotely yet!"
178212

179213
foreach ($module in Get-ChildItem -Path $Path) {
@@ -187,11 +221,12 @@
187221

188222
$testPath = Join-Path -Path $destination.Path -ChildPath "$($module.Name)/$($version.Name)/$($module.DirectoryName).psd1"
189223
$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
192227

193228
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))")
195230
continue
196231
}
197232

@@ -200,11 +235,25 @@
200235

201236
# Rename old version
202237
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
208257
}
209258
}
210259

@@ -237,6 +286,11 @@
237286
}
238287
}
239288
}
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)
240294
}
241295
#endregion Worker Code
242296

0 commit comments

Comments
 (0)