Class: Gem::Net::HTTP::Persistent

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb

Overview

Persistent connections for Gem::Net::HTTP

Gem::Net::HTTP::Persistent maintains persistent connections across all the servers you wish to talk to. For each host:port you communicate with a single persistent connection is created.

Connections will be shared across threads through a connection pool to increase reuse of connections.

You can shut down any remaining HTTP connections when done by calling #shutdown.

Example:

require 'bundler/vendor/net-http-persistent/lib/net/http/persistent'

uri = Gem::URI 'http://example.com/awesome/web/service'

http = Gem::Net::HTTP::Persistent.new

# perform a GET
response = http.request uri

# or

get = Gem::Net::HTTP::Get.new uri.request_uri
response = http.request get

# create a POST
post_uri = uri + 'create'
post = Gem::Net::HTTP::Post.new post_uri.path
post.set_form_data 'some' => 'cool data'

# perform the POST, the Gem::URI is always required
response http.request post_uri, post

⚠ Note that for GET, HEAD and other requests that do not have a body, it uses Gem::URI#request_uri as default to send query params

TLS/SSL

TLS connections are automatically created depending upon the scheme of the Gem::URI. TLS connections are automatically verified against the default certificate store for your computer. You can override this by changing verify_mode or by specifying an alternate cert_store.

Here are the TLS settings, see the individual methods for documentation:

#certificate

This client’s certificate

#ca_file

The certificate-authorities

#ca_path

Directory with certificate-authorities

#cert_store

An SSL certificate store

#ciphers

List of SSl ciphers allowed

#extra_chain_cert

Extra certificates to be added to the certificate chain

#private_key

The client’s SSL private key

#reuse_ssl_sessions

Reuse a previously opened SSL session for a new connection

#ssl_timeout

Session lifetime

#ssl_version

Which specific SSL version to use

#verify_callback

For server certificate verification

#verify_depth

Depth of certificate verification

#verify_mode

How connections should be verified

#verify_hostname

Use hostname verification for server certificate during the handshake

Proxies

A proxy can be set through #proxy= or at initialization time by providing a second argument to ::new. The proxy may be the Gem::URI of the proxy server or :ENV which will consult environment variables.

See #proxy= and #proxy_from_env for details.

Headers

Headers may be specified for use in every request. #headers are appended to any headers on the request. #override_headers replace existing headers on the request.

The difference between the two can be seen in setting the User-Agent. Using http.headers['User-Agent'] = 'MyUserAgent' will send “Ruby, MyUserAgent” while http.override_headers['User-Agent'] = 'MyUserAgent' will send “MyUserAgent”.

Tuning

Segregation

Each Gem::Net::HTTP::Persistent instance has its own pool of connections. There is no sharing with other instances (as was true in earlier versions).

Idle Timeout

If a connection hasn’t been used for this number of seconds it will automatically be reset upon the next use to avoid attempting to send to a closed connection. The default value is 5 seconds. nil means no timeout. Set through #idle_timeout.

Reducing this value may help avoid the “too many connection resets” error when sending non-idempotent requests while increasing this value will cause fewer round-trips.

Read Timeout

The amount of time allowed between reading two chunks from the socket. Set through #read_timeout

Max Requests

The number of requests that should be made before opening a new connection. Typically many keep-alive capable servers tune this to 100 or less, so the 101st request will fail with ECONNRESET. If unset (default), this value has no effect, if set, connections will be reset on the request after max_requests.

Open Timeout

The amount of time to wait for a connection to be opened. Set through #open_timeout.

Socket Options

Socket options may be set on newly-created connections. See #socket_options for details.

Connection Termination

If you are done using the Gem::Net::HTTP::Persistent instance you may shut down all the connections in the current thread with #shutdown. This is not recommended for normal use, it should only be used when it will be several minutes before you make another HTTP request.

If you are using multiple threads, call #shutdown in each thread when the thread is done making requests. If you don’t call shutdown, that’s OK. Ruby will automatically garbage collect and shutdown your HTTP connections when the thread terminates.

Defined Under Namespace

Classes: Error

Constant Summary collapse

EPOCH =

The beginning of Time

Time.at 0
HAVE_OPENSSL =

Is OpenSSL available? This test works with autoload

defined? OpenSSL::SSL # :nodoc:
DEFAULT_POOL_SIZE =
256
VERSION =

The version of Gem::Net::HTTP::Persistent you are using

'4.0.6'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name: nil, proxy: nil, pool_size: DEFAULT_POOL_SIZE) ⇒ Persistent

