Sha256: f2c5da5526cbf269f78212f6828ba001248c21e401beecf5e39f116712b6c69b

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

module Dumper
  module Database
    class PostgreSQL < Base
      DUMP_TOOL = 'pg_dump'
      FORMAT = 'sql'

      def command
        "cd #{tmpdir} && #{password_variable} #{dump_tool_path} #{connection_options} #{custom_options} #{@config[:database]} | gzip > #{filename}"
      end

      def connection_options
        [ :host, :port, :socket, :username ].map do |option|
          next if @config[option].blank?
          "--#{option}='#{@config[option]}'".gsub('--socket', '--host')
        end.compact.join(' ')
      end

      def password_variable
        @config[:password].blank? ? '' : "PGPASSWORD='#{@config[:password]}'"
      end

      def set_config_for(rails_env=nil)
        return unless defined?(ActiveRecord::Base) &&
          ActiveRecord::Base.configurations &&
          (config = ActiveRecord::Base.configurations[rails_env]) &&
          (config['adapter'] == 'postgresql')

        @config = {
          :host => config['host'],
          :port => config['port'],
          :username => config['username'],
          :password => config['password'],
          :database => config['database'],
          :dump_tool => dump_tool_path
        }
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dumper-1.7.3 lib/dumper/database/postgresql.rb
dumper-1.7.2 lib/dumper/database/postgresql.rb
dumper-1.7.1 lib/dumper/database/postgresql.rb
dumper-1.7.0 lib/dumper/database/postgresql.rb
dumper-1.6.1 lib/dumper/database/postgresql.rb
dumper-1.6.0 lib/dumper/database/postgresql.rb