forked from openshift/ruby-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.rb
57 lines (49 loc) · 1.58 KB
/
database.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'sinatra/activerecord'
def self.connect_to_database_prod
begin
config = {
:adapter => "mysql2",
:host => "#{ENV["DATABASE_SERVICE_HOST"]}",
:port => "#{ENV["DATABASE_SERVICE_PORT"]}",
:database => "#{ENV["MYSQL_DATABASE"]}"
}
if ENV.key?("MYSQL_ROOT_PASSWORD")
config[:password] = "#{ENV["MYSQL_ROOT_PASSWORD"]}"
else
config[:username] = "#{ENV["MYSQL_USER"]}"
config[:password] = "#{ENV["MYSQL_PASSWORD"]}"
end
puts "Connecting to production database (#{config[:username]}@#{config[:host]}:#{config[:port]})..."
ActiveRecord::Base.establish_connection(config)
ActiveRecord::Base.connection.active?
rescue Exception => e
if not /Can't connect to MySQL server/ =~ e.message
puts e.message
end
return false
end
end
def self.connect_to_database_test
begin
config = {
:adapter => "mysql2",
:host => "#{ENV["DATABASE_TEST_SERVICE_HOST"]}",
:port => "#{ENV["DATABASE_TEST_SERVICE_PORT"]}",
:database => "#{ENV["MYSQL_DATABASE"]}"
}
if ENV.key?("MYSQL_ROOT_PASSWORD")
config[:password] = ENV["MYSQL_ROOT_PASSWORD"]
else
config[:username] = ENV["MYSQL_USER"]
config[:password] = ENV["MYSQL_PASSWORD"]
end
puts "Connecting to test database (#{config[:username]}@#{config[:host]}:#{config[:port]})..."
ActiveRecord::Base.establish_connection(config)
ActiveRecord::Base.connection.active?
rescue Exception => e
if not /Can't connect to MySQL server/ =~ e.message
puts e.message
end
return false
end
end