2021-08-06 02:30:44 -04:00
|
|
|
# typed: false
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
module API
|
|
|
|
# Helper functions for using the formula JSON API.
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
module Formula
|
2021-08-09 16:48:13 -04:00
|
|
|
class << self
|
|
|
|
extend T::Sig
|
2021-08-06 02:30:44 -04:00
|
|
|
|
2021-08-09 16:48:13 -04:00
|
|
|
sig { returns(String) }
|
|
|
|
def formula_api_path
|
|
|
|
"formula"
|
|
|
|
end
|
|
|
|
alias generic_formula_api_path formula_api_path
|
2021-08-06 02:30:44 -04:00
|
|
|
|
2022-06-14 16:05:31 -04:00
|
|
|
sig { returns(String) }
|
|
|
|
def cached_formula_json_file
|
|
|
|
HOMEBREW_CACHE_API/"#{formula_api_path}.json"
|
|
|
|
end
|
|
|
|
|
2021-08-09 16:48:13 -04:00
|
|
|
sig { params(name: String).returns(Hash) }
|
|
|
|
def fetch(name)
|
|
|
|
Homebrew::API.fetch "#{formula_api_path}/#{name}.json"
|
|
|
|
end
|
2021-12-07 00:13:56 +00:00
|
|
|
|
|
|
|
sig { returns(Array) }
|
|
|
|
def all_formulae
|
|
|
|
@all_formulae ||= begin
|
2022-06-14 16:42:10 -04:00
|
|
|
curl_args = %w[--compressed --silent https://formulae.brew.sh/api/formula.json]
|
|
|
|
if cached_formula_json_file.exist?
|
|
|
|
last_modified = cached_formula_json_file.mtime.utc
|
|
|
|
last_modified = last_modified.strftime("%a, %d %b %Y %H:%M:%S GMT")
|
2022-07-19 17:41:27 -07:00
|
|
|
curl_args = ["--time-cond", last_modified, *curl_args] unless cached_formula_json_file.empty?
|
2022-06-14 16:42:10 -04:00
|
|
|
end
|
|
|
|
curl_download(*curl_args, to: HOMEBREW_CACHE_API/"#{formula_api_path}.json", max_time: 5)
|
2022-06-14 16:05:31 -04:00
|
|
|
|
|
|
|
json_formulae = JSON.parse(cached_formula_json_file.read)
|
2021-12-07 00:13:56 +00:00
|
|
|
|
|
|
|
json_formulae.to_h do |json_formula|
|
|
|
|
[json_formula["name"], json_formula.except("name")]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-08-06 02:30:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|