2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-03 19:39:07 +01:00
|
|
|
require "cask/download"
|
2018-08-06 20:22:19 +02:00
|
|
|
|
2018-09-06 08:29:14 +02:00
|
|
|
module Cask
|
2018-09-04 08:45:48 +01:00
|
|
|
class Cmd
|
2017-05-20 19:08:03 +02:00
|
|
|
class Fetch < AbstractCommand
|
2020-08-01 02:30:46 +02:00
|
|
|
def self.min_named
|
|
|
|
:cask
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.parser
|
|
|
|
super do
|
|
|
|
switch "--force",
|
|
|
|
description: "Force redownloading even if files already exist in local cache."
|
|
|
|
end
|
|
|
|
end
|
2017-05-21 00:15:56 +02:00
|
|
|
|
2020-08-01 02:30:46 +02:00
|
|
|
def self.description
|
|
|
|
"Downloads remote application files to local cache."
|
2017-05-21 00:15:56 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-05-21 00:15:56 +02:00
|
|
|
def run
|
2020-08-01 02:30:46 +02:00
|
|
|
options = {
|
|
|
|
force: args.force?,
|
|
|
|
quarantine: args.quarantine?,
|
|
|
|
}.compact
|
|
|
|
|
|
|
|
options[:quarantine] = true if options[:quarantine].nil?
|
|
|
|
|
2017-06-13 17:14:01 +02:00
|
|
|
casks.each do |cask|
|
2019-03-11 21:20:02 -04:00
|
|
|
puts Installer.caveats(cask)
|
2017-06-13 17:14:01 +02:00
|
|
|
ohai "Downloading external files for Cask #{cask}"
|
2020-08-01 02:30:46 +02:00
|
|
|
downloaded_path = Download.new(cask, **options).perform
|
2016-09-24 13:52:43 +02:00
|
|
|
Verify.all(cask, downloaded_path)
|
|
|
|
ohai "Success! Downloaded to -> #{downloaded_path}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|