Sha256: a2427bc2873b435b417267634ccbfb6361790dbaa31de72925e14f7f66766ab8

Contents?: true

Size: 966 Bytes

Versions: 1

Compression:

Stored size: 966 Bytes

Contents

# frozen_string_literal: true

module URLCanonicalize
  # Manage the URL into a URI with local exception handling
  class URI
    class << self
      def parse(url)
        uri = ::URI.parse decorate(url)
        uri if valid? uri
      rescue ::URI::InvalidURIError => e
        new_exception = URLCanonicalize::Exception::URI.new("#{e.class}: #{e.message}")
        new_exception.set_backtrace e.backtrace
        raise new_exception
      end

      private

      def valid?(uri)
        raise URLCanonicalize::Exception::URI, "#{uri} must be http or https" unless VALID_CLASSES.include?(uri.class)
        raise URLCanonicalize::Exception::URI, "Missing host name in #{uri}" unless uri.host
        true
      end

      def decorate(url)
        return url if url.include? COLON
        "http://#{url}" # Add protocol if we just receive a host name
      end

      VALID_CLASSES = [::URI::HTTP, ::URI::HTTPS].freeze
      COLON = ':'.freeze
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
url_canonicalize-0.2.0 lib/url_canonicalize/uri.rb