Class: Homebrew::ResourceAuditor Private
- Includes:
- Utils::Curl
- Defined in:
- resource_auditor.rb
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Auditor for checking common violations in Resources.
Instance Attribute Summary collapse
- #checksum ⇒ Checksum? readonly private
- #mirrors ⇒ Array<String> readonly private
- #name ⇒ String? readonly private
- #owner ⇒ Resource::Owner? readonly private
- #problems ⇒ Array<String> readonly private
- #spec_name ⇒ Symbol readonly private
- #specs ⇒ Hash{Symbol => T.untyped} readonly private
- #url ⇒ String? readonly private
- #using ⇒ T::Class[AbstractDownloadStrategy], ... readonly private
- #version ⇒ Version? readonly private
Class Method Summary collapse
- .curl_deps ⇒ Array<String> private
Instance Method Summary collapse
- #audit ⇒ ResourceAuditor private
- #audit_checksum ⇒ void private
- #audit_download_strategy ⇒ void private
- #audit_head_branch ⇒ void private
- #audit_resource_name_matches_pypi_package_name_in_url ⇒ void private
- #audit_urls ⇒ void private
- #audit_version ⇒ void private
- #initialize(resource, spec_name, online: nil, strict: nil, only: nil, except: nil, core_tap: nil, use_homebrew_curl: false) ⇒ void constructor private
- #problem(text) ⇒ void private
Methods included from Utils::Curl
clear_path_cache, curl, curl_args, curl_check_http_content, curl_download, curl_executable, curl_headers, curl_http_content_headers_and_checksum, curl_output, curl_path, curl_response_follow_redirections, curl_response_last_location, curl_supports_fail_with_body?, curl_supports_tls13?, curl_version, curl_with_workarounds, http_status_ok?, parse_curl_output, parse_curl_response, url_protected_by_cloudflare?, url_protected_by_incapsula?
Methods included from SystemCommand::Mixin
#system_command, #system_command!
Methods included from Utils::Output::Mixin
#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Constructor Details
#initialize(resource, spec_name, online: nil, strict: nil, only: nil, except: nil, core_tap: nil, use_homebrew_curl: false) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'resource_auditor.rb', line 53 def initialize(resource, spec_name, online: nil, strict: nil, only: nil, except: nil, core_tap: nil, use_homebrew_curl: false) @name = T.let(resource.name, T.nilable(String)) @version = T.let(resource.version, T.nilable(Version)) @checksum = T.let(resource.checksum, T.nilable(Checksum)) @url = T.let(resource.url&.to_s, T.nilable(String)) @mirrors = T.let(resource.mirrors, T::Array[String]) @using = T.let(resource.using, T.nilable(T.any(T::Class[AbstractDownloadStrategy], Symbol))) @specs = T.let(resource.specs, T::Hash[Symbol, T.untyped]) @owner = T.let(resource.owner, T.nilable(T.any(Cask::Cask, Resource::Owner))) @spec_name = T.let(spec_name, Symbol) @online = online @strict = strict @only = only @except = except @core_tap = core_tap @use_homebrew_curl = use_homebrew_curl @problems = T.let([], T::Array[String]) end |
Instance Attribute Details
#checksum ⇒ Checksum? (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
18 19 20 |
# File 'resource_auditor.rb', line 18 def checksum @checksum end |
#mirrors ⇒ Array<String> (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
24 25 26 |
# File 'resource_auditor.rb', line 24 def mirrors @mirrors end |
#name ⇒ String? (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
12 13 14 |
# File 'resource_auditor.rb', line 12 def name @name end |
#owner ⇒ Resource::Owner? (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
33 34 35 |
# File 'resource_auditor.rb', line 33 def owner @owner end |
#problems ⇒ Array<String> (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
39 40 41 |
# File 'resource_auditor.rb', line 39 def problems @problems end |
#spec_name ⇒ Symbol (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
36 37 38 |
# File 'resource_auditor.rb', line 36 def spec_name @spec_name end |
#specs ⇒ Hash{Symbol => T.untyped} (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
30 31 32 |
# File 'resource_auditor.rb', line 30 def specs @specs end |
#url ⇒ String? (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
21 22 23 |
# File 'resource_auditor.rb', line 21 def url @url end |
#using ⇒ T::Class[AbstractDownloadStrategy], ... (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
27 28 29 |
# File 'resource_auditor.rb', line 27 def using @using end |
#version ⇒ Version? (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
15 16 17 |
# File 'resource_auditor.rb', line 15 def version @version end |
Class Method Details
.curl_deps ⇒ Array<String>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
150 151 152 153 154 155 156 |
# File 'resource_auditor.rb', line 150 def self.curl_deps @curl_deps ||= T.let(begin ["curl"] + ::Formula["curl"].recursive_dependencies.map(&:name).uniq rescue FormulaUnavailableError [] end, T.nilable(T::Array[String])) end |
Instance Method Details
#audit ⇒ ResourceAuditor
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'resource_auditor.rb', line 74 def audit only_audits = @only except_audits = @except methods.map(&:to_s).grep(/^audit_/).each do |audit_method_name| name = audit_method_name.delete_prefix("audit_") next if only_audits&.exclude?(name) next if except_audits&.include?(name) send(audit_method_name) end self end |
#audit_checksum ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
139 140 141 142 143 144 145 146 147 |
# File 'resource_auditor.rb', line 139 def audit_checksum return if spec_name == :head # This condition is non-invertible. # rubocop:disable Style/InvertibleUnlessCondition return unless DownloadStrategyDetector.detect(url.to_s, using) <= CurlDownloadStrategy # rubocop:enable Style/InvertibleUnlessCondition problem "Checksum is missing" if checksum.blank? end |
#audit_download_strategy ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'resource_auditor.rb', line 108 def audit_download_strategy url_strategy = DownloadStrategyDetector.detect(url!) if (using == :git || url_strategy == GitDownloadStrategy) && specs[:tag] && !specs[:revision] problem "Git should specify `revision:` when a `tag:` is specified." end return unless using if using == :cvs mod = specs[:module] problem "Redundant `module:` value in URL" if mod == name if url!.match?(%r{:[^/]+$}) mod = url!.split(":").last if mod == name problem "Redundant CVS module appended to URL" else problem "Specify CVS module as `module: \"#{mod}\"` instead of appending it to the URL" end end end return if url_strategy != DownloadStrategyDetector.detect("", using) problem "Redundant `using:` value in URL" end |
#audit_head_branch ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'resource_auditor.rb', line 235 def audit_head_branch return unless @online return if spec_name != :head return if specs[:tag].present? return if specs[:revision].present? # Skip `resource` URLs as they use SHAs instead of branch specifiers. return if name != owner!.name return unless url.to_s.end_with?(".git") return unless Utils::Git.remote_exists?(url.to_s) detected_branch = Utils.popen_read("git", "ls-remote", "--symref", url.to_s, "HEAD") .match(%r{ref: refs/heads/(.*?)\s+HEAD})&.to_a&.second if specs[:branch].blank? problem "Git `head` URL must specify a branch name" return end return unless @core_tap return if specs[:branch] == detected_branch problem "To use a non-default HEAD branch, add the formula to `head_non_default_branch_allowlist.json`." end |
#audit_resource_name_matches_pypi_package_name_in_url ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'resource_auditor.rb', line 159 def audit_resource_name_matches_pypi_package_name_in_url return unless url!.match?(%r{^https?://files\.pythonhosted\.org/packages/}) # Skip the top-level package name as we only care about `resource "foo"` blocks. return if name == owner!.name if url!.end_with? ".whl" path = URI(url!).path return unless path.present? pypi_package_name, = File.basename(path).split("-", 2) else url =~ %r{/(?<package_name>[^/]+)-} pypi_package_name = Regexp.last_match(:package_name).to_s end T.must(pypi_package_name).gsub!(/[_.]/, "-") return if name.to_s.casecmp(pypi_package_name.to_s)&.zero? problem "`resource` name should be '#{pypi_package_name}' to match the PyPI package name" end |
#audit_urls ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'resource_auditor.rb', line 182 def audit_urls urls = [url.to_s] + mirrors curl_dep = self.class.curl_deps.include?(owner!.name) # Ideally `ca-certificates` would not be excluded here, but sourcing a HTTP mirror was tricky. # Instead, we have logic elsewhere to pass `--insecure` to curl when downloading the certs. # TODO: try remove the OS/env conditional if Homebrew::SimulateSystem.simulating_or_running_on_macos? && spec_name == :stable && owner!.name != "ca-certificates" && curl_dep && !urls.find { |u| u.start_with?("http://") } problem "Should always include at least one HTTP mirror" end return unless @online urls.each do |url| next if !@strict && mirrors.include?(url) strategy = DownloadStrategyDetector.detect(url, using) if strategy <= CurlDownloadStrategy && !url.start_with?("file") raise HomebrewCurlDownloadStrategyError, url if strategy <= HomebrewCurlDownloadStrategy && !::Formula["curl"].any_version_installed? # Skip ftp.gnu.org audit, upstream has asked us to reduce load. # See issue: https://github.com/Homebrew/brew/issues/20456 next if url.match?(%r{^https?://ftp\.gnu\.org/.+}) # Skip https audit for curl dependencies if !curl_dep && (http_content_problem = curl_check_http_content( url, "source URL", specs:, use_homebrew_curl: @use_homebrew_curl, )) problem http_content_problem end elsif strategy <= GitDownloadStrategy attempts = 0 remote_exists = T.let(false, T::Boolean) while !remote_exists && attempts < Homebrew::EnvConfig.curl_retries.to_i remote_exists = Utils::Git.remote_exists?(url) attempts += 1 end problem "The URL #{url} is not a valid Git URL" unless remote_exists elsif strategy <= SubversionDownloadStrategy next unless Utils::Svn.available? problem "The URL #{url} is not a valid SVN URL" unless Utils::Svn.remote_exists? url end end end |
#audit_version ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'resource_auditor.rb', line 90 def audit_version if (version_text = version).nil? problem "Missing version" elsif (formula_owner = owner).is_a?(::Formula) && !version_text.to_s.match?(GitHubPackages::VALID_OCI_TAG_REGEX) && (formula_owner.core_formula? || (formula_owner.bottle_defined? && GitHubPackages::URL_REGEX.match?(formula_owner.bottle_specification.root_url))) problem "`version #{version}` does not match #{GitHubPackages::VALID_OCI_TAG_REGEX.source}" elsif !version_text.detected_from_url? version_url = Version.detect(url!, **specs) if version_url.to_s == version_text.to_s && version.instance_of?(Version) problem "`version #{version_text}` is redundant with version scanned from URL" end end end |
#problem(text) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
260 261 262 |
# File 'resource_auditor.rb', line 260 def problem(text) @problems << text end |