2010-02-04 12:29:18 -05:00
|
|
|
require "active_record"
|
|
|
|
require "rails"
|
|
|
|
require "active_model/railtie"
|
|
|
|
|
2009-12-23 17:55:12 -05:00
|
|
|
# For now, action_controller must always be present with
|
|
|
|
# rails, so let's make sure that it gets required before
|
|
|
|
# here. This is needed for correctly setting up the middleware.
|
|
|
|
# In the future, this might become an optional require.
|
2009-12-31 16:11:54 -05:00
|
|
|
require "action_controller/railtie"
|
2009-12-23 17:55:12 -05:00
|
|
|
|
|
|
|
module ActiveRecord
|
2010-06-16 13:45:04 -04:00
|
|
|
# = Active Record Railtie
|
2009-12-31 16:11:54 -05:00
|
|
|
class Railtie < Rails::Railtie
|
2010-03-26 13:47:55 -04:00
|
|
|
config.active_record = ActiveSupport::OrderedOptions.new
|
2009-12-27 07:32:40 -05:00
|
|
|
|
2010-09-29 11:41:30 -04:00
|
|
|
config.app_generators.orm :active_record, :migration => true,
|
2010-10-28 12:00:52 -04:00
|
|
|
:timestamps => true
|
2010-01-28 13:45:25 -05:00
|
|
|
|
2010-08-20 21:55:02 -04:00
|
|
|
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
|
|
|
|
"ActiveRecord::QueryCache"
|
|
|
|
|
|
|
|
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
|
|
|
|
"ActiveRecord::ConnectionAdapters::ConnectionManagement"
|
2010-05-15 09:08:55 -04:00
|
|
|
|
2011-12-01 13:16:19 -05:00
|
|
|
config.action_dispatch.rescue_responses.merge!(
|
|
|
|
'ActiveRecord::RecordNotFound' => :not_found,
|
|
|
|
'ActiveRecord::StaleObjectError' => :conflict,
|
|
|
|
'ActiveRecord::RecordInvalid' => :unprocessable_entity,
|
|
|
|
'ActiveRecord::RecordNotSaved' => :unprocessable_entity
|
|
|
|
)
|
|
|
|
|
2009-12-28 20:37:18 -05:00
|
|
|
rake_tasks do
|
2012-05-28 11:47:10 -04:00
|
|
|
require "active_record/base"
|
2009-12-30 22:24:00 -05:00
|
|
|
load "active_record/railties/databases.rake"
|
2009-12-28 20:37:18 -05:00
|
|
|
end
|
|
|
|
|
2011-05-04 10:31:06 -04:00
|
|
|
# When loading console, force ActiveRecord::Base to be loaded
|
|
|
|
# to avoid cross references when loading a constant for the
|
|
|
|
# first time. Also, make it output to STDERR.
|
2011-05-24 19:37:55 -04:00
|
|
|
console do |app|
|
|
|
|
require "active_record/railties/console_sandbox" if app.sandbox?
|
2012-05-28 11:47:10 -04:00
|
|
|
require "active_record/base"
|
2012-01-20 14:56:38 -05:00
|
|
|
console = ActiveSupport::Logger.new(STDERR)
|
2012-01-20 17:18:29 -05:00
|
|
|
Rails.logger.extend ActiveSupport::Logger.broadcast console
|
2010-07-17 04:59:41 -04:00
|
|
|
end
|
|
|
|
|
2012-05-29 10:43:46 -04:00
|
|
|
runner do |app|
|
|
|
|
require "active_record/base"
|
|
|
|
end
|
|
|
|
|
2010-01-22 14:44:29 -05:00
|
|
|
initializer "active_record.initialize_timezone" do
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-03-07 09:24:30 -05:00
|
|
|
self.time_zone_aware_attributes = true
|
|
|
|
self.default_timezone = :utc
|
|
|
|
end
|
2010-01-22 14:44:29 -05:00
|
|
|
end
|
|
|
|
|
2010-01-24 19:06:12 -05:00
|
|
|
initializer "active_record.logger" do
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) { self.logger ||= ::Rails.logger }
|
2010-01-24 19:06:12 -05:00
|
|
|
end
|
|
|
|
|
2012-06-05 20:15:16 -04:00
|
|
|
initializer "active_record.migration_error" do |app|
|
|
|
|
if config.active_record.delete(:migration_error) == :page_load
|
|
|
|
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
|
|
|
|
"ActiveRecord::Migration::CheckPending"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-23 17:55:12 -05:00
|
|
|
initializer "active_record.set_configs" do |app|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-03-07 09:24:30 -05:00
|
|
|
app.config.active_record.each do |k,v|
|
|
|
|
send "#{k}=", v
|
|
|
|
end
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This sets the database configuration from Configuration#database_configuration
|
|
|
|
# and then establishes the connection.
|
|
|
|
initializer "active_record.initialize_database" do |app|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2012-04-03 12:23:32 -04:00
|
|
|
unless ENV['DATABASE_URL']
|
|
|
|
self.configurations = app.config.database_configuration
|
|
|
|
end
|
2010-03-07 09:24:30 -05:00
|
|
|
establish_connection
|
|
|
|
end
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
|
2009-12-30 22:24:00 -05:00
|
|
|
# Expose database runtime to controller for logging.
|
|
|
|
initializer "active_record.log_runtime" do |app|
|
|
|
|
require "active_record/railties/controller_runtime"
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:action_controller) do
|
2010-03-07 09:24:30 -05:00
|
|
|
include ActiveRecord::Railties::ControllerRuntime
|
|
|
|
end
|
2009-12-30 22:24:00 -05:00
|
|
|
end
|
|
|
|
|
2011-12-15 12:48:10 -05:00
|
|
|
initializer "active_record.set_reloader_hooks" do |app|
|
2012-06-15 07:09:19 -04:00
|
|
|
hook = app.config.reload_classes_only_on_change ? :to_prepare : :to_cleanup
|
2011-12-15 12:48:10 -05:00
|
|
|
|
2012-06-15 07:09:19 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
ActionDispatch::Reloader.send(hook) do
|
2012-05-25 10:58:16 -04:00
|
|
|
ActiveRecord::Model.clear_reloadable_connections!
|
|
|
|
ActiveRecord::Model.clear_cache!
|
2010-03-07 09:24:30 -05:00
|
|
|
end
|
2010-01-14 13:53:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-12 16:51:33 -05:00
|
|
|
initializer "active_record.add_watchable_files" do |app|
|
2011-12-13 05:23:21 -05:00
|
|
|
config.watchable_files.concat ["#{app.root}/db/schema.rb", "#{app.root}/db/structure.sql"]
|
2011-12-12 16:51:33 -05:00
|
|
|
end
|
|
|
|
|
2012-02-29 11:13:14 -05:00
|
|
|
config.after_initialize do |app|
|
2010-04-15 17:47:11 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2011-12-28 13:17:57 -05:00
|
|
|
ActiveRecord::Base.instantiate_observers
|
2010-04-15 17:47:11 -04:00
|
|
|
|
2010-12-20 06:41:49 -05:00
|
|
|
ActionDispatch::Reloader.to_prepare do
|
2010-04-20 07:44:49 -04:00
|
|
|
ActiveRecord::Base.instantiate_observers
|
2010-01-14 13:53:07 -05:00
|
|
|
end
|
|
|
|
end
|
2012-02-29 11:13:14 -05:00
|
|
|
|
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
if app.config.use_schema_cache_dump
|
|
|
|
filename = File.join(app.config.paths["db"].first, "schema_cache.dump")
|
|
|
|
if File.file?(filename)
|
2012-04-03 18:56:40 -04:00
|
|
|
cache = Marshal.load File.binread filename
|
2012-02-29 11:19:27 -05:00
|
|
|
if cache.version == ActiveRecord::Migrator.current_version
|
|
|
|
ActiveRecord::Base.connection.schema_cache = cache
|
|
|
|
else
|
|
|
|
warn "schema_cache.dump is expired. Current version is #{ActiveRecord::Migrator.current_version}, but cache version is #{cache.version}."
|
|
|
|
end
|
2012-02-29 11:13:14 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-30 22:24:00 -05:00
|
|
|
end
|