62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require "fileutils"
 | |
| require "cask/cache"
 | |
| require "cask/quarantine"
 | |
| require "cask/verify"
 | |
| 
 | |
| module Cask
 | |
|   class Download
 | |
|     attr_reader :cask
 | |
| 
 | |
|     def initialize(cask, force: false, quarantine: nil)
 | |
|       @cask = cask
 | |
|       @force = force
 | |
|       @quarantine = quarantine
 | |
|     end
 | |
| 
 | |
|     def perform
 | |
|       clear_cache
 | |
|       fetch
 | |
|       quarantine
 | |
|       downloaded_path
 | |
|     end
 | |
| 
 | |
|     def downloader
 | |
|       @downloader ||= begin
 | |
|         strategy = DownloadStrategyDetector.detect(cask.url.to_s, cask.url.using)
 | |
|         strategy.new(cask.url.to_s, cask.token, cask.version, cache: Cache.path, **cask.url.specs)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     private
 | |
| 
 | |
|     attr_reader :force
 | |
|     attr_accessor :downloaded_path
 | |
| 
 | |
|     def clear_cache
 | |
|       downloader.clear_cache if force
 | |
|     end
 | |
| 
 | |
|     def fetch
 | |
|       downloader.fetch
 | |
|       @downloaded_path = downloader.cached_location
 | |
|     rescue => e
 | |
|       error = CaskError.new("Download failed on Cask '#{cask}' with message: #{e}")
 | |
|       error.set_backtrace e.backtrace
 | |
|       raise error
 | |
|     end
 | |
| 
 | |
|     def quarantine
 | |
|       return if @quarantine.nil?
 | |
|       return unless Quarantine.available?
 | |
| 
 | |
|       if @quarantine
 | |
|         Quarantine.cask!(cask: @cask, download_path: @downloaded_path)
 | |
|       else
 | |
|         Quarantine.release!(download_path: @downloaded_path)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
