Skip to content

Commit 610a74f

Browse files
updates
1 parent 8883dda commit 610a74f

File tree

6 files changed

+124
-10
lines changed

6 files changed

+124
-10
lines changed

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

+62-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
function Publish-PSFModule
2-
{
1+
function Publish-PSFModule {
32
[CmdletBinding(DefaultParameterSetName = 'ToRepository')]
43
Param (
54
[Parameter(Mandatory = $true)]
@@ -25,13 +24,14 @@
2524
[string]
2625
$ApiKey,
2726

27+
[Parameter(ParameterSetName = 'ToRepository')]
28+
[switch]
29+
$SkipDependenciesCheck,
30+
2831
[Parameter(Mandatory = $true, ParameterSetName = 'ToPath')]
2932
[PsfDirectory]
3033
$DestinationPath,
3134

32-
[switch]
33-
$SkipDependenciesCheck,
34-
3535
[string[]]
3636
$Tags,
3737

@@ -45,12 +45,64 @@
4545
$ProjectUri
4646
)
4747

48-
begin
49-
{
48+
begin {
49+
#region Setup
50+
$killIt = $ErrorActionPreference = 'Stop'
51+
if ($Repository) {
52+
# Resolve Repositories
53+
Search-PSFPowerShellGet
54+
$repositories = Resolve-Repository -Name $Repository -Type $Type -Cmdlet $PSCmdlet | Group-Object Name | ForEach-Object {
55+
@($_.Group | Sort-Object Type -Descending)[0]
56+
}
57+
}
58+
# Create Temp Directories
59+
$workingDirectory = New-PSFTempDirectory -ModuleName PSFramework.NuGet -Name Publish.Work
60+
$stagingDirectory = New-PSFTempDirectory -ModuleName PSFramework.NuGet -Name Publish.Staging
61+
62+
$commonPublish = @{
63+
StagingDirectory = $stagingDirectory
64+
Cmdlet = $PSCmdlet
65+
Continue = $true
66+
ContinueLabel = 'repo'
67+
}
68+
if ($ApiKey) { $commonPublish.ApiKey = $ApiKey }
69+
if ($Credential) { $commonPublish.Credential = $Credential }
70+
if ($SkipDependenciesCheck) { $commonPublish.SkipDependenciesCheck = $SkipDependenciesCheck }
71+
#endregion Setup
5072
}
51-
process
52-
{
53-
#TODO: Implement
73+
process {
74+
try {
75+
foreach ($sourceModule in $Path) {
76+
# Update Metadata per Parameter
77+
$moduleData = Copy-Module -Path $sourceModule -Destination $workingDirectory -Cmdlet $PSCmdlet -Continue
78+
Update-ModuleInformation -Module $moduleData -Tags $Tags -LicenseUri $LicenseUri -IconUri $IconUri -ProjectUri $ProjectUri -Cmdlet $PSCmdlet -Continue
79+
80+
# Case 1: Publish to Destination Path
81+
if ($DestinationPath) {
82+
Publish-ModuleToPath -Module $moduleData -Path $DestinationPath -Cmdlet $PSCmdlet
83+
continue
84+
}
85+
86+
# Case 2: Publish to Repository
87+
:repo foreach ($repositoryObject in $repositories) {
88+
switch ($repositoryObject.Type) {
89+
V2 {
90+
Publish-ModuleV2 @commonPublish -Module $moduleData -Repository $repositoryObject.Name
91+
}
92+
V3 {
93+
Publish-ModuleV3 @commonPublish -Module $moduleData -Repository $repositoryObject.Name
94+
}
95+
default {
96+
Stop-PSFFunction -String 'Publish-PSFModule.Error.UnexpectedRepositoryType' -StringValues $repositoryObject.Name, $repositoryObject.Type -Continue -Cmdlet $PSCmdlet -EnableException $killIt
97+
}
98+
}
99+
}
100+
}
101+
}
102+
finally {
103+
# Cleanup Temp Directory
104+
Remove-PSFTempItem -ModuleName PSFramework.NuGet -Name Publish.*
105+
}
54106
}
55107
}
56108
<#
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
function Copy-Module {
2+
[CmdletBinding()]
3+
param (
4+
[string]
5+
$Path,
6+
7+
[string]
8+
$Destination,
9+
10+
$Cmdlet,
11+
12+
[switch]
13+
$Continue,
14+
15+
[string]
16+
$ContinueLabel
17+
)
18+
process {
19+
#TODO: Implement
20+
throw "Not Implemented Yet"
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function Publish-ModuleToPath {
2+
[CmdletBinding()]
3+
param (
4+
5+
)
6+
process {
7+
#TODO: Implement
8+
throw "Not Implemented Yet"
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function Publish-ModuleV2 {
2+
[CmdletBinding()]
3+
param (
4+
5+
)
6+
process {
7+
#TODO: Implement
8+
throw "Not Implemented Yet"
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function Publish-ModuleV3 {
2+
[CmdletBinding()]
3+
param (
4+
5+
)
6+
process {
7+
#TODO: Implement
8+
throw "Not Implemented Yet"
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function Update-ModuleInformation {
2+
[CmdletBinding()]
3+
param (
4+
5+
)
6+
process {
7+
#TODO: Implement
8+
throw "Not Implemented Yet"
9+
}
10+
}

0 commit comments

Comments
 (0)