
Adjust the rules based on the current codebase. Remove various enable, disables and default values that are unnecessary. Add more comments explaining why. Make minor changes needed to enable a few more rules.
57 lines
1.2 KiB
Ruby
57 lines
1.2 KiB
Ruby
require "fileutils"
|
|
require "hbc/cache"
|
|
require "hbc/quarantine"
|
|
require "hbc/verify"
|
|
|
|
module Hbc
|
|
class Download
|
|
attr_reader :cask
|
|
|
|
def initialize(cask, force: false, quarantine: true)
|
|
@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 || cask.version.latest?
|
|
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 unless @quarantine
|
|
return unless Quarantine.available?
|
|
return if Quarantine.detect(@downloaded_path)
|
|
|
|
Quarantine.cask(cask: @cask, download_path: @downloaded_path)
|
|
end
|
|
end
|
|
end
|