Creates a new Gem::Net::HTTP::Persistent.

Set a name for fun. Your library name should be good enough, but this otherwise has no purpose.

proxy may be set to a Gem::URI::HTTP or :ENV to pick up proxy options from the environment. See proxy_from_env for details.

In order to use a Gem::URI for the proxy you may need to do some extra work beyond Gem::URI parsing if the proxy requires a password:

proxy = Gem::URI 'http://proxy.example'
proxy.user     = 'AzureDiamond'
proxy.password = 'hunter2'

Set pool_size to limit the maximum number of connections allowed. Defaults to 1/4 the number of allowed file handles or 256 if your OS does not support a limit on allowed file handles. You can have no more than this many threads with active HTTP transactions.



496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 496

def initialize name: nil, proxy: nil, pool_size: DEFAULT_POOL_SIZE
  @name = name

  @debug_output     = nil
  @proxy_uri        = nil
  @no_proxy         = []
  @headers          = {}
  @override_headers = {}
  @http_versions    = {}
  @keep_alive       = 30
  @open_timeout     = nil
  @read_timeout     = nil
  @write_timeout    = nil
  @idle_timeout     = 5
  @max_requests     = nil
  @max_retries      = 1
  @socket_options   = []
  @ssl_generation   = 0 # incremented when SSL session variables change

  @socket_options << [Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1] if
    Socket.const_defined? :TCP_NODELAY

  @pool = Gem::Net::HTTP::Persistent::Pool.new size: pool_size do |http_args|
    Gem::Net::HTTP::Persistent::Connection.new Gem::Net::HTTP, http_args, @ssl_generation
  end

  @certificate        = nil
  @ca_file            = nil
  @ca_path            = nil
  @ciphers            = nil
  @private_key        = nil
  @ssl_timeout        = nil
  @ssl_version        = nil
  @min_version        = nil
  @max_version        = nil
  @verify_callback    = nil
  @verify_depth       = nil
  @verify_mode        = nil
  @verify_hostname    = nil
  @cert_store         = nil

  @generation         = 0 # incremented when proxy Gem::URI changes

  if HAVE_OPENSSL then
    @verify_mode        = OpenSSL::SSL::VERIFY_PEER
    @reuse_ssl_sessions = OpenSSL::SSL.const_defined? :Session
  end

  self.proxy = proxy if proxy
end

Instance Attribute Details

#ca_fileObject

An SSL certificate authority. Setting this will set verify_mode to VERIFY_PEER.



252
253
254
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 252

def ca_file
  @ca_file
end

#ca_pathObject

A directory of SSL certificates to be used as certificate authorities. Setting this will set verify_mode to VERIFY_PEER.



258
259
260
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 258

def ca_path
  @ca_path
end

#cert_storeObject

An SSL certificate store. Setting this will override the default certificate store. See verify_mode for more information.



264
265
266
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 264

def cert_store
  @cert_store
end

#certificateObject Also known as: cert

This client’s OpenSSL::X509::Certificate



241
242
243
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 241

def certificate
  @certificate
end

#ciphersObject

The ciphers allowed for SSL connections



269
270
271
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 269

def ciphers
  @ciphers
end

#debug_outputObject

Sends debug_output to this IO via Gem::Net::HTTP#set_debug_output.

Never use this method in production code, it causes a serious security hole.



282
283
284
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 282

def debug_output
  @debug_output
end

#extra_chain_certObject

Extra certificates to be added to the certificate chain



274
275
276
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 274

def extra_chain_cert
  @extra_chain_cert
end

#generationObject (readonly)

Current connection generation



287
288
289
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 287

def generation
  @generation
end

#headersObject (readonly)

Headers that are added to every request using Gem::Net::HTTP#add_field



292
293
294
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 292

def headers
  @headers
end

#http_versionsObject (readonly)

Maps host:port to an HTTP version. This allows us to enable version specific features.



298
299
300
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 298

def http_versions
  @http_versions
end

#idle_timeoutObject

Maximum time an unused connection can remain idle before being automatically closed.



304
305
306
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 304

def idle_timeout
  @idle_timeout
end

#keep_aliveObject

The value sent in the Keep-Alive header. Defaults to 30. Not needed for HTTP/1.1 servers.

This may not work correctly for HTTP/1.0 servers

This method may be removed in a future version as RFC 2616 does not require this header.



328
329
330
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 328

def keep_alive
  @keep_alive
end

#max_requestsObject

