Class: ActiveRecord::ConnectionAdapters::ConnectionSpecification::ConnectionUrlResolver

Inherits:
Object
  • Object
show all
Defined in:
activerecord/lib/active_record/connection_adapters/connection_specification.rb

Overview

Expands a connection string into a hash.

Instance Method Summary collapse

Constructor Details

#initialize(url) ⇒ ConnectionUrlResolver

Example

url = "postgresql://foo:bar@localhost:9000/foo_test?pool=5&timeout=3000"
ConnectionUrlResolver.new(url).to_hash
# => {
  "adapter"  => "postgresql",
  "host"     => "localhost",
  "port"     => 9000,
  "database" => "foo_test",
  "username" => "foo",
  "password" => "bar",
  "pool"     => "5",
  "timeout"  => "3000"
}


33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'activerecord/lib/active_record/connection_adapters/connection_specification.rb', line 33

def initialize(url)
  raise "Database URL cannot be empty" if url.blank?
  @uri     = URI.parse(url)
  @adapter = @uri.scheme.gsub('-', '_')
  @adapter = "postgresql" if @adapter == "postgres"

  if @uri.opaque
    @uri.opaque, @query = @uri.opaque.split('?', 2)
  else
    @query = @uri.query
  end
  @authority = url =~ %r{\A[^:]*://}
end

Instance Method Details

#to_hashObject

Converts the given URL to a full connection hash.



48
49
50
51
52
# File 'activerecord/lib/active_record/connection_adapters/connection_specification.rb', line 48

def to_hash
  config = raw_config.reject { |_,value| value.blank? }
  config.map { |key,value| config[key] = uri_parser.unescape(value) if value.is_a? String }
  config
end