Public/Update-Package.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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
# Author: Miodrag Milic <miodrag.milic@gmail.com> # Last Change: 19-Dec-2016. <# .SYNOPSIS Update automatic package .DESCRIPTION This function is used to perform necessary updates to the specified files in the package. It shouldn't be used on its own but must be part of the script which defines two functions: - au_SearchReplace The function should return HashTable where keys are file paths and value is another HashTable where keys and values are standard search and replace strings - au_GetLatest Returns the HashTable where the script specifies information about new Version, new URLs and any other data. You can refer to this variable as the $Latest in the script. While Version is used to determine if updates to the package are needed, other arguments can be used in search and replace patterns or for whatever purpose. With those 2 functions defined, calling Update-Package will: - Call your au_GetLatest function to get the remote version and other information. - If remote version is higher then the nuspec version, function will: - Check the returned URLs, Versions and Checksums (if defined) for validity (unless NoCheckXXX variables are specified) - Download files and calculate checksum(s), (unless already defined or ChecksumFor is set to 'none') - Update the nuspec with the latest version - Do the necessary file replacements - Pack the files into the nuget package You can also define au_BeforeUpdate and au_AfterUpdate functions to integrate your code into the update pipeline. .EXAMPLE PS> notepad update.ps1 # The following script is used to update the package from the github releases page. # After it defines the 2 functions, it calls the Update-Package. # Checksums are automatically calculated for 32 bit version (the only one in this case) import-module au function global:au_SearchReplace { ".\tools\chocolateyInstall.ps1" = @{ "(^[$]url32\s*=\s*)('.*')" = "`$1'$($Latest.URL32)'" "(^[$]checksum32\s*=\s*)('.*')" = "`$1'$($Latest.Checksum32)'" "(^[$]checksumType32\s*=\s*)('.*')" = "`$1'$($Latest.ChecksumType32)'" } } function global:au_GetLatest { $download_page = Invoke-WebRequest https://github.com/hluk/CopyQ/releases -UseBasicParsing $re = "copyq-.*-setup.exe" $url = $download_page.links | ? href -match $re | select -First 1 -expand href $version = $url -split '-|.exe' | select -Last 1 -Skip 2 return @{ URL32 = $url; Version = $version } } Update-Package -ChecksumFor 32 .NOTES All function parameters accept defaults via global variables with prefix `au_` (example: $global:au_Force = $true). .OUTPUTS PSCustomObject with type AUPackage. .LINK Update-AUPackages #> function Update-Package { [CmdletBinding()] param( #Do not check URL and version for validity. [switch] $NoCheckUrl, #Do not check if latest returned version already exists in the Chocolatey community feed. #Ignored when Force is specified. [switch] $NoCheckChocoVersion, #Specify for which architectures to calculate checksum - all, 32 bit, 64 bit or none. [ValidateSet('all', '32', '64', 'none')] [string] $ChecksumFor='all', #Timeout for all web operations, by default 100 seconds. [int] $Timeout, #Streams to process, either a string or an array. If ommitted, all streams are processed. #Single stream required when Force is specified. $IncludeStream, #Force package update even if no new version is found. #For multi streams packages, most recent stream is checked by default when Force is specified. [switch] $Force, #Do not show any Write-Host output. [switch] $NoHostOutput, #Output variable. [string] $Result, #Backup and restore package. [switch] $WhatIf, #Disable automatic update of nuspec description from README.md files with first 2 lines skipped. [switch] $NoReadme ) function check_urls() { "URL check" | result $Latest.Keys | ? {$_ -like 'url*' } | % { $url = $Latest[ $_ ] if ($res = check_url $url -Options $Latest.Options) { throw "${res}:$url" } else { " $url" | result } } } function get_checksum() { function invoke_installer() { if (!(Test-Path tools\chocolateyInstall.ps1)) { " aborted, chocolateyInstall not found for this package" | result; return } Import-Module "$choco_tmp_path\helpers\chocolateyInstaller.psm1" -Force -Scope Global if ($ChecksumFor -eq 'none') { "Automatic checksum calculation is disabled"; return } if ($ChecksumFor -eq 'all') { $arch = '32','64' } else { $arch = $ChecksumFor } $Env:ChocolateyPackageFolder = [System.IO.Path]::GetFullPath("$Env:TEMP\chocolatey\$($package.Name)") #https://github.com/majkinetor/au/issues/32 $pkg_path = Join-Path $Env:ChocolateyPackageFolder $global:Latest.Version mkdir -Force $pkg_path | Out-Null $Env:ChocolateyPackageName = "chocolatey\$($package.Name)" $Env:ChocolateyPackageVersion = $global:Latest.Version.ToString() $Env:ChocolateyAllowEmptyChecksums = 'true' foreach ($a in $arch) { $Env:chocolateyForceX86 = if ($a -eq '32') { 'true' } else { '' } try { #rm -force -recurse -ea ignore $pkg_path .\tools\chocolateyInstall.ps1 | result } catch { if ( "$_" -notlike 'au_break: *') { throw $_ } else { $filePath = "$_" -replace 'au_break: ' if (!(Test-Path $filePath)) { throw "Can't find file path to checksum" } $item = gi $filePath $type = if ($global:Latest.ContainsKey('ChecksumType' + $a)) { $global:Latest.Item('ChecksumType' + $a) } else { 'sha256' } $hash = (Get-FileHash $item -Algorithm $type | % Hash).ToLowerInvariant() if (!$global:Latest.ContainsKey('ChecksumType' + $a)) { $global:Latest.Add('ChecksumType' + $a, $type) } if (!$global:Latest.ContainsKey('Checksum' + $a)) { $global:Latest.Add('Checksum' + $a, $hash) "Package downloaded and hash calculated for $a bit version" | result } else { $expected = $global:Latest.Item('Checksum' + $a) if ($hash -ne $expected) { throw "Hash for $a bit version mismatch: actual = '$hash', expected = '$expected'" } "Package downloaded and hash checked for $a bit version" | result } } } } } function fix_choco { Sleep -Milliseconds (Get-Random 500) #reduce probability multiple updateall threads entering here at the same time (#29) # Copy choco modules once a day if (Test-Path $choco_tmp_path) { $ct = gi $choco_tmp_path | % creationtime if (((get-date) - $ct).Days -gt 1) { rm -recurse -force $choco_tmp_path } else { Write-Verbose 'Chocolatey copy is recent, aborting monkey patching'; return } } Write-Verbose "Monkey patching chocolatey in: '$choco_tmp_path'" cp -recurse -force $Env:ChocolateyInstall\helpers $choco_tmp_path\helpers if (Test-Path $Env:ChocolateyInstall\extensions) { cp -recurse -force $Env:ChocolateyInstall\extensions $choco_tmp_path\extensions } $fun_path = "$choco_tmp_path\helpers\functions\Get-ChocolateyWebFile.ps1" (gc $fun_path) -replace '^\s+return \$fileFullPath\s*$', ' throw "au_break: $fileFullPath"' | Set-Content $fun_path -ea ignore } "Automatic checksum started" | result # Copy choco powershell functions to TEMP dir and monkey patch the Get-ChocolateyWebFile function $choco_tmp_path = "$Env:TEMP\chocolatey\au\chocolatey" fix_choco # This will set the new URLs before the files are downloaded but will replace checksums to empty ones so download will not fail # because checksums are at that moment set for the previous version. # SkipNuspecFile is passed so that if things fail here, nuspec file isn't updated; otherwise, on next run # AU will think that package is the most recent. # # TODO: This will also leaves other then nuspec files updated which is undesired side effect (should be very rare) # $global:Silent = $true $c32 = $global:Latest.Checksum32; $c64 = $global:Latest.Checksum64 #https://github.com/majkinetor/au/issues/36 $global:Latest.Remove('Checksum32'); $global:Latest.Remove('Checksum64') # -||- update_files -SkipNuspecFile | out-null if ($c32) {$global:Latest.Checksum32 = $c32} if ($c64) {$global:Latest.Checksum64 = $c64} #https://github.com/majkinetor/au/issues/36 $global:Silent = $false # Invoke installer for each architecture to download files invoke_installer } function process_stream() { $package.Updated = $false if (!(is_version $package.NuspecVersion)) { Write-Warning "Invalid nuspec file Version '$($package.NuspecVersion)' - using 0.0" $global:Latest.NuspecVersion = $package.NuspecVersion = '0.0' } if (!(is_version $Latest.Version)) { throw "Invalid version: $($Latest.Version)" } $package.RemoteVersion = $Latest.Version # For set_fix_version to work propertly, $Latest.Version's type must be assignable from string. # If not, then cast its value to string. if (!('1.0' -as $Latest.Version.GetType())) { $Latest.Version = [string] $Latest.Version } if (!$NoCheckUrl) { check_urls } "nuspec version: " + $package.NuspecVersion | result "remote version: " + $package.RemoteVersion | result $script:is_forced = $false if ([AUVersion] $Latest.Version -gt [AUVersion] $Latest.NuspecVersion) { if (!($NoCheckChocoVersion -or $Force)) { if ( !$au_GalleryUrl ) { $au_GalleryUrl = 'https://chocolatey.org' } $choco_url = "$au_GalleryUrl/packages/{0}/{1}" -f $global:Latest.PackageName, $package.RemoteVersion try { request $choco_url $Timeout | out-null "New version is available but it already exists in the Chocolatey community feed (disable using `$NoCheckChocoVersion`):`n $choco_url" | result return } catch { } } } else { if (!$Force) { 'No new version found' | result return } else { 'No new version found, but update is forced' | result; set_fix_version } } 'New version is available' | result $match_url = ($Latest.Keys | ? { $_ -match '^URL*' } | select -First 1 | % { $Latest[$_] } | split-Path -Leaf) -match '(?<=\.)[^.]+$' if ($match_url -and !$Latest.FileType) { $Latest.FileType = $Matches[0] } if ($ChecksumFor -ne 'none') { get_checksum } else { 'Automatic checksum skipped' | result } if ($WhatIf) { $package.Backup() } try { if (Test-Path Function:\au_BeforeUpdate) { 'Running au_BeforeUpdate' | result; au_BeforeUpdate $package | result } if (!$NoReadme -and (Test-Path "$($package.Path)\README.md")) { Set-DescriptionFromReadme $package -SkipFirst 2 | result } update_files if (Test-Path Function:\au_AfterUpdate) { 'Running au_AfterUpdate' | result; au_AfterUpdate $package | result } choco pack --limit-output | result if ($LastExitCode -ne 0) { throw "Choco pack failed with exit code $LastExitCode" } } finally { if ($WhatIf) { $save_dir = $package.SaveAndRestore() Write-Warning "Package restored and updates saved to: $save_dir" } } $package.Updated = $true } function set_fix_version() { $script:is_forced = $true if ($global:au_Version) { "Overriding version to: $global:au_Version" | result $package.RemoteVersion = $global:au_Version if (!(is_version $global:au_Version)) { throw "Invalid version: $global:au_Version" } $global:Latest.Version = $package.RemoteVersion $global:au_Version = $null return } $date_format = 'yyyyMMdd' $d = (get-date).ToString($date_format) $nuspecVersion = [AUVersion] $Latest.NuspecVersion $v = $nuspecVersion.Version $rev = $v.Revision.ToString() try { $revdate = [DateTime]::ParseExact($rev, $date_format,[System.Globalization.CultureInfo]::InvariantCulture, [System.Globalization.DateTimeStyles]::None) } catch {} if (($rev -ne -1) -and !$revdate) { return } $build = if ($v.Build -eq -1) {0} else {$v.Build} $v = [version] ('{0}.{1}.{2}.{3}' -f $v.Major, $v.Minor, $build, $d) $package.RemoteVersion = $nuspecVersion.WithVersion($v).ToString() $Latest.Version = $package.RemoteVersion -as $Latest.Version.GetType() } function set_latest( [HashTable] $latest, [string] $version, $stream ) { if (!$latest.NuspecVersion) { $latest.NuspecVersion = $version } if ($stream -and !$latest.Stream) { $latest.Stream = $stream } $package.NuspecVersion = $latest.NuspecVersion $global:Latest = $global:au_Latest $latest.Keys | % { $global:Latest.Remove($_) } $global:Latest += $latest } function update_files( [switch]$SkipNuspecFile ) { 'Updating files' | result ' $Latest data:' | result; ($global:Latest.keys | sort | % { $v=$global:Latest[$_]; " {0,-25} {1,-12} {2}" -f $_, "($( if ($v) { $v.GetType().Name } ))", $v }) | result if (!$SkipNuspecFile) { " $(Split-Path $package.NuspecPath -Leaf)" | result " setting id: $($global:Latest.PackageName)" | result $package.NuspecXml.package.metadata.id = $package.Name = $global:Latest.PackageName.ToString() $msg = " updating version: {0} -> {1}" -f $package.NuspecVersion, $package.RemoteVersion if ($script:is_forced) { if ($package.RemoteVersion -eq $package.NuspecVersion) { $msg = " version not changed as it already uses 'revision': {0}" -f $package.NuspecVersion } else { $msg = " using Chocolatey fix notation: {0} -> {1}" -f $package.NuspecVersion, $package.RemoteVersion } } $msg | result $package.NuspecXml.package.metadata.version = $package.RemoteVersion.ToString() $package.SaveNuspec() if ($global:Latest.Stream) { $package.UpdateStream($global:Latest.Stream, $package.RemoteVersion) } } $sr = au_SearchReplace $sr.Keys | % { $fileName = $_ " $fileName" | result # If not specifying UTF8 encoding, then UTF8 without BOM encoded files # is detected as ANSI $fileContent = gc $fileName -Encoding UTF8 $sr[ $fileName ].GetEnumerator() | % { (' {0,-35} = {1}' -f $_.name, $_.value) | result if (!($fileContent -match $_.name)) { throw "Search pattern not found: '$($_.name)'" } $fileContent = $fileContent -replace $_.name, $_.value } $useBomEncoding = if ($fileName.EndsWith('.ps1')) { $true } else { $false } $encoding = New-Object System.Text.UTF8Encoding($useBomEncoding) $output = $fileContent | Out-String [System.IO.File]::WriteAllText((gi $fileName).FullName, $output, $encoding) } } function result() { if ($global:Silent) { return } $input | % { $package.Result += $_ if (!$NoHostOutput) { Write-Host $_ } } } if ($PSCmdlet.MyInvocation.ScriptName -eq '') { Write-Verbose 'Running outside of the script' if (!(Test-Path update.ps1)) { return "Current directory doesn't contain ./update.ps1 script" } else { return ./update.ps1 } } else { Write-Verbose 'Running inside the script' } # Assign parameters from global variables with the prefix `au_` if they are bound (gcm $PSCmdlet.MyInvocation.InvocationName).Parameters.Keys | % { if ($PSBoundParameters.Keys -contains $_) { return } $value = gv "au_$_" -Scope Global -ea Ignore | % Value if ($value -ne $null) { sv $_ $value Write-Verbose "Parameter $_ set from global variable au_${_}: $value" } } if ($WhatIf) { Write-Warning "WhatIf passed - package files will not be changed" } $package = [AUPackage]::new( $pwd ) if ($Result) { sv -Scope Global -Name $Result -Value $package } $global:Latest = @{PackageName = $package.Name} # https://github.com/majkinetor/au/issues/206 [System.Net.ServicePointManager]::SecurityProtocol = 'Tls,Tls11,Tls12,Tls13' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/366 $module = $MyInvocation.MyCommand.ScriptBlock.Module "{0} - checking updates using {1} version {2}" -f $package.Name, $module.Name, $module.Version | result try { $res = au_GetLatest | select -Last 1 $global:au_Latest = $global:Latest if ($res -eq $null) { throw 'au_GetLatest returned nothing' } if ($res -eq 'ignore') { return $res } $res_type = $res.GetType() if ($res_type -ne [HashTable]) { throw "au_GetLatest doesn't return a HashTable result but $res_type" } if ($global:au_Force) { $Force = $true } if ($global:au_IncludeStream) { $IncludeStream = $global:au_IncludeStream } } catch { throw "au_GetLatest failed`n$_" } if ($res.ContainsKey('Streams')) { if (!$res.Streams) { throw "au_GetLatest's streams returned nothing" } if ($res.Streams -isnot [System.Collections.Specialized.OrderedDictionary] -and $res.Streams -isnot [HashTable]) { throw "au_GetLatest doesn't return an OrderedDictionary or HashTable result for streams but $($res.Streams.GetType())" } # Streams are expected to be sorted starting with the most recent one $streams = @($res.Streams.Keys) # In case of HashTable (i.e. not sorted), let's sort streams alphabetically descending if ($res.Streams -is [HashTable]) { $streams = $streams | sort -Descending } if ($IncludeStream) { if ($IncludeStream -isnot [string] -and $IncludeStream -isnot [double] -and $IncludeStream -isnot [Array]) { throw "`$IncludeStream must be either a String, a Double or an Array but is $($IncludeStream.GetType())" } if ($IncludeStream -is [double]) { $IncludeStream = $IncludeStream -as [string] } if ($IncludeStream -is [string]) { # Forcing type in order to handle case when only one version is included [Array] $IncludeStream = $IncludeStream -split ',' | % { $_.Trim() } } } elseif ($Force) { # When forcing update, a single stream is expected # By default, we take the first one (i.e. the most recent one) $IncludeStream = @($streams | select -First 1) } if ($Force -and (!$IncludeStream -or $IncludeStream.Length -ne 1)) { throw 'A single stream must be included when forcing package update' } if ($IncludeStream) { $streams = @($streams | ? { $_ -in $IncludeStream }) } # Let's reverse the order in order to process streams starting with the oldest one [Array]::Reverse($streams) $res.Keys | ? { $_ -ne 'Streams' } | % { $global:au_Latest.Remove($_) } $global:au_Latest += $res $allStreams = [System.Collections.Specialized.OrderedDictionary] @{} $streams | % { $stream = $res.Streams[$_] '' | result "*** Stream: $_ ***" | result if ($stream -eq $null) { throw "au_GetLatest's $_ stream returned nothing" } if ($stream -eq 'ignore') { $stream | result return } if ($stream -isnot [HashTable]) { throw "au_GetLatest's $_ stream doesn't return a HashTable result but $($stream.GetType())" } if ($package.Streams.$_.NuspecVersion -eq 'ignore') { 'Ignored' | result return } set_latest $stream $package.Streams.$_.NuspecVersion $_ process_stream $allStreams.$_ = if ($package.Streams.$_) { $package.Streams.$_.Clone() } else { @{} } $allStreams.$_.NuspecVersion = $package.NuspecVersion $allStreams.$_ += $package.GetStreamDetails() } $package.Updated = $false $package.Streams = $allStreams $package.Streams.Values | ? { $_.Updated } | % { $package.NuspecVersion = $_.NuspecVersion $package.RemoteVersion = $_.RemoteVersion $package.Updated = $true } } else { '' | result set_latest $res $package.NuspecVersion process_stream } if ($package.Updated) { '' | result 'Package updated' | result } return $package } Set-Alias update Update-Package |