Class: Hanami::Model::Migrator::Connection Private

Inherits:
Object
  • Object
show all
Defined in:
lib/hanami/model/migrator/connection.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Sequel connection wrapper

Normalize external adapters interfaces

Since:

  • 0.5.0

Instance Method Summary collapse

Constructor Details

#initialize(configuration) ⇒ Connection

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Connection.

Since:

  • 0.5.0



13
14
15
# File 'lib/hanami/model/migrator/connection.rb', line 13

def initialize(configuration)
  @configuration = configuration
end

Instance Method Details

#databaseObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB name from conenction

Even when adapter doesn’t provide it explicitly it tries to parse

Since:

  • 0.5.0



56
57
58
# File 'lib/hanami/model/migrator/connection.rb', line 56

def database
  @database ||= parsed_uri.path[1..-1]
end

#database_typeObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB type

Examples:

connection.database_type
  # => 'postgres'

Since:

  • 0.5.0



68
69
70
71
72
73
74
75
76
77
# File 'lib/hanami/model/migrator/connection.rb', line 68

def database_type
  case uri
  when /sqlite/
    :sqlite
  when /postgres/
    :postgres
  when /mysql/
    :mysql
  end
end

#global_uriObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB connection wihout specifying database name

Since:

  • 0.5.0



111
112
113
# File 'lib/hanami/model/migrator/connection.rb', line 111

def global_uri
  uri.sub(parsed_uri.select(:path).first, '')
end

#hostObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB connection host

Even when adapter doesn’t provide it explicitly it tries to parse

Since:

  • 0.5.0



36
37
38
# File 'lib/hanami/model/migrator/connection.rb', line 36

def host
  @host ||= parsed_uri.host || parsed_opt('host')
end

#jdbc?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a boolean telling if a DB connection is from JDBC or not

Returns:

  • (Boolean)

Since:

  • 0.5.0



119
120
121
# File 'lib/hanami/model/migrator/connection.rb', line 119

def jdbc?
  !uri.scan('jdbc:').empty?
end

#parsed_uriObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns database connection URI instance without JDBC namespace

Since:

  • 0.5.0



127
128
129
# File 'lib/hanami/model/migrator/connection.rb', line 127

def parsed_uri
  @parsed_uri ||= URI.parse(uri.sub('jdbc:', ''))
end

#passwordObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns user from DB connection

Even when adapter doesn’t provide it explicitly it tries to parse

Since:

  • 0.5.0



95
96
97
# File 'lib/hanami/model/migrator/connection.rb', line 95

def password
  @password ||= parsed_opt('password') || parsed_uri.password
end

#portObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB connection port

Even when adapter doesn’t provide it explicitly it tries to parse

Since:

  • 0.5.0



46
47
48
# File 'lib/hanami/model/migrator/connection.rb', line 46

def port
  @port ||= parsed_uri.port || parsed_opt('port').to_i.nonzero?
end

#rawObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.7.0



19
20
21
22
23
24
25
26
27
28
# File 'lib/hanami/model/migrator/connection.rb', line 19

def raw
  @raw ||= begin
             Sequel.connect(
               configuration.url,
               loggers: [configuration.migrations_logger]
             )
           rescue Sequel::AdapterNotFound
             raise MigrationError.new("Current adapter (#{configuration.adapter.type}) doesn't support SQL database operations.")
           end
end

#schemaObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.5.0



132
133
134
# File 'lib/hanami/model/migrator/connection.rb', line 132

def schema
  configuration.schema
end

#table(name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return the database table for the given name

Since:

  • 0.7.0



140
141
142
# File 'lib/hanami/model/migrator/connection.rb', line 140

def table(name)
  raw[name] if raw.tables.include?(name)
end

#uriObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns DB connection URI directly from adapter

Since:

  • 0.5.0



103
104
105
# File 'lib/hanami/model/migrator/connection.rb', line 103

def uri
  @configuration.url
end

#userObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns user from DB connection

Even when adapter doesn’t provide it explicitly it tries to parse

Since:

  • 0.5.0



85
86
87
# File 'lib/hanami/model/migrator/connection.rb', line 85

def user
  @user ||= parsed_opt('user') || parsed_uri.user
end