|
1 |
| -function Publish-PSFModule |
2 |
| -{ |
| 1 | +function Publish-PSFModule { |
3 | 2 | [CmdletBinding(DefaultParameterSetName = 'ToRepository')]
|
4 | 3 | Param (
|
5 | 4 | [Parameter(Mandatory = $true)]
|
|
25 | 24 | [string]
|
26 | 25 | $ApiKey,
|
27 | 26 |
|
| 27 | + [Parameter(ParameterSetName = 'ToRepository')] |
| 28 | + [switch] |
| 29 | + $SkipDependenciesCheck, |
| 30 | + |
28 | 31 | [Parameter(Mandatory = $true, ParameterSetName = 'ToPath')]
|
29 | 32 | [PsfDirectory]
|
30 | 33 | $DestinationPath,
|
31 | 34 |
|
32 |
| - [switch] |
33 |
| - $SkipDependenciesCheck, |
34 |
| - |
35 | 35 | [string[]]
|
36 | 36 | $Tags,
|
37 | 37 |
|
|
45 | 45 | $ProjectUri
|
46 | 46 | )
|
47 | 47 |
|
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 |
50 | 72 | }
|
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 | + } |
54 | 106 | }
|
55 | 107 | }
|
56 | 108 | <#
|
|
0 commit comments