1
1
function Update-ModuleInformation {
2
2
[CmdletBinding ()]
3
3
param (
4
+ $Module ,
4
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
+ $Cmdlet = $PSCmdlet ,
25
+
26
+ [switch ]
27
+ $Continue
5
28
)
6
29
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
9
95
}
10
96
}
0 commit comments