Maximum number of requests on a connection before it is considered expired and automatically closed.



310
311
312
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 310

def max_requests
  @max_requests
end

#max_retriesObject

Number of retries to perform if a request fails.

See also #max_retries=, Gem::Net::HTTP#max_retries=.



317
318
319
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 317

def max_retries
  @max_retries
end

#max_versionObject

Maximum SSL version to use, e.g. :TLS1_2

By default, the version will be negotiated automatically between client and server. Ruby 2.5 and newer only.



432
433
434
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 432

def max_version
  @max_version
end

#min_versionObject

Minimum SSL version to use, e.g. :TLS1_1

By default, the version will be negotiated automatically between client and server. Ruby 2.5 and newer only.



424
425
426
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 424

def min_version
  @min_version
end

#nameObject (readonly)

The name for this collection of persistent connections.



333
334
335
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 333

def name
  @name
end

#no_proxyObject (readonly)

List of host suffixes which will not be proxied



363
364
365
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 363

def no_proxy
  @no_proxy
end

#open_timeoutObject

Seconds to wait until a connection is opened. See Gem::Net::HTTP#open_timeout



338
339
340
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 338

def open_timeout
  @open_timeout
end

#override_headersObject (readonly)

Headers that are added to every request using Gem::Net::HTTP#[]=



343
344
345
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 343

def override_headers
  @override_headers
end

#poolObject (readonly)

Test-only accessor for the connection pool



368
369
370
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 368

def pool
  @pool
end

#private_keyObject Also known as: key

This client’s SSL private key



348
349
350
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 348

def private_key
  @private_key
end

#proxy_uriObject (readonly)

The URL through which requests will be proxied



358
359
360
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 358

def proxy_uri
  @proxy_uri
end

#read_timeoutObject

Seconds to wait until reading one block. See Gem::Net::HTTP#read_timeout



373
374
375
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 373

def read_timeout
  @read_timeout
end

#reuse_ssl_sessionsObject

By default SSL sessions are reused to avoid extra SSL handshakes. Set this to false if you have problems communicating with an HTTPS server like:

SSL_connect [...] read finished A: unexpected message (OpenSSL::SSL::SSLError)


387
388
389
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 387

def reuse_ssl_sessions
  @reuse_ssl_sessions
end

#socket_optionsObject (readonly)

An array of options for Socket#setsockopt.

By default the TCP_NODELAY option is set on sockets.

To set additional options append them to this array:

http.socket_options << [Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, 1]


398
399
400
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 398

def socket_options
  @socket_options
end

#ssl_generationObject (readonly)

Current SSL connection generation



403
404
405
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 403

def ssl_generation
  @ssl_generation
end

#ssl_timeoutObject

SSL session lifetime



408
409
410
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 408

def ssl_timeout
  @ssl_timeout
end

#ssl_versionObject

SSL version to use.

By default, the version will be negotiated automatically between client and server. Ruby 1.9 and newer only. Deprecated since Ruby 2.5.



416
417
418
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 416

def ssl_version
  @ssl_version
end

#timeout_keyObject (readonly)

Where this instance’s last-use times live in the thread local variables



437
438
439
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 437

def timeout_key
  @timeout_key
end

#verify_callbackObject

SSL verification callback. Used when ca_file or ca_path is set.



442
443
444
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 442

def verify_callback
  @verify_callback
end

#verify_depthObject

Sets the depth of SSL certificate verification



447
448
449
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 447

def verify_depth
  @verify_depth
end

#verify_hostnameObject

HTTPS verify_hostname.

If a client sets this to true and enables SNI with SSLSocket#hostname=, the hostname verification on the server certificate is performed automatically during the handshake using OpenSSL::SSL.verify_certificate_identity().

You can set verify_hostname as true to use hostname verification during the handshake.

NOTE: This works with Ruby > 3.0.



473
474
475
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 473

def verify_hostname
  @verify_hostname
end

#verify_modeObject

HTTPS verify mode. Defaults to OpenSSL::SSL::VERIFY_PEER which verifies the server certificate.

If no ca_file, ca_path or cert_store is set the default system certificate store is used.

You can use verify_mode to override any default values.



458
459
460
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 458

def verify_mode
  @verify_mode
end

#write_timeoutObject

Seconds to wait until writing one block. See Gem::Net::HTTP#write_timeout



378
379
380
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 378

def write_timeout
  @write_timeout
end

Class Method Details

.detect_idle_timeout(uri, max = 10) ⇒ Object

