Public/Update-AtwsManifest.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
<# .COPYRIGHT Copyright (c) ECIT Solutions AS. All rights reserved. Licensed under the MIT license. See https://github.com/ecitsolutions/Autotask/blob/master/LICENSE.md for license information. #> Function Update-AtwsManifest { <# .SYNOPSIS This function recreates the module manifest and nuspec with default settings. .DESCRIPTION This function recreates a module manifest and nuspec for the current module and has an option for increasing the version number to the next available based on current API version and module version. There is also an option for creating a manifest for a beta module. .INPUTS Nothing, only parameters. .OUTPUTS A PowerShell module manifest and nuspec file for the current module. .EXAMPLE Update-AtwsManifest Recreates a manifest and a nuspec file for the current module and overwrites the existing files with them. .EXAMPLE Update-AtwsManifest -UpdateVersion Recreates a manifest and a nuspec file for the current module, updates the version number in both and overwrites the existing files with them. .NOTES NAME: Update-AtwsFunctions #> [CmdLetBinding( SupportsShouldProcess = $true, ConfirmImpact = 'Medium' )] Param( # Optional flag that causes the function to increase the version number a single increment. [switch] $UpdateVersion, # Optional flag that causes the function to save the manifest files with suffix "Beta". [switch] $Beta ) begin { # Enable modern -Debug behavior if ($PSCmdlet.MyInvocation.BoundParameters['Debug'].IsPresent) { $DebugPreference = 'Continue' } Write-Debug ('{0}: Begin of function' -F $MyInvocation.MyCommand.Name) if (-not($Script:Atws.integrationsValue)) { Throw [ApplicationException] 'Not connected to Autotask WebAPI. Re-import module with valid credentials.' } # Get info from current module $ModuleInfo = $MyInvocation.MyCommand.Module $ModuleName = $ModuleInfo.Name $GUID = 'abd8b426-797b-4702-b66d-5f871d0701dc' # Create the parameter hashtable $ManifestParams = @{ } # Get valid parameters $Command = Get-Command -Name New-ModuleManifest # Pre-populate with previous values foreach ($parameter in $Command.Parameters.GetEnumerator()) { $Name = $parameter.Key if ($ModuleInfo.$Name) { $ManifestParams[$Name] = $ModuleInfo.$Name } } # Read the nuspec $Nuspec = New-Object -TypeName XML $NuspecSourcePath = Join-Path $ModuleInfo.ModuleBase ('{0}.nuspec' -F $ModuleInfo.Name) $NuspecPath = Join-Path $ModuleInfo.ModuleBase ('{0}.nuspec' -F $ModuleName) $Nuspec.Load($NuspecSourcePath) } process { # Overwrite parameters that need new values $ManifestParams['Path'] = Join-Path $ModuleInfo.ModuleBase ('{0}.psd1' -F $ModuleName) if ($UpdateVersion.IsPresent -or $Beta.IsPresent) { # Figure out the new module version number [Version]$ApiVersion = $Script:Atws.GetWsdlVersion($Script:Atws.IntegrationsValue) [Version]$Moduleversion = $ModuleInfo.Version $Major = $Moduleversion.Major $Minor = $Moduleversion.Minor $Build = $Moduleversion.Build if ($ApiVersion.Major -gt $Moduleversion.Major) { $Major = $ApiVersion.Major } if ($ApiVersion.Minor -gt $Moduleversion.Minor) { $Minor = $ApiVersion.Minor } if ([Version]::new($Major, $Minor, $Build) -eq $ModuleInfo.Version) { # It is the same major, minor number. Increase the build or prerelease $Build = $ModuleInfo.Version.Build if ($ModuleInfo.PrivateData.PSData.Prerelease) { # This is already a prerelease. Beta-revision is everthing after 'beta' [int]$BetaRevision = $ModuleInfo.PrivateData.PSData.Prerelease -replace 'beta', '' } else { # Previous manifest was not a prerelease. Build number must be increased whether # beta or not $Build++ } if ($Beta.IsPresent) { # If there is a betarevision, increase it. Else it is 1 if ($BetaRevision) { $BetaRevision++ } else { $BetaRevision = 1 } # Save prerelease text for Update-Manifest $Prerelease = 'beta{0}' -f $BetaRevision } } else { # New API version. Then this is the first revision of the new API version $Build = 0 } # Save the new version number to the parameter set $Moduleversion = [Version]::new($Major, $Minor, $Build) } else { # Use existing version if no update has been requested $Moduleversion = $ModuleInfo.Version } # Explicitly set important parameters $ManifestParams['RootModule'] = '{0}.psm1' -F $ModuleName $ManifestParams['Moduleversion'] = $Moduleversion # Make sure the GUID matches module manifest (Beta or Release) $ManifestParams['GUID'] = $GUID # Information to export <# $Functions = @() $Moduleinfo.ExportedFunctions.Keys | ForEach-Object { $Functions += $_ }#-replace $ModuleInfo.Prefix, '')} if ($Beta.IsPresent) { # Make sure the beta version does not clobber the release version through # automatic module import $ManifestParams['FunctionsToExport'] = '*' } else { $ManifestParams['FunctionsToExport'] = $Functions } #> $ManifestParams['FunctionsToExport'] = '*' $ManifestParams['CmdletsToExport'] = @() $ManifestParams['VariablesToExport'] = @() $ManifestParams['AliasesToExport'] = @() # Custom $ManifestParams['LicenseUri'] = $ModuleInfo.PrivateData.PSData.LicenseUri $ManifestParams['ProjectUri'] = $ModuleInfo.PrivateData.PSData.ProjectUri $ManifestParams['ReleaseNotes'] = $ModuleInfo.PrivateData.PSData.ReleaseNotes $ManifestParams['Tags'] = $ModuleInfo.PrivateData.PSData.Tags # Recreate PrivateData $ManifestParams['PrivateData'] = $PrivateData # There should not be any default prefix anymore if ($ManifestParams.Keys -contains 'DefaultCommandPrefix') { $ManifestParams.Remove('DefaultCommandPrefix') } Write-Verbose ('{0}: New manifest prepared' -F $MyInvocation.MyCommand.Name) # Update nuspec $Nuspec.DocumentElement.metadata.id = $ModuleName $Nuspec.DocumentElement.metadata.version = $ManifestParams['Moduleversion'].Tostring() $Nuspec.DocumentElement.metadata.description = $ManifestParams['Description'] $Nuspec.DocumentElement.metadata.authors = $ManifestParams['Author'] $Nuspec.DocumentElement.metadata.tags = $ManifestParams['Tags'] -join ', ' $Nuspec.DocumentElement.metadata.releasenotes = $ManifestParams['ReleaseNotes'] } end { $caption = $MyInvocation.MyCommand.Name $verboseDescription = '{0}: Overwriting existing module manifest and nuspec information file in {1}' -F $caption, $ModuleInfo.ModuleBase $verboseWarning = '{0}: About to overwrite existing module manifest and nuspec information file in {1}. Do you want to continue?' -F $caption, $ModuleInfo.ModuleBase if ($PSCmdlet.ShouldProcess($verboseDescription, $verboseWarning, $caption)) { # Create the new manifest New-ModuleManifest @ManifestParams if ($Prerelease) { Update-ModuleManifest -Path $ManifestParams['Path'] -Prerelease $Prerelease } # Save the nuspec $Nuspec.Save($NuspecPath) } Write-Debug ('{0}: End of function' -F $MyInvocation.MyCommand.Name) } } |