railtie.rb 4.9 KB
Newer Older
1 2 3 4
require "active_record"
require "rails"
require "active_model/railtie"

5 6 7 8
# 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.
C
Carl Lerche 已提交
9
require "action_controller/railtie"
10 11

module ActiveRecord
R
Rizwan Reza 已提交
12
  # = Active Record Railtie
C
Carl Lerche 已提交
13
  class Railtie < Rails::Railtie
14
    config.active_record = ActiveSupport::OrderedOptions.new
15

16
    config.app_generators.orm :active_record, :migration => true,
17
                                              :timestamps => true
18

19 20 21 22 23
    config.app_middleware.insert_after "::ActionDispatch::Callbacks",
      "ActiveRecord::QueryCache"

    config.app_middleware.insert_after "::ActionDispatch::Callbacks",
      "ActiveRecord::ConnectionAdapters::ConnectionManagement"
24

25 26 27 28 29 30 31
    config.action_dispatch.rescue_responses.merge!(
      'ActiveRecord::RecordNotFound'   => :not_found,
      'ActiveRecord::StaleObjectError' => :conflict,
      'ActiveRecord::RecordInvalid'    => :unprocessable_entity,
      'ActiveRecord::RecordNotSaved'   => :unprocessable_entity
    )

32

33 34
    config.active_record.use_schema_cache_dump = true

35 36
    config.eager_load_namespaces << ActiveRecord

37
    rake_tasks do
K
kennyj 已提交
38
      require "active_record/base"
39
      load "active_record/railties/databases.rake"
40 41
    end

42 43 44
    # 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.
45 46
    console do |app|
      require "active_record/railties/console_sandbox" if app.sandbox?
K
kennyj 已提交
47
      require "active_record/base"
48
      console = ActiveSupport::Logger.new(STDERR)
49
      Rails.logger.extend ActiveSupport::Logger.broadcast console
50 51
    end

52 53 54 55
    runner do |app|
      require "active_record/base"
    end

56
    initializer "active_record.initialize_timezone" do
57
      ActiveSupport.on_load(:active_record) do
58 59 60
        self.time_zone_aware_attributes = true
        self.default_timezone = :utc
      end
61 62
    end

63
    initializer "active_record.logger" do
64
      ActiveSupport.on_load(:active_record) { self.logger ||= ::Rails.logger }
65 66
    end

S
schneems 已提交
67 68 69 70 71 72 73
    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

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    initializer "active_record.check_schema_cache_dump" do |app|
      if config.active_record.delete(:use_schema_cache_dump)
        config.after_initialize do |app|
          ActiveSupport.on_load(:active_record) do
            filename = File.join(app.config.paths["db"].first, "schema_cache.dump")
    
            if File.file?(filename)
              cache = Marshal.load File.binread filename
              if cache.version == ActiveRecord::Migrator.current_version
                ActiveRecord::Model.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
            end
          end
        end
      end
    end

93
    initializer "active_record.set_configs" do |app|
94
      ActiveSupport.on_load(:active_record) do
95 96 97
        app.config.active_record.each do |k,v|
          send "#{k}=", v
        end
98 99 100 101 102 103
      end
    end

    # This sets the database configuration from Configuration#database_configuration
    # and then establishes the connection.
    initializer "active_record.initialize_database" do |app|
104
      ActiveSupport.on_load(:active_record) do
105 106 107
        unless ENV['DATABASE_URL']
          self.configurations = app.config.database_configuration
        end
108 109
        establish_connection
      end
110 111
    end

112 113 114
    # Expose database runtime to controller for logging.
    initializer "active_record.log_runtime" do |app|
      require "active_record/railties/controller_runtime"
115
      ActiveSupport.on_load(:action_controller) do
116 117
        include ActiveRecord::Railties::ControllerRuntime
      end
118 119
    end

120
    initializer "active_record.set_reloader_hooks" do |app|
J
Jon Leighton 已提交
121
      hook = app.config.reload_classes_only_on_change ? :to_prepare : :to_cleanup
122

J
Jon Leighton 已提交
123 124
      ActiveSupport.on_load(:active_record) do
        ActionDispatch::Reloader.send(hook) do
J
Jon Leighton 已提交
125 126
          ActiveRecord::Model.clear_reloadable_connections!
          ActiveRecord::Model.clear_cache!
127
        end
128 129 130
      end
    end

131
    initializer "active_record.add_watchable_files" do |app|
132
      config.watchable_files.concat ["#{app.root}/db/schema.rb", "#{app.root}/db/structure.sql"]
133 134
    end

135
    config.after_initialize do |app|
136
      ActiveSupport.on_load(:active_record) do
J
Jon Leighton 已提交
137
        ActiveRecord::Model.instantiate_observers
138

J
José Valim 已提交
139
        ActionDispatch::Reloader.to_prepare do
J
Jon Leighton 已提交
140
          ActiveRecord::Model.instantiate_observers
141 142
        end
      end
143

144 145
    end
  end
146
end