1
1
function Publish-ModuleToPath {
2
- [CmdletBinding ()]
2
+ [CmdletBinding (SupportsShouldProcess = $true )]
3
3
param (
4
4
$Module ,
5
5
12
12
$Cmdlet = $PSCmdlet
13
13
)
14
14
begin {
15
+ $killIt = $ErrorActionPreference -eq ' Stop'
15
16
$useV3 = $script :psget.V3 -or $ForceV3
16
17
if (-not $useV3 ) {
17
18
Assert-V2Publishing - Cmdlet $Cmdlet
18
19
}
20
+ $stagingDirectory = New-PSFTempDirectory - ModuleName PSFramework.NuGet - Name Publish.StagingLocalCopy
19
21
}
20
22
process {
21
- # TODO: Implement
22
- throw " Not Implemented Yet"
23
+ # region Verify Existing Module in Repository
24
+ $fileName = ' {0}.{1}.nupkg' -f $Module.Name , $Module.Version
25
+ $destinationFile = Join-Path - Path $Path - ChildPath $fileName
23
26
27
+ if (Test-Path - Path $destinationFile ) {
28
+ Stop-PSFFunction - String ' Publish-ModuleToPath.Error.AlreadyPublished' - StringValues $Module.Name , $Module.Version , $Path - EnableException $killIt - Category InvalidOperation
29
+ return
30
+ }
31
+ # endregion Verify Existing Module in Repository
32
+
33
+ $repoName = " PSF_Temp_$ ( Get-Random ) "
34
+ # region V3
35
+ if ($useV3 ) {
36
+ try {
37
+ Register-PSResourceRepository - Name $repoName - Uri $stagingDirectory - Trusted
38
+ Publish-PSResource - Path $Module.Path - Repository $repoName - SkipDependenciesCheck
39
+ }
40
+ catch {
41
+ Stop-PSFFunction - String ' Publish-ModuleToPath.Error.FailedToStaging.V3' - StringValues $module.Name , $module.Version - Cmdlet $Cmdlet - ErrorRecord $_ - EnableException $killIt
42
+ return
43
+ }
44
+ finally {
45
+ Unregister-PSResourceRepository - Name $repoName
46
+ }
47
+ }
48
+ # endregion V3
24
49
50
+ # region V2
51
+ else {
52
+ try {
53
+ Register-PSRepository - Name $repoName - SourceLocation $stagingDirectory - PublishLocation $stagingDirectory - InstallationPolicy Trusted
54
+ Disable-ModuleCommand - Name ' Get-ModuleDependencies' - ModuleName ' PowerShellGet'
55
+ Publish-Module - Path $Module.Path - Repository $repoName
56
+ }
57
+ catch {
58
+ Stop-PSFFunction - String ' Publish-ModuleToPath.Error.FailedToStaging.V2' - StringValues $module.Name , $module.Version - Cmdlet $Cmdlet - ErrorRecord $_ - EnableException $killIt
59
+ return
60
+ }
61
+ finally {
62
+ Enable-ModuleCommand - Name ' Get-ModuleDependencies' - ModuleName ' PowerShellGet'
63
+ Unregister-PSRepository - Name $repoName
64
+ }
65
+ }
66
+ # endregion V2
67
+
68
+ # region Copy New Package
69
+ $sourcePath = Join-Path - Path $stagingDirectory - ChildPath $fileName
70
+ Invoke-PSFProtectedCommand - ActionString ' Publish-ModuleToPath.Publishing' - ActionStringValues $module.Name , $module.Version - Target $Path - ScriptBlock {
71
+ Copy-Item - Path $sourcePath - Destination $Path - Force - ErrorAction Stop - Confirm:$false
72
+ } - PSCmdlet $Cmdlet - EnableException $killIt
73
+ # endregion Copy New Package
74
+ }
75
+ end {
76
+ Remove-PSFTempItem - ModuleName PSFramework.NuGet - Name Publish.StagingLocalCopy
25
77
}
26
78
}
0 commit comments