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



17
18
19
# File 'lib/hanami/model/migrator/connection.rb', line 17

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



60
61
62
# File 'lib/hanami/model/migrator/connection.rb', line 60

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



72
73
74
75
76
77
78
79
80
81
# File 'lib/hanami/model/migrator/connection.rb', line 72

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



115
116
117
# File 'lib/hanami/model/migrator/connection.rb', line 115

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



40
41
42
# File 'lib/hanami/model/migrator/connection.rb', line 40

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



123
124
125
# File 'lib/hanami/model/migrator/connection.rb', line 123

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



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

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



99
100
101
# File 'lib/hanami/model/migrator/connection.rb', line 99

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



50
51
52
# File 'lib/hanami/model/migrator/connection.rb', line 50

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



23
24
25
26
27
28
29
30
31
32
# File 'lib/hanami/model/migrator/connection.rb', line 23

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



136
137
138
# File 'lib/hanami/model/migrator/connection.rb', line 136

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



144
145
146
# File 'lib/hanami/model/migrator/connection.rb', line 144

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



107
108
109
# File 'lib/hanami/model/migrator/connection.rb', line 107

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



89
90
91
# File 'lib/hanami/model/migrator/connection.rb', line 89

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