Created
January 3, 2019 08:42
-
-
Save Misiu/d82d7dae29c8dda843a5c7164b5c4786 to your computer and use it in GitHub Desktop.
Set-PackageQuality.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param | |
( | |
[ValidateSet("nuget","npm")][string] $feedType = "nuget", | |
[string] $feedName="", | |
[string] $packageId="", | |
[string] $packageVersion=[regex]::matches($Env:BUILD_BUILDNUMBER, “\d+\.\d+\.\d+\.\d+”), | |
[string] $packageQuality="", | |
[switch] $pester | |
) | |
#global variables | |
if ($env:SYSTEM_TEAMFOUNDATIONSERVERURI -like '*visualstudio*') { | |
Write-Verbose "VSTS MODE" | |
$account = ($env:SYSTEM_TEAMFOUNDATIONSERVERURI -replace "https://(.*)\.visualstudio\.com/", '$1').split('.')[0] | |
$basepackageurl = ("https://{0}.pkgs.visualstudio.com/DefaultCollection/_apis/packaging/feeds" -f $account) | |
$basefeedsurl = ("https://{0}.feeds.visualstudio.com/DefaultCollection/_apis/packaging/feeds" -f $account) | |
} | |
else { | |
write-Verbose "ONPREM MODE" | |
$basepackageurl = $env:SYSTEM_TEAMFOUNDATIONSERVERURI + "_apis/packaging/feeds"; | |
$basefeedsurl = $env:SYSTEM_TEAMFOUNDATIONSERVERURI + "_apis/packaging/feeds"; | |
} | |
<# | |
.Synopsis | |
Creates either a Basic Authentication token or a Bearer token depending on where the method is called from VSTS. | |
When you send a Personal Access Token that you generate in VSTS it uses this one. Within the VSTS pipeline it uses env:System_AccessToken | |
#> | |
function New-VSTSAuthenticationToken | |
{ | |
[CmdletBinding()] | |
[OutputType([object])] | |
$accesstoken = ""; | |
if([string]::IsNullOrEmpty($env:System_AccessToken)) | |
{ | |
if([string]::IsNullOrEmpty($env:PersonalAccessToken)) | |
{ | |
throw "No token provided. Use either env:PersonalAccessToken for Localruns or use in VSTS Build/Release (System_AccessToken)" | |
} | |
Write-Debug $($env:PersonalAccessToken) | |
$userpass = ":$($env:PersonalAccessToken)" | |
$encodedCreds = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($userpass)) | |
$accesstoken = "Basic $encodedCreds" | |
} | |
else | |
{ | |
$accesstoken = "Bearer $env:System_AccessToken" | |
} | |
return $accesstoken; | |
} | |
function Set-PackageQuality | |
{ | |
[CmdletBinding()] | |
[OutputType([object])] | |
param | |
( | |
[string] $feedType="nuget", | |
[string] $feedName="", | |
[string] $packageId="", | |
[string] $packageVersion="", | |
[string] $packageQuality="" | |
) | |
$token = New-VSTSAuthenticationToken | |
#API URL is slightly different for npm vs. nuget... | |
switch($feedType) | |
{ | |
"npm" { $releaseViewURL = "$basepackageurl/$feedName/npm/$packageId/versions/$($packageVersion)?api-version=3.0-preview.1" } | |
"nuget" { $releaseViewURL = "$basepackageurl/$feedName/nuget/packages/$packageId/versions/$($packageVersion)?api-version=3.0-preview.1" } | |
default { $releaseViewURL = "$basepackageurl/$feedName/nuget/packages/$packageId/versions/$($packageVersion)?api-version=3.0-preview.1" } | |
} | |
$json = @{ | |
views = @{ | |
op = "add" | |
path = "/views/-" | |
value = "$packageQuality" | |
} | |
} | |
Write-Host $releaseViewURL | |
$response = Invoke-RestMethod -Uri $releaseViewURL -Headers @{Authorization = $token} -ContentType "application/json" -Method Patch -Body (ConvertTo-Json $json) | |
return $response | |
} | |
if (-not $pester) | |
{ | |
Set-PackageQuality -feedType $feedType -feedName $feedName -packageId $packageId -packageVersion $packageVersion -packageQuality $packageQuality | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment