1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Refactor script/dbconsole into an object

This commit is contained in:
Carlhuda 2009-11-24 11:53:14 -08:00
parent d8c5ea76bc
commit a2cb90c0c2
2 changed files with 83 additions and 73 deletions

View file

@ -2,10 +2,16 @@ require 'erb'
require 'yaml'
require 'optparse'
include_password = false
options = {}
module Rails
class DBConsole
def self.start
new.start
end
OptionParser.new do |opt|
def start
include_password = false
options = {}
OptionParser.new do |opt|
opt.banner = "Usage: dbconsole [options] [environment]"
opt.on("-p", "--include-password", "Automatically provide the password from database.yml") do |v|
include_password = true
@ -22,15 +28,15 @@ OptionParser.new do |opt|
opt.parse!(ARGV)
abort opt.to_s unless (0..1).include?(ARGV.size)
end
end
env = ARGV.first || ENV['RAILS_ENV'] || 'development'
unless config = YAML::load(ERB.new(IO.read(Rails.root + "/config/database.yml")).result)[env]
env = ARGV.first || ENV['RAILS_ENV'] || 'development'
unless config = YAML::load(ERB.new(IO.read("#{Rails.root}/config/database.yml")).result)[env]
abort "No database is configured for the environment '#{env}'"
end
end
def find_cmd(*commands)
def find_cmd(*commands)
dirs_on_path = ENV['PATH'].to_s.split(File::PATH_SEPARATOR)
commands += commands.map{|cmd| "#{cmd}.exe"} if RUBY_PLATFORM =~ /win32/
@ -42,10 +48,10 @@ def find_cmd(*commands)
end
end
found ? full_path_command : abort("Couldn't find database client: #{commands.join(', ')}. Check your $PATH and try again.")
end
end
case config["adapter"]
when "mysql"
case config["adapter"]
when "mysql"
args = {
'host' => '--host',
'port' => '--port',
@ -64,17 +70,17 @@ when "mysql"
exec(find_cmd('mysql', 'mysql5'), *args)
when "postgresql"
when "postgresql"
ENV['PGUSER'] = config["username"] if config["username"]
ENV['PGHOST'] = config["host"] if config["host"]
ENV['PGPORT'] = config["port"].to_s if config["port"]
ENV['PGPASSWORD'] = config["password"].to_s if config["password"] && include_password
exec(find_cmd('psql'), config["database"])
when "sqlite"
when "sqlite"
exec(find_cmd('sqlite'), config["database"])
when "sqlite3"
when "sqlite3"
args = []
args << "-#{options['mode']}" if options['mode']
@ -82,6 +88,9 @@ when "sqlite3"
args << config['database']
exec(find_cmd('sqlite3'), *args)
else
else
abort "Unknown command-line client for #{config['database']}. Submit a Rails patch to add support!"
end
end
end
end

View file

@ -1,2 +1,3 @@
require File.expand_path('../../config/application', __FILE__)
require 'rails/commands/dbconsole'
Rails::DBConsole.start