# frozen_string_literal: true module Aranha module Fixtures class Download attr_reader :pending def initialize(options) @prefix = options.fetch(:prefix) @prefix = '' if @prefix.blank? @download = options.fetch(:download) @pending = options.fetch(:pending) end def run url_files.each do |f| Rails.logger.info(relative_path(f)) download(url(f), target(f)) if @download end end private def url_files Dir["#{fixtures_root}/**/*.url"].select { |path| select_path?(path) } end def select_path?(path) return false unless match_prefix_pattern(path) !pending || !::File.exist?(target(path)) end def match_prefix_pattern(path) relative_path(path).start_with?(@prefix) end def fixtures_root Rails.root.to_s end def download(url, target) Rails.logger.info "Baixando \"#{url}\"..." File.open(target, 'wb') { |file| file.write(::Aranha::Parsers::Base.new(url).content) } end def url(file) File.read(file).strip end def target(file) File.expand_path(File.basename(file, '.url') + '.source.html', File.dirname(file)) end def relative_path(path) path.sub(%r{^#{Regexp.quote(fixtures_root)}/}, '') end end end end