2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2020-06-29 10:16:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-30 11:23:34 -05:00
|
|
|
require "utils/curl"
|
2020-07-03 01:51:38 +00:00
|
|
|
|
2020-08-26 09:11:39 +02:00
|
|
|
# Repology API client.
|
|
|
|
#
|
|
|
|
# @api private
|
2020-07-06 03:32:18 +00:00
|
|
|
module Repology
|
2020-07-01 02:50:21 +00:00
|
|
|
module_function
|
2020-06-29 09:57:21 -05:00
|
|
|
|
2020-08-19 09:10:57 -05:00
|
|
|
MAX_PAGINATION = 15
|
2020-08-26 09:11:39 +02:00
|
|
|
private_constant :MAX_PAGINATION
|
2020-08-19 09:10:57 -05:00
|
|
|
|
2020-07-01 02:50:21 +00:00
|
|
|
def query_api(last_package_in_response = "")
|
2020-07-07 13:43:31 +00:00
|
|
|
last_package_in_response += "/" if last_package_in_response.present?
|
2020-07-02 17:06:39 +00:00
|
|
|
url = "https://repology.org/api/v1/projects/#{last_package_in_response}?inrepo=homebrew&outdated=1"
|
2020-06-29 09:51:58 -05:00
|
|
|
|
2020-07-01 09:55:31 -05:00
|
|
|
output, _errors, _status = curl_output(url.to_s)
|
|
|
|
JSON.parse(output)
|
2020-06-29 09:57:21 -05:00
|
|
|
end
|
2020-06-29 09:51:58 -05:00
|
|
|
|
2020-07-28 09:30:19 -05:00
|
|
|
def single_package_query(name)
|
|
|
|
url = "https://repology.org/api/v1/project/#{name}"
|
|
|
|
|
|
|
|
output, _errors, _status = curl_output(url.to_s)
|
2020-07-28 12:56:19 -05:00
|
|
|
data = JSON.parse(output)
|
|
|
|
|
2020-07-31 10:52:37 -05:00
|
|
|
homebrew = data.select do |repo|
|
|
|
|
repo["repo"] == "homebrew"
|
2020-07-28 12:56:19 -05:00
|
|
|
end
|
|
|
|
|
2020-08-03 11:21:50 -05:00
|
|
|
homebrew.empty? ? nil : { name => data }
|
2020-07-28 09:30:19 -05:00
|
|
|
end
|
|
|
|
|
2020-08-18 22:18:03 +00:00
|
|
|
def parse_api_response(limit = nil)
|
2020-06-30 10:11:56 -05:00
|
|
|
ohai "Querying outdated packages from Repology"
|
2020-06-29 09:51:58 -05:00
|
|
|
|
2020-08-18 22:25:17 +00:00
|
|
|
page_no = 1
|
2020-08-19 10:12:38 -05:00
|
|
|
outdated_packages = {}
|
|
|
|
last_package_index = ""
|
2020-06-29 09:51:58 -05:00
|
|
|
|
2020-08-19 10:12:38 -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
|
|
|
|
2020-08-19 17:59:38 +00:00
|
|
|
response = query_api(last_package_index.to_s)
|
2020-06-29 09:57:21 -05:00
|
|
|
response_size = response.size
|
|
|
|
outdated_packages.merge!(response)
|
2020-07-02 13:34:47 -05:00
|
|
|
last_package_index = outdated_packages.size - 1
|
2020-08-19 10:12:38 -05:00
|
|
|
|
2020-08-19 09:10:57 -05:00
|
|
|
page_no += 1
|
2020-08-19 10:12:38 -05:00
|
|
|
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
|
|
|
|
2020-07-29 13:40:25 +00:00
|
|
|
puts "#{outdated_packages.size} outdated #{"package".pluralize(outdated_packages.size)} found"
|
2020-08-16 18:45:50 -05:00
|
|
|
puts
|
2020-06-29 09:57:21 -05:00
|
|
|
|
|
|
|
outdated_packages
|
2020-06-29 09:51:58 -05:00
|
|
|
end
|
2020-07-30 22:58:30 +00:00
|
|
|
|
2021-01-11 08:29:34 +05:30
|
|
|
def latest_version(repositories)
|
|
|
|
# TODO: explain unique
|
|
|
|
is_unique = repositories.find do |repo|
|
|
|
|
repo["status"] == "unique"
|
|
|
|
end.present?
|
2020-07-30 22:58:30 +00:00
|
|
|
|
2021-01-11 08:29:34 +05:30
|
|
|
return "present only in Homebrew" if is_unique
|
2020-08-13 09:56:41 -05:00
|
|
|
|
2021-01-11 08:29:34 +05:30
|
|
|
latest_version = repositories.find do |repo|
|
|
|
|
repo["status"] == "newest"
|
2020-07-30 22:58:30 +00:00
|
|
|
end
|
|
|
|
|
2021-01-11 08:29:34 +05:30
|
|
|
# TODO: explain when latest can be blank
|
|
|
|
return "no latest version" if latest_version.blank?
|
2020-07-31 10:52:37 -05:00
|
|
|
|
2021-01-11 08:29:34 +05:30
|
|
|
latest_version["version"]
|
2020-07-31 10:52:37 -05:00
|
|
|
end
|
2020-06-29 09:51:58 -05:00
|
|
|
end
|