Sha256: 0114291fffeab12e61240269ae2be3f7e8d1569a311b6a6a7605760d65d7dda4

Contents?: true

Size: 878 Bytes

Versions: 20

Compression:

Stored size: 878 Bytes

Contents

# frozen_string_literal: true
# Represents a site to which HTTP connections are made. It is a value
# object, and is suitable for use in a hash. If two sites are equal,
# then a persistent connection made to the first site, can be re-used
# for the second.
#
# @api private
class Puppet::HTTP::Site
  attr_reader :scheme, :host, :port

  def self.from_uri(uri)
    self.new(uri.scheme, uri.host, uri.port)
  end

  def initialize(scheme, host, port)
    @scheme = scheme
    @host = host
    @port = port.to_i
  end

  def addr
    "#{@scheme}://#{@host}:#{@port}"
  end
  alias to_s addr

  def ==(rhs)
    (@scheme == rhs.scheme) && (@host == rhs.host) && (@port == rhs.port)
  end

  alias eql? ==

  def hash
    [@scheme, @host, @port].hash
  end

  def use_ssl?
    @scheme == 'https'
  end

  def move_to(uri)
    self.class.new(uri.scheme, uri.host, uri.port)
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/http/site.rb
puppet-8.3.0-x86-mingw32 lib/puppet/http/site.rb
puppet-8.3.0-x64-mingw32 lib/puppet/http/site.rb
puppet-8.3.0-universal-darwin lib/puppet/http/site.rb
puppet-8.3.1 lib/puppet/http/site.rb
puppet-8.3.1-x86-mingw32 lib/puppet/http/site.rb
puppet-8.3.1-x64-mingw32 lib/puppet/http/site.rb
puppet-8.3.1-universal-darwin lib/puppet/http/site.rb
puppet-8.2.0 lib/puppet/http/site.rb
puppet-8.2.0-x86-mingw32 lib/puppet/http/site.rb
puppet-8.2.0-x64-mingw32 lib/puppet/http/site.rb
puppet-8.2.0-universal-darwin lib/puppet/http/site.rb
puppet-8.1.0 lib/puppet/http/site.rb
puppet-8.1.0-x86-mingw32 lib/puppet/http/site.rb
puppet-8.1.0-x64-mingw32 lib/puppet/http/site.rb
puppet-8.1.0-universal-darwin lib/puppet/http/site.rb
puppet-8.0.1 lib/puppet/http/site.rb
puppet-8.0.1-x86-mingw32 lib/puppet/http/site.rb
puppet-8.0.1-x64-mingw32 lib/puppet/http/site.rb
puppet-8.0.1-universal-darwin lib/puppet/http/site.rb