Skip to content

Commit

Permalink
Merge pull request #21 from esambo/fix_local_jump_error
Browse files Browse the repository at this point in the history
Fix issue #20 (and partially #12)
  • Loading branch information
Slania authored Mar 29, 2017
2 parents 5926d71 + 5b02ba0 commit c337264
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 54 deletions.
102 changes: 49 additions & 53 deletions lib/prodder/prodder.rake
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ namespace :db do
begin
puts ActiveRecord::Tasks::DatabaseTasks.collation_current
rescue NoMethodError
$stderr.puts 'Sorry, your database adapter is not supported yet. Feel free to submit a patch.'
$stderr.puts 'error: Sorry, your database adapter is not supported yet. Feel free to submit a patch.'
end
end
end
Expand Down Expand Up @@ -214,78 +214,74 @@ namespace :db do

desc "Load initial seeds from db/seeds.sql"
task :seed => dependencies do
unless File.exist?('db/seeds.sql')
if File.exist?('db/seeds.sql')
config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/seeds.sql into database '#{config['database']}'"
`psql --no-psqlrc -f db/seeds.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/seeds.sql' if $?.exitstatus != 0
else
puts 'db/seeds.sql not found: no seeds to load.'
return
end

config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/seeds.sql into database '#{config['database']}'"
`psql --no-psqlrc -f db/seeds.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/seeds.sql' if $?.exitstatus != 0
end

desc "Load quality_checks (indexes, triggers, foreign keys) from db/quality_checks.sql"
task :quality_check => dependencies do
unless File.exist?('db/quality_checks.sql')
if File.exist?('db/quality_checks.sql')
config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/quality_checks.sql into database '#{config['database']}'"
`psql --no-psqlrc -f db/quality_checks.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/quality_checks.sql' if $?.exitstatus != 0
else
puts 'db/quality_checks.sql not found: no quality_checks to load.'
return
end

config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/quality_checks.sql into database '#{config['database']}'"
`psql --no-psqlrc -f db/quality_checks.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/quality_checks.sql' if $?.exitstatus != 0
end

desc "Load permissions (DB object level access control, group role memberships) from db/permissions.sql"
task :permission => dependencies do
unless File.exist?('db/permissions.sql')
puts 'db/permissions.sql not found: no permissions to load.'
return
end

config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"]
set_psql_env config
puts "Loading db/permissions.sql into database '#{config['database']}'"
disconnect
ActiveRecord::Base.establish_connection((ENV['RAILS_ENV'] || Rails.env).intern)
result = ActiveRecord::Base.connection.execute(<<-SQL).first
if File.exist?('db/permissions.sql')
config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"]
set_psql_env config
puts "Loading db/permissions.sql into database '#{config['database']}'"
disconnect
ActiveRecord::Base.establish_connection((ENV['RAILS_ENV'] || Rails.env).intern)
result = ActiveRecord::Base.connection.execute(<<-SQL).first
select 1 as is_super from pg_roles where rolname = '#{config['username']}' and rolsuper
SQL
unless result && result['is_super']
puts "Restoring permissions as config/database.yml non-superuser: '#{config['username']}', expect errors, or rerun after granting superuser"
SQL
unless result && result['is_super']
puts "warning: Restoring permissions as config/database.yml non-superuser: '#{config['username']}', expect errors, or rerun after granting superuser"
end
`psql --no-psqlrc -f db/permissions.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/permissions.sql' if $?.exitstatus != 0
else
puts 'db/permissions.sql not found: no permissions to load.'
end
`psql --no-psqlrc -f db/permissions.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/permissions.sql' if $?.exitstatus != 0
end

desc "Load database settings"
task :settings => dependencies do
unless File.exist?('db/settings.sql')
puts 'db/settings.sql not found: no settings to load.'
return
end

config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/settings.sql into database '#{config['database']}'"
disconnect
ActiveRecord::Base.establish_connection((ENV['RAILS_ENV'] || Rails.env).intern)
result = ActiveRecord::Base.connection.execute(<<-SQL).first
if File.exist?('db/settings.sql')
config = ActiveRecord::Base.configurations[ENV['RAILS_ENV'] || Rails.env]
config["username"] = config["superuser"] if config["superuser"] && File.exist?('db/permissions.sql')
set_psql_env config
puts "Loading db/settings.sql into database '#{config['database']}'"
disconnect
ActiveRecord::Base.establish_connection((ENV['RAILS_ENV'] || Rails.env).intern)
result = ActiveRecord::Base.connection.execute(<<-SQL).first
select 1 as is_super from pg_roles where rolname = '#{config['username']}' and rolsuper
SQL
unless result && result['is_super']
puts "Restoring settings as config/database.yml non-superuser: '#{config['username']}', expect errors, or rerun after granting superuser"
SQL
unless result && result['is_super']
puts "warning: Restoring settings as config/database.yml non-superuser: '#{config['username']}', expect errors, or rerun after granting superuser"
end
`psql --no-psqlrc -f db/settings.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/settings.sql' if $?.exitstatus != 0
else
puts 'db/settings.sql not found: no settings to load.'
end
`psql --no-psqlrc -f db/settings.sql #{Shellwords.escape(config['database'])}`
raise 'Error loading db/settings.sql' if $?.exitstatus != 0
end

# Empty this, we don't want db:migrate writing structure.sql any more.
Expand Down
2 changes: 1 addition & 1 deletion lib/prodder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Prodder
VERSION = "1.7.3"
VERSION = "1.7.4"
end

0 comments on commit c337264

Please sign in to comment.