Skip to content

Commit cbe2e94

Browse files
updates
1 parent 7da895d commit cbe2e94

File tree

4 files changed

+114
-5
lines changed

4 files changed

+114
-5
lines changed

PSFramework.NuGet/PSFramework.NuGet.psd1

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
# this module
2828
RequiredModules = @(
2929
@{ ModuleName = 'PSFramework'; ModuleVersion = '1.12.346' }
30+
@{ ModuleName = 'ConvertToPsd1'; ModuleVersion = '1.0.1'}
3031
)
3132

3233
# Assemblies that must be loaded prior to importing this module

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@
4242
$IconUri,
4343

4444
[string]
45-
$ProjectUri
45+
$ProjectUri,
46+
47+
[string]
48+
$ReleaseNotes,
49+
50+
[string]
51+
$Prerelease
4652
)
4753

4854
begin {
@@ -75,7 +81,7 @@
7581
foreach ($sourceModule in $Path) {
7682
# Update Metadata per Parameter
7783
$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
84+
Update-ModuleInformation -Module $moduleData -Tags $Tags -LicenseUri $LicenseUri -IconUri $IconUri -ProjectUri $ProjectUri -ReleaseNotes $ReleaseNotes -Prerelease $Prerelease -Cmdlet $PSCmdlet -Continue
7985

8086
# Case 1: Publish to Destination Path
8187
if ($DestinationPath) {
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
function Publish-ModuleToPath {
22
[CmdletBinding()]
33
param (
4-
4+
$Module,
5+
6+
[string]
7+
$Path,
8+
9+
[switch]
10+
$ForceV3,
11+
12+
$Cmdlet = $PSCmdlet
513
)
14+
begin {
15+
$useV3 = $script:psget.V3 -or $ForceV3
16+
if (-not $useV3) {
17+
Assert-V2Publishing -Cmdlet $Cmdlet
18+
}
19+
}
620
process {
721
#TODO: Implement
822
throw "Not Implemented Yet"
23+
24+
925
}
1026
}
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,96 @@
11
function Update-ModuleInformation {
22
[CmdletBinding()]
33
param (
4+
$Module,
45

6+
[string[]]
7+
$Tags,
8+
9+
[string]
10+
$LicenseUri,
11+
12+
[string]
13+
$IconUri,
14+
15+
[string]
16+
$ProjectUri,
17+
18+
[string]
19+
$ReleaseNotes,
20+
21+
[string]
22+
$Prerelease,
23+
24+
$Cmdlet = $PSCmdlet,
25+
26+
[switch]
27+
$Continue
528
)
629
process {
7-
#TODO: Implement
8-
throw "Not Implemented Yet"
30+
# If Nothing to do, do nothing
31+
if (-not ($Tags -or $LicenseUri -or $IconUri -or $ProjectUri -or $ReleaseNotes -or $Prerelease)) { return }
32+
33+
$killIt = $ErrorActionPreference -eq 'Stop'
34+
35+
$manifestPath = Join-Path -Path $Module.Path -ChildPath "$($Module.Name).psd1"
36+
37+
$tokens = $null
38+
$errors = $null
39+
$ast = [System.Management.Automation.Language.Parser]::ParseFile($manifestPath, [ref]$tokens, [ref]$errors)
40+
41+
$mainHash = $ast.FindAll({
42+
$args[0] -is [System.Management.Automation.Language.HashtableAst] -and
43+
$args[0].KeyValuePairs.Item1.Value -contains 'RootModule' -and
44+
$args[0].KeyValuePairs.Item1.Value -Contains 'ModuleVersion'
45+
}, $true)
46+
47+
if (-not $mainHash) {
48+
Stop-PSFFunction -String 'Update-ModuleInformation.Error.BadManifest' -StringValues $module.Name, $manifestPath -Cmdlet $Cmdlet -EnableException $killIt -Continue:$Continue
49+
return
50+
}
51+
52+
$privateData = [ordered]@{
53+
PSData = [ordered]@{ }
54+
}
55+
$replacements = @{ }
56+
57+
$privateDataAst = $mainHash.KeyValuePairs | Where-Object { $_.Item1.Value -eq 'PrivateData' } | ForEach-Object { $_.Item2.PipelineElements[0].Expression }
58+
59+
if ($privateDataAst) {
60+
foreach ($pair in $privateDataAst.KeyValuePairs) {
61+
if ($pair.Item1.Value -ne 'PSData') {
62+
$id = "%PSF_$(Get-Random)%"
63+
$privateData[$pair.Item1.Value] = $id
64+
$replacements[$id] = $pair.Item2.Extent.Text
65+
continue
66+
}
67+
68+
foreach ($subPair in $pair.Item2.PipelineElements[0].Expression.KeyValuePairs) {
69+
$id = "%PSF_$(Get-Random)%"
70+
$privateData.PSData[$subPair.Item1.Value] = $id
71+
$replacements[$id] = $subPair.Item2.Extent.Text
72+
}
73+
}
74+
}
75+
76+
if ($Tags) { $privateData.PSData['Tags'] = $Tags }
77+
if ($LicenseUri) { $privateData.PSData['LicenseUri'] = $LicenseUri }
78+
if ($IconUri) { $privateData.PSData['IconUri'] = $IconUri }
79+
if ($ProjectUri) { $privateData.PSData['ProjectUri'] = $ProjectUri }
80+
if ($ReleaseNotes) { $privateData.PSData['ReleaseNotes'] = $ReleaseNotes }
81+
if ($Prerelease) { $privateData.PSData['Prerelease'] = $Prerelease }
82+
83+
$privateDataString = $privateData | ConvertTo-Psd1 -Depth 5
84+
foreach ($pair in $replacements.GetEnumerator()) {
85+
$privateDataString = $privateDataString -replace "'$($pair.Key)'", $pair.Value
86+
}
87+
88+
if (-not $privateDataAst) {
89+
$newManifest = $ast.Extent.Text.Insert(($mainHash.Extent.EndOffset - 1), "PrivateData = $privateDataString")
90+
}
91+
else {
92+
$newManifest = $ast.Extent.Text.SubString(0, $privateDataAst.Extent.StartOffset) + $privateDataString + $ast.Extent.Text.SubString($privateDataAst.Extent.EndOffset)
93+
}
94+
$newManifest | Set-Content -Path $manifestPath
995
}
1096
}

0 commit comments

Comments
 (0)