Skip to content

Commit

Permalink
Sync eng/common directory with azure-sdk-tools for PR 1302 (Azure#16009)
Browse files Browse the repository at this point in the history
* Make the user agent configurable.

* Address comments

* Default to current Chrome version

* Revert the yaml file changes

Co-authored-by: Sima Zhu <[email protected]>
  • Loading branch information
azure-sdk and sima-zhu authored Jan 7, 2021
1 parent b6bc150 commit 0d70f57
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions eng/common/scripts/Verify-Links.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,18 @@ param (
# the substitute branch name or SHA commit
[string] $branchReplacementName = "",
# flag to allow checking against azure sdk link guidance. Check link guidance here: https://aka.ms/azsdk/guideline/links
[bool] $checkLinkGuidance = $false
[bool] $checkLinkGuidance = $false,
# UserAgent to be configured for web request. Default to current Chrome version.
[string] $userAgent
)

$ProgressPreference = "SilentlyContinue"; # Disable invoke-webrequest progress dialog
# Regex of the locale keywords.
$locale = "/en-us/"
$emptyLinkMessage = "There is at least one empty link in the page. Please replace with absolute link. Check here for more information: https://aka.ms/azsdk/guideline/links"
if (!$userAgent) {
$userAgent = "Chrome/87.0.4280.88"
}
function NormalizeUrl([string]$url){
if (Test-Path $url) {
$url = "file://" + (Resolve-Path $url).ToString();
Expand Down Expand Up @@ -162,14 +167,14 @@ function CheckLink ([System.Uri]$linkUri)
$headRequestSucceeded = $true
try {
# Attempt HEAD request first
$response = Invoke-WebRequest -Uri $linkUri -Method HEAD
$response = Invoke-WebRequest -Uri $linkUri -Method HEAD -UserAgent $userAgent
}
catch {
$headRequestSucceeded = $false
}
if (!$headRequestSucceeded) {
# Attempt a GET request if the HEAD request failed.
$response = Invoke-WebRequest -Uri $linkUri -Method GET
$response = Invoke-WebRequest -Uri $linkUri -Method GET -UserAgent $userAgent
}
$statusCode = $response.StatusCode
if ($statusCode -ne 200) {
Expand Down Expand Up @@ -239,7 +244,7 @@ function GetLinks([System.Uri]$pageUri)
{
if ($pageUri.Scheme.StartsWith("http")) {
try {
$response = Invoke-WebRequest -Uri $pageUri
$response = Invoke-WebRequest -Uri $pageUri -UserAgent $userAgent
$content = $response.Content
}
catch {
Expand Down

0 comments on commit 0d70f57

Please sign in to comment.