Use this method to detect the idle timeout of the host at uri. The value returned can be used to configure #idle_timeout. max controls the maximum idle timeout to detect.

After

Idle timeout detection is performed by creating a connection then performing a HEAD request in a loop until the connection terminates waiting one additional second per loop.

NOTE: This may not work on ruby > 1.9.



202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 202

def self.detect_idle_timeout uri, max = 10
  uri = Gem::URI uri unless Gem::URI::Generic === uri
  uri += '/'

  req = Gem::Net::HTTP::Head.new uri.request_uri

  http = new 'net-http-persistent detect_idle_timeout'

  http.connection_for uri do |connection|
    sleep_time = 0

    http = connection.http

    loop do
      response = http.request req

      $stderr.puts "HEAD #{uri} => #{response.code}" if $DEBUG

      unless Gem::Net::HTTPOK === response then
        raise Error, "bad response code #{response.code} detecting idle timeout"
      end

      break if sleep_time >= max

      sleep_time += 1

      $stderr.puts "sleeping #{sleep_time}" if $DEBUG
      sleep sleep_time
    end
  end
rescue
  # ignore StandardErrors, we've probably found the idle timeout.
ensure
  return sleep_time unless $!
end

Instance Method Details

#connection_for(uri) ⇒ Object

Creates a new connection for uri



614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 614

def connection_for uri
  use_ssl = uri.scheme.downcase == 'https'

  net_http_args = [uri.hostname, uri.port]

  # I'm unsure if uri.host or uri.hostname should be checked against
  # the proxy bypass list.
  if @proxy_uri and not proxy_bypass? uri.host, uri.port then
    net_http_args.concat @proxy_args
  else
    net_http_args.concat [nil, nil, nil, nil]
  end

  connection = @pool.checkout net_http_args

  begin
    http = connection.http

    connection.ressl @ssl_generation if
      connection.ssl_generation != @ssl_generation

    if not http.started? then
      ssl   http if use_ssl
      start http
    elsif expired? connection then
      reset connection
    end

    http.keep_alive_timeout = @idle_timeout  if @idle_timeout
    http.max_retries        = @max_retries   if http.respond_to?(:max_retries=)
    http.read_timeout       = @read_timeout  if @read_timeout
    http.write_timeout      = @write_timeout if
      @write_timeout && http.respond_to?(:write_timeout=)

    return yield connection
  rescue Errno::ECONNREFUSED
    if http.proxy?
      address = http.proxy_address
      port    = http.proxy_port
    else
      address = http.address
      port    = http.port
    end

    raise Error, "connection refused: #{address}:#{port}"
  rescue Errno::EHOSTDOWN
    if http.proxy?
      address = http.proxy_address
      port    = http.proxy_port
    else
      address = http.address
      port    = http.port
    end

    raise Error, "host down: #{address}:#{port}"
  ensure
    @pool.checkin net_http_args
  end
end

#escape(str) ⇒ Object

CGI::escape wrapper



677
678
679
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 677

def escape str
  CGI.escape str if str
end

#expired?(connection) ⇒ Boolean

Returns true if the connection should be reset due to an idle timeout, or maximum request count, false otherwise.

Returns:

  • (Boolean)


693
694
695
696
697
698
699
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 693

def expired? connection
  return true  if     @max_requests && connection.requests >= @max_requests
  return false unless @idle_timeout
  return true  if     @idle_timeout.zero?

  Time.now - connection.last_use > @idle_timeout
end

#finish(connection) ⇒ Object

Finishes the Gem::Net::HTTP connection



722
723
724
725
726
727
728
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 722

def finish connection
  connection.finish

  connection.http.instance_variable_set :@last_communicated, nil
  connection.http.instance_variable_set :@ssl_session, nil unless
    @reuse_ssl_sessions
end

#http_version(uri) ⇒ Object

Returns the HTTP protocol version for uri



733
734
735
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 733

def http_version uri
  @http_versions["#{uri.hostname}:#{uri.port}"]
end

#normalize_uri(uri) ⇒ Object

Adds “http://” to the String uri if it is missing.



740
741
742
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 740

def normalize_uri uri
  (uri =~ /^https?:/) ? uri : "http://#{uri}"
end

#proxy=(proxy) ⇒ Object

Sets the proxy server. The proxy may be the Gem::URI of the proxy server, the symbol :ENV which will read the proxy from the environment or nil to disable use of a proxy. See #proxy_from_env for details on setting the proxy from the environment.

If the proxy Gem::URI is set after requests have been made, the next request will shut-down and re-open all connections.

