-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend `ActiveRecord::Base` functionality only after `ActiveRecord` has been fully loaded. Ref: thoughtbot/factory_bot_rails#426 Close #231
- Loading branch information
Showing
3 changed files
with
81 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
module ChronoModel | ||
# A module to add to ActiveRecord::Base to check if they are backed by | ||
# temporal tables. | ||
module Chrono | ||
# Checks whether this Active Record model is backed by a temporal table | ||
# | ||
# @return [Boolean] false if the connection does not respond to is_chrono? | ||
# the result of connection.is_chrono?(table_name) otherwise | ||
def chrono? | ||
return false unless connection.respond_to? :is_chrono? | ||
|
||
connection.is_chrono?(table_name) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,62 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'active_record/tasks/chronomodel_database_tasks' | ||
|
||
module ChronoModel | ||
class Railtie < ::Rails::Railtie | ||
TASKS_CLASS = ActiveRecord::Tasks::ChronomodelDatabaseTasks | ||
if defined?(Rails) | ||
module ChronoModel | ||
class Railtie < ::Rails::Railtie | ||
rake_tasks do | ||
load 'active_record/tasks/chronomodel_database_tasks.rb' | ||
|
||
def task_config | ||
if Rails.version < '6.1' | ||
ActiveRecord::Tasks::DatabaseTasks.current_config.with_indifferent_access | ||
else | ||
ActiveRecord::Base.connection_db_config | ||
end | ||
end | ||
|
||
def task_config | ||
if Rails.version < '6.1' | ||
ActiveRecord::Tasks::DatabaseTasks.current_config.with_indifferent_access | ||
else | ||
ActiveRecord::Base.connection_db_config | ||
end | ||
end | ||
# Register our database tasks under our adapter name | ||
if Rails.version < '5.2' | ||
ActiveRecord::Tasks::DatabaseTasks.register_task(/chronomodel/, ActiveRecord::Tasks::ChronomodelDatabaseTasks) | ||
else | ||
ActiveRecord::Tasks::DatabaseTasks.register_task(/chronomodel/, 'ActiveRecord::Tasks::ChronomodelDatabaseTasks') | ||
end | ||
|
||
# Register our database tasks under our adapter name | ||
if Rails.version < '5.2' | ||
ActiveRecord::Tasks::DatabaseTasks.register_task(/chronomodel/, TASKS_CLASS) | ||
else | ||
ActiveRecord::Tasks::DatabaseTasks.register_task(/chronomodel/, TASKS_CLASS.to_s) | ||
end | ||
if Rails.application.config.active_record.schema_format != :sql | ||
raise 'In order to use ChronoModel, config.active_record.schema_format must be :sql!' | ||
end | ||
|
||
rake_tasks do | ||
if Rails.application.config.active_record.schema_format != :sql | ||
raise 'In order to use ChronoModel, config.active_record.schema_format must be :sql!' | ||
end | ||
if Rails.version < '6.1' | ||
# Make schema:dump and schema:load invoke structure:dump and structure:load | ||
Rake::Task['db:schema:dump'].clear.enhance(['environment']) do | ||
Rake::Task['db:structure:dump'].invoke | ||
end | ||
|
||
if Rails.version < '6.1' | ||
# Make schema:dump and schema:load invoke structure:dump and structure:load | ||
Rake::Task['db:schema:dump'].clear.enhance(['environment']) do | ||
Rake::Task['db:structure:dump'].invoke | ||
Rake::Task['db:schema:load'].clear.enhance(['environment']) do | ||
Rake::Task['db:structure:load'].invoke | ||
end | ||
end | ||
|
||
Rake::Task['db:schema:load'].clear.enhance(['environment']) do | ||
Rake::Task['db:structure:load'].invoke | ||
desc 'Dumps database into db/data.NOW.sql or file specified via DUMP=' | ||
task 'db:data:dump' => :environment do | ||
target = ENV['DUMP'] || Rails.root.join('db', "data.#{Time.now.to_f}.sql") | ||
ActiveRecord::Tasks::ChronomodelDatabaseTasks.new(task_config).data_dump(target) | ||
end | ||
end | ||
|
||
desc 'Dumps database into db/data.NOW.sql or file specified via DUMP=' | ||
task 'db:data:dump' => :environment do | ||
target = ENV['DUMP'] || Rails.root.join('db', "data.#{Time.now.to_f}.sql") | ||
TASKS_CLASS.new(task_config).data_dump(target) | ||
end | ||
|
||
desc 'Loads database dump from file specified via DUMP=' | ||
task 'db:data:load' => :environment do | ||
source = ENV['DUMP'].presence or | ||
raise ArgumentError, 'Invoke as rake db:data:load DUMP=/path/to/data.sql' | ||
TASKS_CLASS.new(task_config).data_load(source) | ||
desc 'Loads database dump from file specified via DUMP=' | ||
task 'db:data:load' => :environment do | ||
source = ENV['DUMP'].presence or | ||
raise ArgumentError, 'Invoke as rake db:data:load DUMP=/path/to/data.sql' | ||
ActiveRecord::Tasks::ChronomodelDatabaseTasks.new(task_config).data_load(source) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
|
||
if defined?(Rails::DBConsole) && Rails.version < '7.1' | ||
if Rails.version < '6.1' | ||
Rails::DBConsole.prepend ChronoModel::Patches::DBConsole::Config | ||
else | ||
Rails::DBConsole.prepend ChronoModel::Patches::DBConsole::DbConfig | ||
end | ||
end |