functions/Set-PackageUpdateSetting.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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
function Set-PackageUpdateSetting { <# .SYNOPSIS Set behaviour settings for PackageUpdateInfo module .DESCRIPTION Set-PackageUpdateInfo configure basic settings for check and report on up-to-dateness information on installed modules .PARAMETER Path The filepath where to setting file is stored This is optional, default path value is: Linux: "$HOME/.local/share/powershell/PackageUpdateInfo/PackageUpdateSetting_$($PSEdition)_$($PSVersionTable.PSVersion.Major).json") Windows: "$HOME\AppData\Local\Microsoft\Windows\PowerShell\PackageUpdateSetting_$($PSEdition)_$($PSVersionTable.PSVersion.Major).json") .PARAMETER InputObject Settings object parsed in from command Get-PackageUpdateSetting .PARAMETER ExcludeModuleFromChecking ModuleNames to exclude from update checking in the default rule .PARAMETER IncludeModuleForChecking ModuleNames to include from update checking in the default rule By default all modules are included. Default value is: "*" .PARAMETER ReportChangeOnMajor Report when major version changed for a module in the default rule This means 'Get-PackageUpdateSetting' report update need, only when the major version version of a module change. Major Minor Build Revision ----- ----- ----- -------- 1 0 0 0 .PARAMETER ReportChangeOnMinor Report when minor version changed for a module in the default rule This means 'Get-PackageUpdateSetting' report update need, only when the minor version version of a module change. Major Minor Build Revision ----- ----- ----- -------- 0 1 0 0 .PARAMETER ReportChangeOnBuild Report when build version changed for a module in the default rule This means 'Get-PackageUpdateSetting' report update need, when the build version version of a module change. Major Minor Build Revision ----- ----- ----- -------- 0 0 1 0 .PARAMETER ReportChangeOnRevision Report when revision part changed for a module in the default rule This means 'Get-PackageUpdateSetting' report update need, when the revision version version of a module change. Major Minor Build Revision ----- ----- ----- -------- 1 0 0 0 .PARAMETER UpdateCheckInterval The minimum interval/timespan has to gone by,for doing a new module update check Default value is: "01:00:00" .PARAMETER LastCheck Timestamp when last check for update need on modules started .PARAMETER LastSuccessfulCheck Timestamp when last check for update need finished .PARAMETER Reset Reset module to it'S default behaviour .PARAMETER PassThru The setting object will be parsed to the pipeline for further processing .PARAMETER WhatIf If this switch is enabled, no actions are performed but informational messages will be displayed that explain what would happen if the command were to run. .PARAMETER Confirm If this switch is enabled, you will be prompted for confirmation before executing any operations that change state. .EXAMPLE PS C:\> Set-PackageUpdateSetting -ExcludeModuleFromChecking @("") -IncludeModuleForChecking "*" -ReportChangeOnMajor $true -ReportChangeOnMinor $true -ReportChangeOnBuild $true -ReportChangeOnRevision $true -UpdateCheckInterval "01:00:00" Reset module to it'S default behaviour .EXAMPLE PS C:\> Set-PackageUpdateSetting -Reset Reset module to it'S default behaviour #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')] [Alias('spus')] [OutputType([PackageUpdate.Configuration])] Param ( [Parameter(ParameterSetName = "SetBehaviour")] [Alias("Exclude", "ExcludeModule")] [AllowEmptyString()] [String[]] $ExcludeModuleFromChecking, [Parameter(ParameterSetName = "SetBehaviour")] [Alias("Include", "IncludeModule")] [String[]] $IncludeModuleForChecking, [Parameter(ParameterSetName = "SetBehaviour")] [bool] $ReportChangeOnMajor, [Parameter(ParameterSetName = "SetBehaviour")] [bool] $ReportChangeOnMinor, [Parameter(ParameterSetName = "SetBehaviour")] [bool] $ReportChangeOnBuild, [Parameter(ParameterSetName = "SetBehaviour")] [bool] $ReportChangeOnRevision, [Parameter(ParameterSetName = "SetBehaviour")] [timespan] $UpdateCheckInterval, [Parameter(ParameterSetName = "SetBehaviour")] [datetime] $LastCheck, [Parameter(ParameterSetName = "SetBehaviour")] [datetime] $LastSuccessfulCheck, [Parameter(ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "SetBehaviour")] [PackageUpdate.Configuration] $InputObject, [Parameter(ParameterSetName = "ResetBehaviour")] [switch] $Reset, [Alias("FullName", "FilePath")] [String] $Path, [switch] $PassThru ) begin { } process { if ($PSCmdlet.ParameterSetName -like "ResetBehaviour") { if (-not $Path) { $Path = $script:ModuleSettingPath } if ($pscmdlet.ShouldProcess($path, "Reset PackageUpdateInfo behaviour")) { # Initialize default preferences $defaultSetting = [PackageUpdate.Configuration]@{ CustomRule = @() DefaultRule = [PackageUpdate.ModuleRule]@{ ExcludeModuleFromChecking = @("") IncludeModuleForChecking = @("*") ReportChangeOnMajor = $true ReportChangeOnMinor = $true ReportChangeOnBuild = $true ReportChangeOnRevision = $true } UpdateCheckInterval = "01:00:00" LastCheck = [string][datetime]::MinValue LastSuccessfulCheck = [string][datetime]::MinValue Path = $Path } # Write setting to file $defaultSetting | ConvertFrom-PackageUpdateSetting | ConvertTo-Json | Out-File -FilePath $Path -Encoding default -Force if ($PassThru) { $defaultSetting } } } if ($PSCmdlet.ParameterSetName -like "SetBehaviour") { # If no setting object is piped in, get the current settings if (-not $InputObject) { $paramPackageUpdateSetting = @{ } if ($Path) { $paramPackageUpdateSetting["Path"] = $Path } $InputObject = Get-PackageUpdateSetting @paramPackageUpdateSetting } # check if path is specified if ($Path) { if (-not ($Path -like $InputObject.Path)) { Write-Verbose -Message "Setting object is piped in but a different path for PackageUpdate setting is specified. Piped in object will override path setting. (Effective path: $($InputObject.Path))" -Verbose $Path = $InputObject.Path } } else { $Path = $InputObject.Path } # Set the new preference values if ("ExcludeModuleFromChecking" -in $PSBoundParameters.Keys) { Write-Verbose "Setting ExcludeModuleFromChecking: '$([string]::Join(", ", $ExcludeModuleFromChecking))'" $InputObject.DefaultRule.ExcludeModuleFromChecking = $ExcludeModuleFromChecking } if ("IncludeModuleForChecking" -in $PSBoundParameters.Keys) { Write-Verbose "Setting IncludeModuleForChecking: '$([string]::Join(", ", $IncludeModuleForChecking))'" $InputObject.DefaultRule.IncludeModuleForChecking = $IncludeModuleForChecking } if ($PSBoundParameters["ReportChangeOnMajor"]) { Write-Verbose "Setting ReportChangeOnMajor: $($ReportChangeOnMajor)" $InputObject.DefaultRule.ReportChangeOnMajor = $ReportChangeOnMajor } if ($PSBoundParameters["ReportChangeOnMinor"]) { Write-Verbose "Setting ReportChangeOnMinor: $($ReportChangeOnMinor)" $InputObject.DefaultRule.ReportChangeOnMinor = $ReportChangeOnMinor } if ($PSBoundParameters["ReportChangeOnBuild"]) { Write-Verbose "Setting ReportChangeOnBuild: $($ReportChangeOnBuild)" $InputObject.DefaultRule.ReportChangeOnBuild = $ReportChangeOnBuild } if ($PSBoundParameters["ReportChangeOnRevision"]) { Write-Verbose "Setting ReportChangeOnRevision: $($ReportChangeOnRevision)" $InputObject.DefaultRule.ReportChangeOnRevision = $ReportChangeOnRevision } if ($PSBoundParameters["UpdateCheckInterval"]) { Write-Verbose "Setting UpdateCheckInterval: $($UpdateCheckInterval)" $InputObject.UpdateCheckInterval = $UpdateCheckInterval } if ($PSBoundParameters["LastCheck"]) { Write-Verbose "Setting LastCheck: $($LastCheck)" $InputObject.LastCheck = $LastCheck } if ($PSBoundParameters["LastSuccessfulCheck"]) { Write-Verbose "Setting LastSuccessfulCheck: '$($LastSuccessfulCheck)'" $InputObject.LastSuccessfulCheck = $LastSuccessfulCheck } Write-Verbose "Setting 'Path': $($Path)" $InputObject.Path = $Path if ($pscmdlet.ShouldProcess($path, "Export PackageUpdateInfo")) { $InputObject | ConvertFrom-PackageUpdateSetting | ConvertTo-Json | Out-File -FilePath $Path -Encoding default -Force } } } end { } } |