The no_proxy query parameter can be used to specify hosts which shouldn’t be reached via proxy; if set it should be a comma separated list of hostname suffixes, optionally with :port appended, for example example.com,some.host:8080.



787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 787

def proxy= proxy
  @proxy_uri = case proxy
               when :ENV      then proxy_from_env
               when Gem::URI::HTTP then proxy
               when nil       then # ignore
               else raise ArgumentError, 'proxy must be :ENV or a Gem::URI::HTTP'
               end

  @no_proxy.clear

  if @proxy_uri then
    @proxy_args = [
      @proxy_uri.hostname,
      @proxy_uri.port,
      unescape(@proxy_uri.user),
      unescape(@proxy_uri.password),
    ]

    @proxy_connection_id = [nil, *@proxy_args].join ':'

    if @proxy_uri.query then
      @no_proxy = Gem::URI.decode_www_form(@proxy_uri.query).filter_map { |k, v| v if k == 'no_proxy' }.join(',').downcase.split(',').map { |x| x.strip }.reject { |x| x.empty? }
    end
  end

  reconnect
  reconnect_ssl
end

#proxy_bypass?(host, port) ⇒ Boolean

Returns true when proxy should by bypassed for host.

Returns:

  • (Boolean)


861
862
863
864
865
866
867
868
869
870
871
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 861

def proxy_bypass? host, port
  host = host.downcase
  host_port = [host, port].join ':'

  @no_proxy.each do |name|
    return true if host[-name.length, name.length] == name or
       host_port[-name.length, name.length] == name
  end

  false
end

#proxy_from_envObject

Creates a Gem::URI for an HTTP proxy server from ENV variables.

If HTTP_PROXY is set a proxy will be returned.

If HTTP_PROXY_USER or HTTP_PROXY_PASS are set the Gem::URI is given the indicated user and password unless HTTP_PROXY contains either of these in the Gem::URI.

The NO_PROXY ENV variable can be used to specify hosts which shouldn’t be reached via proxy; if set it should be a comma separated list of hostname suffixes, optionally with :port appended, for example example.com,some.host:8080. When set to * no proxy will be returned.

For Windows users, lowercase ENV variables are preferred over uppercase ENV variables.



834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 834

def proxy_from_env
  env_proxy = ENV['http_proxy'] || ENV['HTTP_PROXY']

  return nil if env_proxy.nil? or env_proxy.empty?

  uri = Gem::URI normalize_uri env_proxy

  env_no_proxy = ENV['no_proxy'] || ENV['NO_PROXY']

  # '*' is special case for always bypass
  return nil if env_no_proxy == '*'

  if env_no_proxy then
    uri.query = "no_proxy=#{escape(env_no_proxy)}"
  end

  unless uri.user or uri.password then
    uri.user     = escape ENV['http_proxy_user'] || ENV['HTTP_PROXY_USER']
    uri.password = escape ENV['http_proxy_pass'] || ENV['HTTP_PROXY_PASS']
  end

  uri
end

#reconnectObject

Forces reconnection of all HTTP connections, including TLS/SSL connections.



877
878
879
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 877

def reconnect
  @generation += 1
end

#reconnect_sslObject

Forces reconnection of only TLS/SSL connections.



884
885
886
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 884

def reconnect_ssl
  @ssl_generation += 1
end

#reloadObject

Discard all existing connections. Subsequent checkouts will create new connections as needed.

If any thread is still using a connection it may cause an error! Call #reload when you are completely done making requests!



998
999
1000
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 998

def reload
  @pool.reload { |http| http.finish }
end

#request(uri, req = nil, &block) ⇒ Object

Makes a request on uri. If req is nil a Gem::Net::HTTP::Get is performed against uri.

If a block is passed #request behaves like Gem::Net::HTTP#request (the body of the response will not have been read).

req must be a Gem::Net::HTTPGenericRequest subclass (see Gem::Net::HTTP for a list).



916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 916

def request uri, req = nil, &block
  uri      = Gem::URI uri
  req      = request_setup req || uri
  response = nil

  connection_for uri do |connection|
    http = connection.http

    begin
      connection.requests += 1

      response = http.request req, &block

      if req.connection_close? or
        (response.http_version <= '1.0' and
          not response.connection_keep_alive?) or
          response.connection_close? then
        finish connection
      end
    rescue Exception # make sure to close the connection when it was interrupted
      finish connection

      raise
    ensure
      connection.last_use = Time.now
    end
  end

  @http_versions["#{uri.hostname}:#{uri.port}"] ||= response.http_version

  response
