Skip to content

Commit 19ee5b7

Browse files
updates
1 parent cfec316 commit 19ee5b7

File tree

6 files changed

+75
-23
lines changed

6 files changed

+75
-23
lines changed

PSFramework.NuGet/PSFramework.NuGet.psd1

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
'Save-PSFPowerShellGet'
5353
'Save-PSFResourceModule'
5454
'Search-PSFPowerShellGet'
55-
'Update-PSFModule'
5655
'Update-PSFRepository'
5756
)
5857

PSFramework.NuGet/functions/Get/Save-PSFModule.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
ByObject { Resolve-ModuleTarget -InputObject $InputObject -Cmdlet $PSCmdlet }
6161
ByName { Resolve-ModuleTarget -Name $Name -Version $Version -Prerelease:$Prerelease -Cmdlet $PSCmdlet }
6262
}
63-
if (-not $PSCmdlet.ShouldProcess(($installData.Name -join ', '), "Saving modules to $Path")) {
63+
if (-not $PSCmdlet.ShouldProcess(($installData.TargetName -join ', '), "Saving modules to $Path")) {
6464
return
6565
}
6666

6767
Save-StagingModule -InstallData $installData -Path $tempDirectory -Repositories $repositories -Cmdlet $PSCmdlet -Credential $Credential -SkipDependency:$SkipDependency -AuthenticodeCheck:$AuthenticodeCheck
6868
#TODO: Implement
69-
Publish-StagingModule -Path $tempDirectory -TargetPath $resolvedPaths -Force:$Force
69+
Publish-StagingModule -Path $tempDirectory -TargetPath $resolvedPaths -Force:$Force -Cmdlet $PSCmdlet
7070
}
7171
finally {
7272
Remove-PSFTempItem -Name Staging -ModuleName PSFramework.NuGet

PSFramework.NuGet/functions/Get/Update-PSFModule.ps1

-20
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
function Publish-StagingModule {
2+
[CmdletBinding()]
3+
param (
4+
[string]
5+
$Path,
6+
7+
$TargetPath,
8+
9+
[switch]
10+
$Force,
11+
12+
$Cmdlet
13+
)
14+
begin {
15+
$msgParam = @{
16+
PSCmdlet = $Cmdlet
17+
}
18+
$oldSuffix = "old_$(Get-Random -Minimum 100 -Maximum 999)"
19+
}
20+
process {
21+
foreach ($module in Get-ChildItem -Path $Path) {
22+
foreach ($version in Get-ChildItem -Path $module.FullName) {
23+
$testPath = Join-Path -Path $TargetPath -ChildPath "$($module.Name)/$($version.Name)/$($module.DirectoryName).psd1"
24+
$alreadyExists = Test-Path -Path $testPath
25+
if ($alreadyExists -and -not $Force) {
26+
Write-PSFMessage @msgParam -String 'Publish-StagingModule.Skipping.AlreadyExists' -StringValues $module.Name, $version.Name
27+
continue
28+
}
29+
30+
$targetVersionRoot = Join-Path -Path $TargetPath -ChildPath $module.Name
31+
$targetVersionDirectory = Join-Path -Path $TargetPath -ChildPath "$($module.Name)/$($version.Name)"
32+
33+
# Rename old version
34+
if ($alreadyExists) {
35+
Rename-Item -LiteralPath
36+
}
37+
# Deploy New Version
38+
# Remove old version
39+
40+
if (-not (Test-Path -Path $testPath)) {
41+
Invoke-PSFProtectedCommand -ActionString 'Publish-StagingModule.Deploying.Simple' -ActionStringValues $module.Name, $version.Name -Target $TargetPath -ScriptBlock {
42+
if (-not (Test-Path $targetVersionRoot)) { $null = New-Item -Path $TargetPath -Name $module.Name -ItemType Directory -Force }
43+
Copy-Item -Path $version.FullName -Destination $targetVersionRoot -Recurse -Force
44+
} -PSCmdlet $Cmdlet -EnableException ($ErrorActionPreference -eq 'Stop') -Continue
45+
}
46+
}
47+
}
48+
}
49+
}

PSFramework.NuGet/internal/functions/Get/Resolve-ModuleTarget.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
[PSCustomObject]@{
129129
PSTypeName = 'PSFramework.NuGet.ModuleTarget'
130130
Name = $actualName
131+
TargetName = "$actualName ($versionString)"
131132
Version = $versionString
132133
V2Param = $v2Param
133134
V3Param = $v3Param
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
function New-ManagedSession {
2+
[CmdletBinding()]
3+
param (
4+
[PSFComputer[]]
5+
$ComputerName,
6+
7+
[PSCredential]
8+
$Credential,
9+
10+
[ValidateSet('Persistent', 'Temporary')]
11+
[string]
12+
$Type
13+
)
14+
begin {
15+
$param = @{ }
16+
if ($Credential) { $param.Credential = $Credential }
17+
}
18+
process {
19+
if (-not $ComputerName) { return }
20+
$sessionHash = @{ }
21+
@($ComputerName).Where{$_.Type -eq 'PSSession'}.ForEach{$sessionHash}
22+
}
23+
}

0 commit comments

Comments
 (0)