Skip to content
Snippets Groups Projects
Commit 55bc2a30 authored by David Broder-Rodgers's avatar David Broder-Rodgers
Browse files

Merged 404 and security mirror auditing logic

parent 12501b40
No related branches found
No related tags found
No related merge requests found
...@@ -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? "20" 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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment