Sha256: 01341569b5f0a0aee487291bb3b8885f68f3f22ddd7d720baba09de381425444

Contents?: true

Size: 1.27 KB

Versions: 35

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

require 'addressable'
require 'curb'
require 'aranha/parsers/source_address/fetch_content_error'
require 'faraday_middleware'

module Aranha
  module Parsers
    class SourceAddress
      class HttpGet
        class << self
          def location_uri(source_uri, location)
            ::Addressable::URI.join(source_uri, location).to_s
          end

          def valid_source?(source)
            source.to_s =~ %r{\Ahttps?://}
          end
        end

        attr_reader :source

        def initialize(source)
          @source = source.to_s
        end

        def ==(other)
          self.class == other.class && source == other.source
        end

        def url
          source
        end

        def final_url
          content unless @final_url
          @final_url
        end

        def content
          conn = ::Faraday.new do |f|
            f.request :retry # retry transient failures
            f.response :follow_redirects # follow redirects
          end
          c = conn.get(url)
          return c.body if c.status == 200

          raise ::Aranha::Parsers::SourceAddress::FetchContentError,
                "Get #{url} returned #{c.status.to_i}"
        end

        def serialize
          url
        end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 3 rubygems

Version Path
eac_tools-0.41.0 sub/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
eac_tools-0.40.0 sub/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
eac_tools-0.39.0 sub/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.14.4 lib/aranha/parsers/source_address/http_get.rb
eac_tools-0.38.0 sub/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.14.3 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.14.2 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.14.1 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.14.0 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.13.0 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.12.1 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.12.0 lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.11.0 lib/aranha/parsers/source_address/http_get.rb
ehbrs-tools-0.28.3 vendor/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
aranha-parsers-0.10.0 lib/aranha/parsers/source_address/http_get.rb