2019-11-08 23:46:49 +00:00
# This file is a temporary workaround for internal builds to be able to restore from private AzDO feeds.
# This file should be removed as part of this issue: https://github.com/dotnet/arcade/issues/4080
#
# What the script does is iterate over all package sources in the pointed NuGet.config and add a credential entry
# under <packageSourceCredentials> for each Maestro managed private feed. Two additional credential
# entries are also added for the two private static internal feeds: dotnet3-internal and dotnet3-internal-transport.
#
# This script needs to be called in every job that will restore packages and which the base repo has
# private AzDO feeds in the NuGet.config.
#
# See example YAML call for this script below. Note the use of the variable `$(dn-bot-dnceng-artifact-feeds-rw)`
# from the AzureDevOps-Artifact-Feeds-Pats variable group.
#
2020-08-11 13:01:14 +00:00
# Any disabledPackageSources entries which start with "darc-int" will be re-enabled as part of this script executing
#
2019-11-08 23:46:49 +00:00
# - task: PowerShell@2
# displayName: Setup Private Feeds Credentials
# condition: eq(variables['Agent.OS'], 'Windows_NT')
# inputs:
# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1
2019-12-04 13:31:24 +00:00
# arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token
2019-11-08 23:46:49 +00:00
# env:
# Token: $(dn-bot-dnceng-artifact-feeds-rw)
[ CmdletBinding ( ) ]
param (
[ Parameter ( Mandatory = $true ) ] [ string ] $ConfigFile ,
[ Parameter ( Mandatory = $true ) ] [ string ] $Password
)
$ErrorActionPreference = " Stop "
Set-StrictMode -Version 2.0
[ Net.ServicePointManager ] :: SecurityProtocol = [ Net.SecurityProtocolType ] :: Tls12
. $PSScriptRoot \ tools . ps1
# Add source entry to PackageSources
2024-03-21 22:37:28 +00:00
function AddPackageSource($sources , $SourceName , $SourceEndPoint , $creds , $Username , $pwd ) {
2019-11-08 23:46:49 +00:00
$packageSource = $sources . SelectSingleNode ( " add[@key=' $SourceName '] " )
if ( $packageSource -eq $null )
{
$packageSource = $doc . CreateElement ( " add " )
$packageSource . SetAttribute ( " key " , $SourceName )
$packageSource . SetAttribute ( " value " , $SourceEndPoint )
$sources . AppendChild ( $packageSource ) | Out-Null
}
else {
Write-Host " Package source $SourceName already present. "
}
2024-03-21 22:37:28 +00:00
AddCredential -Creds $creds -Source $SourceName -Username $Username -pwd $pwd
2019-11-08 23:46:49 +00:00
}
# Add a credential node for the specified source
2024-03-21 22:37:28 +00:00
function AddCredential($creds , $source , $username , $pwd ) {
2019-11-08 23:46:49 +00:00
# Looks for credential configuration for the given SourceName. Create it if none is found.
$sourceElement = $creds . SelectSingleNode ( $Source )
if ( $sourceElement -eq $null )
{
$sourceElement = $doc . CreateElement ( $Source )
$creds . AppendChild ( $sourceElement ) | Out-Null
}
# Add the <Username> node to the credential if none is found.
$usernameElement = $sourceElement . SelectSingleNode ( " add[@key='Username'] " )
if ( $usernameElement -eq $null )
{
$usernameElement = $doc . CreateElement ( " add " )
$usernameElement . SetAttribute ( " key " , " Username " )
$sourceElement . AppendChild ( $usernameElement ) | Out-Null
}
$usernameElement . SetAttribute ( " value " , $Username )
# Add the <ClearTextPassword> to the credential if none is found.
# Add it as a clear text because there is no support for encrypted ones in non-windows .Net SDKs.
# -> https://github.com/NuGet/Home/issues/5526
$passwordElement = $sourceElement . SelectSingleNode ( " add[@key='ClearTextPassword'] " )
if ( $passwordElement -eq $null )
{
$passwordElement = $doc . CreateElement ( " add " )
$passwordElement . SetAttribute ( " key " , " ClearTextPassword " )
$sourceElement . AppendChild ( $passwordElement ) | Out-Null
}
2024-03-21 22:37:28 +00:00
$passwordElement . SetAttribute ( " value " , $pwd )
2019-11-08 23:46:49 +00:00
}
2024-03-21 22:37:28 +00:00
function InsertMaestroPrivateFeedCredentials($Sources , $Creds , $Username , $pwd ) {
2019-11-08 23:46:49 +00:00
$maestroPrivateSources = $Sources . SelectNodes ( " add[contains(@key,'darc-int')] " )
Write-Host " Inserting credentials for $( $maestroPrivateSources . Count ) Maestro's private feeds. "
ForEach ( $PackageSource in $maestroPrivateSources ) {
Write-Host " `t Inserting credential for Maestro's feed: " $PackageSource . Key
2024-03-21 22:37:28 +00:00
AddCredential -Creds $creds -Source $PackageSource . Key -Username $Username -pwd $pwd
2019-11-08 23:46:49 +00:00
}
}
2020-08-11 13:01:14 +00:00
function EnablePrivatePackageSources($DisabledPackageSources ) {
$maestroPrivateSources = $DisabledPackageSources . SelectNodes ( " add[contains(@key,'darc-int')] " )
ForEach ( $DisabledPackageSource in $maestroPrivateSources ) {
2020-11-20 17:08:04 +00:00
Write-Host " `t Ensuring private source ' $( $DisabledPackageSource . key ) ' is enabled by deleting it from disabledPackageSource "
# Due to https://github.com/NuGet/Home/issues/10291, we must actually remove the disabled entries
$DisabledPackageSources . RemoveChild ( $DisabledPackageSource )
2020-08-11 13:01:14 +00:00
}
}
2019-12-04 13:31:24 +00:00
if ( ! ( Test-Path $ConfigFile -PathType Leaf ) ) {
Write-PipelineTelemetryError -Category 'Build' -Message " Eng/common/SetupNugetSources.ps1 returned a non-zero exit code. Couldn't find the NuGet config file: $ConfigFile "
ExitWithExitCode 1
}
if ( ! $Password ) {
Write-PipelineTelemetryError -Category 'Build' -Message 'Eng/common/SetupNugetSources.ps1 returned a non-zero exit code. Please supply a valid PAT'
2019-11-22 13:41:58 +00:00
ExitWithExitCode 1
2019-12-04 13:31:24 +00:00
}
2019-11-08 23:46:49 +00:00
2019-12-04 13:31:24 +00:00
# Load NuGet.config
$doc = New-Object System . Xml . XmlDocument
$filename = ( Get-Item $ConfigFile ) . FullName
$doc . Load ( $filename )
2019-11-08 23:46:49 +00:00
2019-12-04 13:31:24 +00:00
# Get reference to <PackageSources> or create one if none exist already
$sources = $doc . DocumentElement . SelectSingleNode ( " packageSources " )
if ( $sources -eq $null ) {
$sources = $doc . CreateElement ( " packageSources " )
$doc . DocumentElement . AppendChild ( $sources ) | Out-Null
}
2019-11-08 23:46:49 +00:00
2019-12-04 13:31:24 +00:00
# Looks for a <PackageSourceCredentials> node. Create it if none is found.
$creds = $doc . DocumentElement . SelectSingleNode ( " packageSourceCredentials " )
if ( $creds -eq $null ) {
$creds = $doc . CreateElement ( " packageSourceCredentials " )
$doc . DocumentElement . AppendChild ( $creds ) | Out-Null
}
2019-11-08 23:46:49 +00:00
2020-08-11 13:01:14 +00:00
# Check for disabledPackageSources; we'll enable any darc-int ones we find there
$disabledSources = $doc . DocumentElement . SelectSingleNode ( " disabledPackageSources " )
if ( $disabledSources -ne $null ) {
Write-Host " Checking for any darc-int disabled package sources in the disabledPackageSources node "
EnablePrivatePackageSources -DisabledPackageSources $disabledSources
}
2020-04-24 17:34:25 +00:00
$userName = " dn-bot "
2019-12-04 13:31:24 +00:00
# Insert credential nodes for Maestro's private feeds
2024-03-21 22:37:28 +00:00
InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -pwd $Password
2019-11-08 23:46:49 +00:00
2022-07-30 12:37:25 +00:00
# 3.1 uses a different feed url format so it's handled differently here
2019-12-04 13:31:24 +00:00
$dotnet31Source = $sources . SelectSingleNode ( " add[@key='dotnet3.1'] " )
if ( $dotnet31Source -ne $null ) {
2024-03-21 22:37:28 +00:00
AddPackageSource -Sources $sources -SourceName " dotnet3.1-internal " -SourceEndPoint " https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2 " -Creds $creds -Username $userName -pwd $Password
AddPackageSource -Sources $sources -SourceName " dotnet3.1-internal-transport " -SourceEndPoint " https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2 " -Creds $creds -Username $userName -pwd $Password
2019-11-22 13:41:58 +00:00
}
2019-12-04 13:31:24 +00:00
2022-07-30 12:37:25 +00:00
$dotnetVersions = @ ( '5' , '6' , '7' )
2020-07-16 02:58:19 +00:00
2022-07-30 12:37:25 +00:00
foreach ( $dotnetVersion in $dotnetVersions ) {
$feedPrefix = " dotnet " + $dotnetVersion ;
$dotnetSource = $sources . SelectSingleNode ( " add[@key=' $feedPrefix '] " )
if ( $dotnetSource -ne $null ) {
2024-03-21 22:37:28 +00:00
AddPackageSource -Sources $sources -SourceName " $feedPrefix -internal " -SourceEndPoint " https://pkgs.dev.azure.com/dnceng/internal/_packaging/ $feedPrefix -internal/nuget/v2 " -Creds $creds -Username $userName -pwd $Password
AddPackageSource -Sources $sources -SourceName " $feedPrefix -internal-transport " -SourceEndPoint " https://pkgs.dev.azure.com/dnceng/internal/_packaging/ $feedPrefix -internal-transport/nuget/v2 " -Creds $creds -Username $userName -pwd $Password
2022-07-30 12:37:25 +00:00
}
2021-07-06 13:06:05 +00:00
}
2024-03-21 22:37:28 +00:00
$doc . Save ( $filename )