191 lines
5.5 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
require "formula"
require "fetch"
2019-04-17 18:25:08 +09:00
require "cli/parser"
2020-11-19 18:12:16 +01:00
require "cask/download"
2011-03-12 09:40:10 -08:00
module Homebrew
2020-10-20 12:03:48 +02:00
extend T::Sig
extend Fetch
2016-09-26 01:44:51 +02:00
module_function
2020-10-20 12:03:48 +02:00
sig { returns(CLI::Parser) }
2018-10-27 23:44:32 +05:30
def fetch_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`fetch` [<options>] <formula>|<cask> [<formula>|<cask> ...]
2018-10-27 23:44:32 +05:30
2020-11-19 18:12:16 +01:00
Download a bottle (if available) or source packages for <formula>e
and binaries for <cask>s. For files, also print SHA-256 checksums.
2018-10-27 23:44:32 +05:30
EOS
switch "--HEAD",
2019-04-30 08:44:35 +01:00
description: "Fetch HEAD version instead of stable version."
switch "-f", "--force",
description: "Remove a previously cached version and re-fetch."
2020-07-30 18:40:10 +02:00
switch "-v", "--verbose",
2019-04-30 08:44:35 +01:00
description: "Do a verbose VCS checkout, if the URL represents a VCS. This is useful for "\
"seeing if an existing VCS cache has been updated."
2018-10-27 23:44:32 +05:30
switch "--retry",
description: "Retry if downloading fails or re-download if the checksum of a previously cached "\
2019-08-06 13:23:19 -04:00
"version no longer matches."
2018-10-27 23:44:32 +05:30
switch "--deps",
description: "Also download dependencies for any listed <formula>."
2018-10-27 23:44:32 +05:30
switch "-s", "--build-from-source",
description: "Download source packages rather than a bottle."
switch "--build-bottle",
description: "Download source packages (for eventual bottling) rather than a bottle."
2018-10-27 23:44:32 +05:30
switch "--force-bottle",
2019-04-30 08:44:35 +01:00
description: "Download a bottle if it exists for the current or newest version of macOS, "\
"even if it would not be used during installation."
2020-11-19 18:12:16 +01:00
switch "--[no-]quarantine",
description: "Disable/enable quarantining of downloads (default: enabled).",
env: :cask_opts_quarantine
switch "--formula", "--formulae",
description: "Treat all named arguments as formulae."
switch "--cask", "--casks",
description: "Treat all named arguments as casks."
conflicts "--formula", "--cask"
2020-07-30 18:40:10 +02:00
conflicts "--build-from-source", "--build-bottle", "--force-bottle"
2020-11-19 18:12:16 +01:00
conflicts "--cask", "--HEAD"
conflicts "--cask", "--deps"
conflicts "--cask", "-s"
conflicts "--cask", "--build-bottle"
conflicts "--cask", "--force-bottle"
2021-01-10 14:26:40 -05:00
named_args [:formula, :cask], min: 1
2018-10-27 23:44:32 +05:30
end
end
2011-03-12 09:40:10 -08:00
def fetch
args = fetch_args.parse
2018-10-27 23:44:32 +05:30
2020-11-19 18:12:16 +01:00
bucket = if args.deps?
args.named.to_formulae_and_casks.flat_map do |formula_or_cask|
case formula_or_cask
when Formula
f = formula_or_cask
[f, *f.recursive_dependencies.map(&:to_formula)]
else
formula_or_cask
end
end
else
2020-12-17 21:14:18 +09:00
args.named.to_formulae_and_casks
2020-11-19 18:12:16 +01:00
end.uniq
puts "Fetching: #{bucket * ", "}" if bucket.size > 1
2020-11-19 18:12:16 +01:00
bucket.each do |formula_or_cask|
case formula_or_cask
when Formula
f = formula_or_cask
f.print_tap_action verb: "Fetching"
fetched_bottle = false
if fetch_bottle?(f, args: args)
begin
fetch_formula(f.bottle, args: args)
rescue Interrupt
raise
rescue => e
raise if Homebrew::EnvConfig.developer?
fetched_bottle = false
onoe e.message
opoo "Bottle fetch failed: fetching the source."
else
fetched_bottle = true
end
end
2020-11-19 18:12:16 +01:00
next if fetched_bottle
2018-09-17 02:45:00 +02:00
2020-11-19 18:12:16 +01:00
fetch_formula(f, args: args)
2018-01-21 23:41:54 -08:00
2020-11-19 18:12:16 +01:00
f.resources.each do |r|
fetch_resource(r, args: args)
r.patches.each { |p| fetch_patch(p, args: args) if p.external? }
end
f.patchlist.each { |p| fetch_patch(p, args: args) if p.external? }
else
cask = formula_or_cask
2020-12-02 12:25:44 +01:00
quarantine = args.quarantine?
quarantine = true if quarantine.nil?
2020-11-19 18:12:16 +01:00
2020-12-02 12:25:44 +01:00
download = Cask::Download.new(cask, quarantine: quarantine)
2020-11-19 18:12:16 +01:00
fetch_cask(download, args: args)
end
end
end
2020-07-31 19:14:25 +02:00
def fetch_resource(r, args:)
puts "Resource: #{r.name}"
2020-07-31 19:14:25 +02:00
fetch_fetchable r, args: args
rescue ChecksumMismatchError => e
2020-07-31 19:14:25 +02:00
retry if retry_fetch?(r, args: args)
opoo "Resource #{r.name} reports different sha256: #{e.expected}"
end
2020-07-31 19:14:25 +02:00
def fetch_formula(f, args:)
fetch_fetchable f, args: args
rescue ChecksumMismatchError => e
2020-07-31 19:14:25 +02:00
retry if retry_fetch?(f, args: args)
opoo "Formula reports different sha256: #{e.expected}"
end
2020-11-19 18:12:16 +01:00
def fetch_cask(cask_download, args:)
fetch_fetchable cask_download, args: args
rescue ChecksumMismatchError => e
retry if retry_fetch?(cask_download, args: args)
opoo "Cask reports different sha256: #{e.expected}"
2020-11-19 18:12:16 +01:00
end
2020-07-31 19:14:25 +02:00
def fetch_patch(p, args:)
fetch_fetchable p, args: args
2014-03-13 19:51:23 -05:00
rescue ChecksumMismatchError => e
Homebrew.failed = true
opoo "Patch reports different sha256: #{e.expected}"
2014-03-13 19:51:23 -05:00
end
2020-07-31 19:14:25 +02:00
def retry_fetch?(f, args:)
2014-08-22 22:55:10 -05:00
@fetch_failed ||= Set.new
2018-10-27 23:44:32 +05:30
if args.retry? && @fetch_failed.add?(f)
2014-08-22 22:55:10 -05:00
ohai "Retrying download"
f.clear_cache
true
else
Homebrew.failed = true
2014-08-22 22:55:10 -05:00
false
end
end
2020-07-31 19:14:25 +02:00
def fetch_fetchable(f, args:)
2018-10-27 23:44:32 +05:30
f.clear_cache if args.force?
already_fetched = f.cached_download.exist?
begin
download = f.fetch(verify_download_integrity: false)
2014-08-22 22:55:10 -05:00
rescue DownloadError
2020-07-31 19:14:25 +02:00
retry if retry_fetch?(f, args: args)
2014-08-22 22:55:10 -05:00
raise
end
2011-03-12 09:40:10 -08:00
return unless download.file?
2011-03-12 09:40:10 -08:00
puts "Downloaded to: #{download}" unless already_fetched
puts "SHA256: #{download.sha256}"
2013-05-16 14:06:26 -05:00
f.verify_download_integrity(download)
2011-03-12 09:40:10 -08:00
end
end