1
+ function Update-PSFModuleManifest {
2
+ [CmdletBinding ()]
3
+ param (
4
+ $Path ,
5
+
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
+ [switch ]
25
+ $PassThru ,
26
+
27
+ $Cmdlet = $PSCmdlet ,
28
+
29
+ [switch ]
30
+ $Continue
31
+ )
32
+ begin {
33
+ # region Utility Functions
34
+ function Update-ManifestProperty {
35
+ [OutputType ([System.Management.Automation.Language.Ast ])]
36
+ [CmdletBinding ()]
37
+ param (
38
+ [Parameter (Mandatory = $true )]
39
+ [System.Management.Automation.Language.Ast ]
40
+ $Ast ,
41
+
42
+ [Parameter (Mandatory = $true )]
43
+ [string ]
44
+ $Property ,
45
+
46
+ [Parameter (Mandatory = $true )]
47
+ $Value ,
48
+
49
+ [Parameter (Mandatory = $true )]
50
+ [ValidateSet (' String' , ' StringArray' , ' HashtableArray' )]
51
+ [string ]
52
+ $Type
53
+ )
54
+
55
+ $mainHash = $Ast.FindAll ({
56
+ $args [0 ] -is [System.Management.Automation.Language.HashtableAst ] -and
57
+ $args [0 ].KeyValuePairs.Item1.Value -contains ' RootModule' -and
58
+ $args [0 ].KeyValuePairs.Item1.Value -Contains ' ModuleVersion'
59
+ }, $true )
60
+
61
+ $entry = $mainhash.KeyValuePairs | Where-Object { $_.Item1.Value -eq $Property }
62
+ $stringValue = switch ($Type ) {
63
+ ' String' { $Value | ConvertTo-Psd1 }
64
+ ' StringArray' { , @ (, @ ($Value )) | ConvertTo-Psd1 }
65
+ ' HashtableArray' { , @ (, @ ($Value )) | ConvertTo-Psd1 }
66
+ }
67
+ $format = ' {0}'
68
+ # region Case: Key Already Exists
69
+ if ($entry ) {
70
+ $start = $entry.Item2.Extent.StartOffset
71
+ $end = $entry.Item2.Extent.EndOffset
72
+ }
73
+ # endregion Case: Key Already Exists
74
+
75
+ # region Case: Key Does not exist
76
+ else {
77
+ $line = $Ast.Extent.Text -split " `n " | Where-Object { $_ -match " #\s+$Property = " }
78
+ # Entry already exists but is commented out
79
+ if ($line ) {
80
+ $format = " $Property = {0}"
81
+ $index = $Ast.Extent.Text.IndexOf ($line )
82
+ $start = $index + $line.Length - $line.TrimStart ().Length
83
+ $end = $index + $line.Length
84
+ }
85
+ # Entry does not exist already
86
+ else {
87
+ $indent = ($Ast.Extent.Text -split " `n " | Where-Object { $_ -match " ^\s+ModuleVersion" }) -replace ' ^(\s*).+$' , ' $1'
88
+ $format = " $ ( $indent ) $ ( $Property ) = {0}`n "
89
+ $start = $mainHash.Extent.EndOffset - 1
90
+ $end = $mainHash.Extent.EndOffset - 1
91
+ }
92
+ }
93
+ # endregion Case: Key Does not exist
94
+
95
+ $newText = $Ast.Extent.Text.SubString (0 , $start ) + ($format -f $stringValue ) + $Ast.Extent.SubString ($end )
96
+ [System.Management.Automation.Language.Parser ]::ParseInput($newText , [ref ]$null , [ref ]$null )
97
+ }
98
+ # endregion Utility Functions
99
+ }
100
+ process {
101
+ # If Nothing to do, do nothing
102
+ if (-not ($Tags -or $LicenseUri -or $IconUri -or $ProjectUri -or $ReleaseNotes -or $Prerelease )) { return }
103
+
104
+ $killIt = $ErrorActionPreference -eq ' Stop'
105
+
106
+ $ast = [System.Management.Automation.Language.Parser ]::ParseFile($Path , [ref ]$null , [ref ]$null )
107
+
108
+ $mainHash = $ast.FindAll ({
109
+ $args [0 ] -is [System.Management.Automation.Language.HashtableAst ] -and
110
+ $args [0 ].KeyValuePairs.Item1.Value -contains ' RootModule' -and
111
+ $args [0 ].KeyValuePairs.Item1.Value -Contains ' ModuleVersion'
112
+ }, $true )
113
+
114
+ if (-not $mainHash ) {
115
+ Stop-PSFFunction - String ' Update-PSFModuleManifest.Error.BadManifest' - StringValues (Get-Item - Path $Path ).BaseName, $Path - Cmdlet $Cmdlet - EnableException $killIt - Continue:$Continue
116
+ return
117
+ }
118
+
119
+ # region PrivateData Content
120
+ $privateData = [ordered ]@ {
121
+ PSData = [ordered ]@ { }
122
+ }
123
+ $replacements = @ { }
124
+
125
+ $privateDataAst = $mainHash.KeyValuePairs | Where-Object { $_.Item1.Value -eq ' PrivateData' } | ForEach-Object { $_.Item2.PipelineElements [0 ].Expression }
126
+
127
+ if ($privateDataAst ) {
128
+ foreach ($pair in $privateDataAst.KeyValuePairs ) {
129
+ if ($pair.Item1.Value -ne ' PSData' ) {
130
+ $id = " %PSF_$ ( Get-Random ) %"
131
+ $privateData [$pair.Item1.Value ] = $id
132
+ $replacements [$id ] = $pair.Item2.Extent.Text
133
+ continue
134
+ }
135
+
136
+ foreach ($subPair in $pair.Item2.PipelineElements [0 ].Expression.KeyValuePairs) {
137
+ $id = " %PSF_$ ( Get-Random ) %"
138
+ $privateData.PSData [$subPair.Item1.Value ] = $id
139
+ $replacements [$id ] = $subPair.Item2.Extent.Text
140
+ }
141
+ }
142
+ }
143
+
144
+ if ($Tags ) { $privateData.PSData [' Tags' ] = $Tags }
145
+ if ($LicenseUri ) { $privateData.PSData [' LicenseUri' ] = $LicenseUri }
146
+ if ($IconUri ) { $privateData.PSData [' IconUri' ] = $IconUri }
147
+ if ($ProjectUri ) { $privateData.PSData [' ProjectUri' ] = $ProjectUri }
148
+ if ($ReleaseNotes ) { $privateData.PSData [' ReleaseNotes' ] = $ReleaseNotes }
149
+ if ($Prerelease ) { $privateData.PSData [' Prerelease' ] = $Prerelease }
150
+
151
+ $privateDataString = $privateData | ConvertTo-Psd1 - Depth 5
152
+ foreach ($pair in $replacements.GetEnumerator ()) {
153
+ $privateDataString = $privateDataString -replace " '$ ( $pair.Key ) '" , $pair.Value
154
+ }
155
+
156
+ if (-not $privateDataAst ) {
157
+ $newManifest = $ast.Extent.Text.Insert (($mainHash.Extent.EndOffset - 1 ), " PrivateData = $privateDataString `n " )
158
+ }
159
+ else {
160
+ $newManifest = $ast.Extent.Text.SubString (0 , $privateDataAst.Extent.StartOffset ) + $privateDataString + $ast.Extent.Text.SubString ($privateDataAst.Extent.EndOffset )
161
+ }
162
+ # endregion PrivateData Content
163
+
164
+ if ($PassThru ) { $newManifest }
165
+ else { $newManifest | Set-Content - Path $Path }
166
+ }
167
+ }
0 commit comments