52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: false
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module Cask
 | |
|   class Cmd
 | |
|     # Implementation of the `brew cask fetch` command.
 | |
|     #
 | |
|     # @api private
 | |
|     class Fetch < AbstractCommand
 | |
|       extend T::Sig
 | |
| 
 | |
|       sig { override.returns(T.nilable(T.any(Integer, Symbol))) }
 | |
|       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
 | |
| 
 | |
|       sig { returns(String) }
 | |
|       def self.description
 | |
|         "Downloads remote application files to local cache."
 | |
|       end
 | |
| 
 | |
|       sig { void }
 | |
|       def run
 | |
|         require "cask/download"
 | |
|         require "cask/installer"
 | |
| 
 | |
|         options = {
 | |
|           quarantine: args.quarantine?,
 | |
|         }.compact
 | |
| 
 | |
|         options[:quarantine] = true if options[:quarantine].nil?
 | |
| 
 | |
|         casks.each do |cask|
 | |
|           puts Installer.caveats(cask)
 | |
|           ohai "Downloading external files for Cask #{cask}"
 | |
|           download = Download.new(cask, **options)
 | |
|           download.clear_cache if args.force?
 | |
|           downloaded_path = download.fetch
 | |
|           ohai "Success! Downloaded to -> #{downloaded_path}"
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