end

#request_setup(req_or_uri) ⇒ Object

Creates a GET request if req_or_uri is a Gem::URI and adds headers to the request.

Returns the request.



955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 955

def request_setup req_or_uri # :nodoc:
  req = if req_or_uri.respond_to? 'request_uri' then
          Gem::Net::HTTP::Get.new req_or_uri.request_uri
        else
          req_or_uri
        end

  @headers.each do |pair|
    req.add_field(*pair)
  end

  @override_headers.each do |name, value|
    req[name] = value
  end

  unless req['Connection'] then
    req.add_field 'Connection', 'keep-alive'
    req.add_field 'Keep-Alive', @keep_alive
  end

  req
end

#reset(connection) ⇒ Object

Finishes then restarts the Gem::Net::HTTP connection



891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 891

def reset connection
  http = connection.http

  finish connection

  start http
rescue Errno::ECONNREFUSED
  e = Error.new "connection refused: #{http.address}:#{http.port}"
  e.set_backtrace $@
  raise e
rescue Errno::EHOSTDOWN
  e = Error.new "host down: #{http.address}:#{http.port}"
  e.set_backtrace $@
  raise e
end

#shutdownObject

Shuts down all connections. Attempting to checkout a connection after shutdown will raise an error.

NOTE: Calling shutdown for can be dangerous!

If any thread is still using a connection it may cause an error! Call #shutdown when you are completely done making requests!



987
988
989
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 987

def shutdown
  @pool.shutdown { |http| http.finish }
end

#ssl(connection) ⇒ Object

Enables SSL on connection



1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 1005

def ssl connection
  connection.use_ssl = true

  connection.ciphers     = @ciphers     if @ciphers
  connection.ssl_timeout = @ssl_timeout if @ssl_timeout
  connection.ssl_version = @ssl_version if @ssl_version
  connection.min_version = @min_version if @min_version
  connection.max_version = @max_version if @max_version

  connection.verify_depth    = @verify_depth
  connection.verify_mode     = @verify_mode
  connection.verify_hostname = @verify_hostname if
    @verify_hostname != nil && connection.respond_to?(:verify_hostname=)

  if OpenSSL::SSL::VERIFY_PEER == OpenSSL::SSL::VERIFY_NONE and
     not Object.const_defined?(:I_KNOW_THAT_OPENSSL_VERIFY_PEER_EQUALS_VERIFY_NONE_IS_WRONG) then
    warn <<-WARNING
                           !!!SECURITY WARNING!!!

The SSL HTTP connection to:

#{connection.address}:#{connection.port}

                         !!!MAY NOT BE VERIFIED!!!

On your platform your OpenSSL implementation is broken.

There is no difference between the values of VERIFY_NONE and VERIFY_PEER.

This means that attempting to verify the security of SSL connections may not
work.  This exposes you to man-in-the-middle exploits, snooping on the
contents of your connection and other dangers to the security of your data.

To disable this warning define the following constant at top-level in your
application:

I_KNOW_THAT_OPENSSL_VERIFY_PEER_EQUALS_VERIFY_NONE_IS_WRONG = nil

    WARNING
  end

  connection.ca_file = @ca_file if @ca_file
  connection.ca_path = @ca_path if @ca_path

  if @ca_file or @ca_path then
    connection.verify_mode = OpenSSL::SSL::VERIFY_PEER
    connection.verify_callback = @verify_callback if @verify_callback
  end

  if @certificate and @private_key then
    connection.cert = @certificate
    connection.key  = @private_key
  end

  if defined?(@extra_chain_cert) and @extra_chain_cert
    connection.extra_chain_cert = @extra_chain_cert
  end

  connection.cert_store = if @cert_store then
                            @cert_store
                          else
                            store = OpenSSL::X509::Store.new
                            store.set_default_paths
                            store
                          end
end

#start(http) ⇒ Object

Starts the Gem::Net::HTTP connection



704
705
706
707
708
709
710
711
712
713
714
715
716
717
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 704

def start http
  http.set_debug_output @debug_output if @debug_output
  http.open_timeout = @open_timeout if @open_timeout

  http.start

  socket = http.instance_variable_get :@socket

  if socket then # for fakeweb
    @socket_options.each do |option|
      socket.io.setsockopt(*option)
    end
  end
end

#unescape(str) ⇒ Object

CGI::unescape wrapper



684
685
686
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 684

def unescape str
  CGI.unescape str if str
end