brew/Library/Homebrew/utils/repology.rb

103 lines
2.8 KiB
Ruby
Raw Normal View History

rubocop: Use `Sorbet/StrictSigil` as it's better than comments - Previously I thought that comments were fine to discourage people from wasting their time trying to bump things that used `undef` that Sorbet didn't support. But RuboCop is better at this since it'll complain if the comments are unnecessary. - Suggested in https://github.com/Homebrew/brew/pull/18018#issuecomment-2283369501. - I've gone for a mixture of `rubocop:disable` for the files that can't be `typed: strict` (use of undef, required before everything else, etc) and `rubocop:todo` for everything else that should be tried to make strictly typed. There's no functional difference between the two as `rubocop:todo` is `rubocop:disable` with a different name. - And I entirely disabled the cop for the docs/ directory since `typed: strict` isn't going to gain us anything for some Markdown linting config files. - This means that now it's easier to track what needs to be done rather than relying on checklists of files in our big Sorbet issue: ```shell $ git grep 'typed: true # rubocop:todo Sorbet/StrictSigil' | wc -l 268 ``` - And this is confirmed working for new files: ```shell $ git status On branch use-rubocop-for-sorbet-strict-sigils Untracked files: (use "git add <file>..." to include in what will be committed) Library/Homebrew/bad.rb Library/Homebrew/good.rb nothing added to commit but untracked files present (use "git add" to track) $ brew style Offenses: bad.rb:1:1: C: Sorbet/StrictSigil: Sorbet sigil should be at least strict got true. ^^^^^^^^^^^^^ 1340 files inspected, 1 offense detected ```
2024-08-12 10:30:59 +01:00
# typed: true # rubocop:todo Sorbet/StrictSigil
2020-06-29 10:16:58 -05:00
# frozen_string_literal: true
2020-06-30 11:23:34 -05:00
require "utils/curl"
2020-08-26 09:11:39 +02:00
# Repology API client.
2020-07-06 03:32:18 +00:00
module Repology
HOMEBREW_CORE = "homebrew"
HOMEBREW_CASK = "homebrew_casks"
MAX_PAGINATION = 15
2020-08-26 09:11:39 +02:00
private_constant :MAX_PAGINATION
def self.query_api(last_package_in_response = "", repository:)
last_package_in_response += "/" if last_package_in_response.present?
url = "https://repology.org/api/v1/projects/#{last_package_in_response}?inrepo=#{repository}&outdated=1"
output, errors, = Utils::Curl.curl_output(url.to_s, "--silent",
use_homebrew_curl: !Utils::Curl.curl_supports_tls13?)
JSON.parse(output)
rescue
if Homebrew::EnvConfig.developer?
$stderr.puts errors
else
odebug errors
end
raise
2020-06-29 09:57:21 -05:00
end
2020-06-29 09:51:58 -05:00
def self.single_package_query(name, repository:)
2023-08-02 09:02:44 -04:00
url = "https://repology.org/api/v1/project/#{name}"
output, errors, = Utils::Curl.curl_output("--location", "--silent", url.to_s,
use_homebrew_curl: !Utils::Curl.curl_supports_tls13?)
data = JSON.parse(output)
{ name => data }
rescue => e
require "utils/backtrace"
error_output = [errors, "#{e.class}: #{e}", Utils::Backtrace.clean(e)].compact
if Homebrew::EnvConfig.developer?
$stderr.puts(*error_output)
else
odebug(*error_output)
end
nil
end
def self.parse_api_response(limit = nil, last_package = "", repository:)
2021-02-17 00:09:02 +05:30
package_term = case repository
when HOMEBREW_CORE
2023-02-24 08:56:41 -08:00
"formulae"
when HOMEBREW_CASK
2023-02-24 08:56:41 -08:00
"casks"
2021-02-17 00:09:02 +05:30
else
2023-02-24 08:56:41 -08:00
"packages"
2021-02-17 00:09:02 +05:30
end
2023-02-24 08:56:41 -08:00
ohai "Querying outdated #{package_term} from Repology"
2020-06-29 09:51:58 -05:00
2020-08-18 22:25:17 +00:00
page_no = 1
outdated_packages = {}
2020-06-29 09:51:58 -05:00
while page_no <= MAX_PAGINATION
2020-07-06 09:08:41 -05:00
odebug "Paginating Repology API page: #{page_no}"
2020-06-29 09:51:58 -05:00
2024-03-07 16:20:20 +00:00
response = query_api(last_package, repository:)
2020-06-29 09:57:21 -05:00
outdated_packages.merge!(response)
last_package = response.keys.max
page_no += 1
break if (limit && outdated_packages.size >= limit) || response.size <= 1
2020-06-29 09:51:58 -05:00
end
2020-08-18 22:25:17 +00:00
2023-02-24 08:56:41 -08:00
package_term = package_term.chop if outdated_packages.size == 1
puts "#{outdated_packages.size} outdated #{package_term} found"
puts
2020-06-29 09:57:21 -05:00
outdated_packages.sort.to_h
2020-06-29 09:51:58 -05:00
end
def self.latest_version(repositories)
# The status is "unique" when the package is present only in Homebrew, so
# Repology has no way of knowing if the package is up-to-date.
2021-01-11 08:29:34 +05:30
is_unique = repositories.find do |repo|
repo["status"] == "unique"
end.present?
2021-01-11 08:29:34 +05:30
return "present only in Homebrew" if is_unique
2021-01-11 08:29:34 +05:30
latest_version = repositories.find do |repo|
repo["status"] == "newest"
end
# Repology cannot identify "newest" versions for packages without a version
# scheme
2021-01-11 08:29:34 +05:30
return "no latest version" if latest_version.blank?
Version.new(latest_version["version"])
end
2020-06-29 09:51:58 -05:00
end