Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
55bc2a30
Commit
55bc2a30
authored
8 years ago
by
David Broder-Rodgers
Browse files
Options
Downloads
Patches
Plain Diff
Merged 404 and security mirror auditing logic
parent
12501b40
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/dev-cmd/audit.rb
+14
-10
14 additions, 10 deletions
Library/Homebrew/dev-cmd/audit.rb
with
14 additions
and
10 deletions
Library/Homebrew/dev-cmd/audit.rb
+
14
−
10
View file @
55bc2a30
...
@@ -174,7 +174,7 @@ class FormulaAuditor
...
@@ -174,7 +174,7 @@ class FormulaAuditor
@specs
=
%w[stable devel head]
.
map
{
|
s
|
formula
.
send
(
s
)
}.
compact
@specs
=
%w[stable devel head]
.
map
{
|
s
|
formula
.
send
(
s
)
}.
compact
end
end
def
self
.
url_status_code
(
url
,
range:
false
)
def
url_status_code
(
url
,
range:
false
)
# The system Curl is too old and unreliable with HTTPS homepages on
# The system Curl is too old and unreliable with HTTPS homepages on
# Yosemite and below.
# Yosemite and below.
return
"200"
unless
DevelopmentTools
.
curl_handles_most_https_homepages?
return
"200"
unless
DevelopmentTools
.
curl_handles_most_https_homepages?
...
@@ -619,8 +619,8 @@ class FormulaAuditor
...
@@ -619,8 +619,8 @@ class FormulaAuditor
return
unless
@online
return
unless
@online
status_code
=
FormulaAuditor
.
url_status_code
(
homepage
,
user_agent: :browser
)
status_code
=
url_status_code
(
homepage
)
return
if
status_code
.
start_with?
"2
0
"
return
if
status_code
.
start_with?
"2"
problem
"The homepage
#{
homepage
}
is not reachable (HTTP status code
#{
status_code
}
)"
problem
"The homepage
#{
homepage
}
is not reachable (HTTP status code
#{
status_code
}
)"
end
end
...
@@ -1492,11 +1492,7 @@ class ResourceAuditor
...
@@ -1492,11 +1492,7 @@ class ResourceAuditor
urls
.
each
do
|
url
|
urls
.
each
do
|
url
|
strategy
=
DownloadStrategyDetector
.
detect
(
url
)
strategy
=
DownloadStrategyDetector
.
detect
(
url
)
if
strategy
<=
CurlDownloadStrategy
&&
!
url
.
start_with?
(
"file"
)
if
strategy
<=
CurlDownloadStrategy
&&
!
url
.
start_with?
(
"file"
)
problem
url
check_http_mirror
url
status_code
=
FormulaAuditor
.
url_status_code
url
unless
status_code
.
start_with?
"2"
problem
"The URL
#{
url
}
is not reachable (HTTP status code
#{
status_code
}
)"
end
elsif
strategy
<=
GitDownloadStrategy
elsif
strategy
<=
GitDownloadStrategy
unless
Utils
.
git_remote_exists
url
unless
Utils
.
git_remote_exists
url
problem
"The URL
#{
url
}
is not a valid git URL"
problem
"The URL
#{
url
}
is not a valid git URL"
...
@@ -1506,12 +1502,20 @@ class ResourceAuditor
...
@@ -1506,12 +1502,20 @@ class ResourceAuditor
problem
"The URL
#{
url
}
is not a valid svn URL"
problem
"The URL
#{
url
}
is not a valid svn URL"
end
end
end
end
check_insecure_mirror
(
url
)
if
url
.
start_with?
"http:"
end
end
end
end
def
check_
insecure
_mirror
(
url
)
def
check_
http
_mirror
(
url
)
details
=
get_content_details
(
url
)
details
=
get_content_details
(
url
)
if
details
[
:status
].
nil?
problem
"The URL
#{
url
}
is not reachable"
elsif
!
details
[
:status
].
start_with?
"2"
problem
"The URL
#{
url
}
is not reachable (HTTP status code
#{
details
[
:status
]
}
)"
end
return
unless
url
.
start_with?
"http:"
secure_url
=
url
.
sub
"http"
,
"https"
secure_url
=
url
.
sub
"http"
,
"https"
secure_details
=
get_content_details
(
secure_url
)
secure_details
=
get_content_details
(
secure_url
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment