Sha256: e3a062f9ec092e170d00a56759e06cee39068357b3d413d734336e6cd0c212c2

Contents?: true

Size: 976 Bytes

Versions: 3

Compression:

Stored size: 976 Bytes

Contents

class Premailer
  module Rails
    module CSSLoaders
      module NetworkLoader
        extend self

        def load(url)
          uri = uri_for_url(url)
          Net::HTTP.get(uri) if uri
        end

        def uri_for_url(url)
          uri = URI(url)

          if uri.host.present?
            return uri if uri.scheme.present?
            URI("http://#{uri.to_s}")
          elsif asset_host_present?
            scheme, host = asset_host.split(%r{:?//})
            scheme, host = host, scheme if host.nil?
            scheme = 'http' if scheme.blank?
            path = url
            URI(File.join("#{scheme}://#{host}", path))
          end
        end

        def asset_host_present?
          ::Rails.configuration.action_controller.asset_host.present?
        end

        def asset_host
          config = ::Rails.configuration.action_controller.asset_host
          config.respond_to?(:call) ? config.call : config
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
premailer-rails-1.9.2 lib/premailer/rails/css_loaders/network_loader.rb
premailer-rails-1.9.1 lib/premailer/rails/css_loaders/network_loader.rb
premailer-rails-1.9.0 lib/premailer/rails/css_loaders/network_loader.rb