Class: Rails::Application::Configuration

Inherits:
Engine::Configuration show all
Defined in:
lib/rails/application/configuration.rb

Defined Under Namespace

Classes: Custom

Instance Attribute Summary collapse

Attributes inherited from Engine::Configuration

#autoload_once_paths, #autoload_paths, #eager_load_paths, #javascript_path, #middleware, #root

Instance Method Summary collapse

Methods inherited from Engine::Configuration

#generators

Methods inherited from Railtie::Configuration

#after_initialize, #app_generators, #app_middleware, #before_configuration, #before_eager_load, #before_initialize, #eager_load_namespaces, eager_load_namespaces, #respond_to?, #to_prepare, #to_prepare_blocks, #watchable_dirs, #watchable_files

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/rails/application/configuration.rb', line 26

def initialize(*)
  super
  self.encoding                            = Encoding::UTF_8
  @allow_concurrency                       = nil
  @consider_all_requests_local             = false
  @filter_parameters                       = []
  @filter_redirect                         = []
  @helpers_paths                           = []
  if Rails.env.development?
    @hosts = ActionDispatch::HostAuthorization::ALLOWED_HOSTS_IN_DEVELOPMENT.dup
  else
    @hosts = []
  end
  @public_file_server                      = ActiveSupport::OrderedOptions.new
  @public_file_server.enabled              = true
  @public_file_server.index_name           = "index"
  @force_ssl                               = false
  @ssl_options                             = {}
  @session_store                           = nil
  @time_zone                               = "UTC"
  @beginning_of_week                       = :monday
  @log_level                               = :debug
  @generators                              = app_generators
  @cache_store                             = [ :file_store, "#{root}/tmp/cache/" ]
  @railties_order                          = [:all]
  @relative_url_root                       = ENV["RAILS_RELATIVE_URL_ROOT"]
  @reload_classes_only_on_change           = true
  @file_watcher                            = ActiveSupport::FileUpdateChecker
  @exceptions_app                          = nil
  @autoflush_log                           = true
  @log_formatter                           = ActiveSupport::Logger::SimpleFormatter.new
  @eager_load                              = nil
  @secret_key_base                         = nil
  @api_only                                = false
  @debug_exception_response_format         = nil
  @x                                       = Custom.new
  @enable_dependency_loading               = false
  @read_encrypted_secrets                  = false
  @content_security_policy                 = nil
  @content_security_policy_report_only     = false
  @content_security_policy_nonce_generator = nil
  @content_security_policy_nonce_directives = nil
  @require_master_key                      = false
  @loaded_config_version                   = nil
  @credentials                             = ActiveSupport::OrderedOptions.new
  @credentials.content_path                = default_credentials_content_path
  @credentials.key_path                    = default_credentials_key_path
  @autoloader                              = :classic
  @disable_sandbox                         = false
  @add_autoload_paths_to_load_path         = true
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Rails::Railtie::Configuration

Instance Attribute Details

#add_autoload_paths_to_load_pathObject

Returns the value of attribute add_autoload_paths_to_load_path.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def add_autoload_paths_to_load_path
  @add_autoload_paths_to_load_path
end

#allow_concurrencyObject

Returns the value of attribute allow_concurrency.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def allow_concurrency
  @allow_concurrency
end

#api_onlyObject

Returns the value of attribute api_only.



24
25
26
# File 'lib/rails/application/configuration.rb', line 24

def api_only
  @api_only
end

#asset_hostObject

Returns the value of attribute asset_host.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def asset_host
  @asset_host
end

#autoflush_logObject

Returns the value of attribute autoflush_log.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def autoflush_log
  @autoflush_log
end

#autoloaderObject

Returns the value of attribute autoloader.



24
25
26
# File 'lib/rails/application/configuration.rb', line 24

def autoloader
  @autoloader
end

#beginning_of_weekObject

Returns the value of attribute beginning_of_week.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def beginning_of_week
  @beginning_of_week
end

#cache_classesObject

Returns the value of attribute cache_classes.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def cache_classes
  @cache_classes
end

#cache_storeObject

Returns the value of attribute cache_store.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def cache_store
  @cache_store
end

#consider_all_requests_localObject

Returns the value of attribute consider_all_requests_local.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def consider_all_requests_local
  @consider_all_requests_local
end

#consoleObject

Returns the value of attribute console.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def console
  @console
end

#content_security_policy_nonce_directivesObject

Returns the value of attribute content_security_policy_nonce_directives.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def content_security_policy_nonce_directives
  @content_security_policy_nonce_directives
end

#content_security_policy_nonce_generatorObject

Returns the value of attribute content_security_policy_nonce_generator.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def content_security_policy_nonce_generator
  @content_security_policy_nonce_generator
end

#content_security_policy_report_onlyObject

Returns the value of attribute content_security_policy_report_only.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def content_security_policy_report_only
  @content_security_policy_report_only
end

#credentialsObject

Returns the value of attribute credentials.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def credentials
  @credentials
end

#debug_exception_response_formatObject



181
182
183
# File 'lib/rails/application/configuration.rb', line 181

def debug_exception_response_format
  @debug_exception_response_format || :default
end

#disable_sandboxObject

Returns the value of attribute disable_sandbox.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def disable_sandbox
  @disable_sandbox
end

#eager_loadObject

Returns the value of attribute eager_load.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def eager_load
  @eager_load
end

#enable_dependency_loadingObject

Returns the value of attribute enable_dependency_loading.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def enable_dependency_loading
  @enable_dependency_loading
end

#encodingObject

Returns the value of attribute encoding.



24
25
26
# File 'lib/rails/application/configuration.rb', line 24

def encoding
  @encoding
end

#exceptions_appObject

Returns the value of attribute exceptions_app.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def exceptions_app
  @exceptions_app
end

#file_watcherObject

Returns the value of attribute file_watcher.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def file_watcher
  @file_watcher
end

#filter_parametersObject

Returns the value of attribute filter_parameters.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def filter_parameters
  @filter_parameters
end

#filter_redirectObject

Returns the value of attribute filter_redirect.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def filter_redirect
  @filter_redirect
end

#force_sslObject

Returns the value of attribute force_ssl.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def force_ssl
  @force_ssl
end

#helpers_pathsObject

Returns the value of attribute helpers_paths.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def helpers_paths
  @helpers_paths
end

#hostsObject

Returns the value of attribute hosts.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def hosts
  @hosts
end

#loaded_config_versionObject (readonly)

Returns the value of attribute loaded_config_version.



24
25
26
# File 'lib/rails/application/configuration.rb', line 24

def loaded_config_version
  @loaded_config_version
end

#log_formatterObject

Returns the value of attribute log_formatter.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def log_formatter
  @log_formatter
end

#log_levelObject

Returns the value of attribute log_level.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def log_level
  @log_level
end

#log_tagsObject

Returns the value of attribute log_tags.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def log_tags
  @log_tags
end

#loggerObject

Returns the value of attribute logger.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def logger
  @logger
end

#public_file_serverObject

Returns the value of attribute public_file_server.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def public_file_server
  @public_file_server
end

#railties_orderObject

Returns the value of attribute railties_order.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def railties_order
  @railties_order
end

#read_encrypted_secretsObject

Returns the value of attribute read_encrypted_secrets.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def read_encrypted_secrets
  @read_encrypted_secrets
end

#relative_url_rootObject

Returns the value of attribute relative_url_root.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def relative_url_root
  @relative_url_root
end

#reload_classes_only_on_changeObject

Returns the value of attribute reload_classes_only_on_change.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def reload_classes_only_on_change
  @reload_classes_only_on_change
end

#require_master_keyObject

Returns the value of attribute require_master_key.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def require_master_key
  @require_master_key
end

#secret_key_baseObject

Returns the value of attribute secret_key_base.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def secret_key_base
  @secret_key_base
end

#session_optionsObject

Returns the value of attribute session_options.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def session_options
  @session_options
end

#ssl_optionsObject

Returns the value of attribute ssl_options.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def ssl_options
  @ssl_options
end

#time_zoneObject

Returns the value of attribute time_zone.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def time_zone
  @time_zone
end

#xObject

Returns the value of attribute x.



12
13
14
# File 'lib/rails/application/configuration.rb', line 12

def x
  @x
end

Instance Method Details

#annotationsObject



297
298
299
# File 'lib/rails/application/configuration.rb', line 297

def annotations
  Rails::SourceAnnotationExtractor::Annotation
end

#colorize_loggingObject



257
258
259
# File 'lib/rails/application/configuration.rb', line 257

def colorize_logging
  ActiveSupport::LogSubscriber.colorize_logging
end

#colorize_logging=(val) ⇒ Object



261
262
263
264
# File 'lib/rails/application/configuration.rb', line 261

def colorize_logging=(val)
  ActiveSupport::LogSubscriber.colorize_logging = val
  generators.colorize_logging = val
end

#content_security_policy(&block) ⇒ Object



301
302
303
304
305
306
307
# File 'lib/rails/application/configuration.rb', line 301

def content_security_policy(&block)
  if block_given?
    @content_security_policy = ActionDispatch::ContentSecurityPolicy.new(&block)
  else
    @content_security_policy
  end
end

#database_configurationObject

Loads and returns the entire raw configuration of database from values stored in config/database.yml.



225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/rails/application/configuration.rb', line 225

def database_configuration
  path = paths["config/database"].existent.first
  yaml = Pathname.new(path) if path

  config = if yaml && yaml.exist?
    require "yaml"
    require "erb"
    loaded_yaml = YAML.load(ERB.new(yaml.read).result) || {}
    shared = loaded_yaml.delete("shared")
    if shared
      loaded_yaml.each do |_k, values|
        values.reverse_merge!(shared)
      end
    end
    Hash.new(shared).merge(loaded_yaml)
  elsif ENV["DATABASE_URL"]
    # Value from ENV['DATABASE_URL'] is set to default database connection
    # by Active Record.
    {}
  else
    raise "Could not load database configuration. No such file - #{paths["config/database"].instance_variable_get(:@paths)}"
  end

  config
rescue Psych::SyntaxError => e
  raise "YAML syntax error occurred while parsing #{paths["config/database"].first}. " \
        "Please note that YAML must be consistently indented using spaces. Tabs are not allowed. " \
        "Error: #{e.message}"
rescue => e
  raise e, "Cannot load database configuration:\n#{e.message}", e.backtrace
end

#default_log_fileObject



321
322
323
324
325
326
327
328
329
330
331
# File 'lib/rails/application/configuration.rb', line 321

def default_log_file
  path = paths["log"].first
  unless File.exist? File.dirname path
    FileUtils.mkdir_p File.dirname path
  end

  f = File.open path, "a"
  f.binmode
  f.sync = autoflush_log # if true make sure every write flushes
  f
end

#load_database_yamlObject

Load the database YAML without evaluating ERB. This allows us to create the rake tasks for multiple databases without filling in the configuration values or loading the environment. Do not use this method.

This uses a DummyERB custom compiler so YAML can ignore the ERB tags and load the database.yml for the rake tasks.



210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/rails/application/configuration.rb', line 210

def load_database_yaml # :nodoc:
  if path = paths["config/database"].existent.first
    require "rails/application/dummy_erb_compiler"

    yaml = Pathname.new(path)
    erb = DummyERB.new(yaml.read)

    YAML.load(erb.result) || {}
  else
    {}
  end
end

#load_defaults(target_version) ⇒ Object

Loads default configurations. See the result of the method for each version.



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/rails/application/configuration.rb', line 79

def load_defaults(target_version)
  case target_version.to_s
  when "5.0"
    if respond_to?(:action_controller)
      action_controller.per_form_csrf_tokens = true
      action_controller.forgery_protection_origin_check = true
    end

    ActiveSupport.to_time_preserves_timezone = true

    if respond_to?(:active_record)
      active_record.belongs_to_required_by_default = true
    end

    self.ssl_options = { hsts: { subdomains: true } }
  when "5.1"
    load_defaults "5.0"

    if respond_to?(:assets)
      assets.unknown_asset_fallback = false
    end

    if respond_to?(:action_view)
      action_view.form_with_generates_remote_forms = true
    end
  when "5.2"
    load_defaults "5.1"

    if respond_to?(:active_record)
      active_record.cache_versioning = true
    end

    if respond_to?(:action_dispatch)
      action_dispatch.use_authenticated_cookie_encryption = true
    end

    if respond_to?(:active_support)
      active_support.use_authenticated_message_encryption = true
      active_support.use_sha1_digests = true
    end

    if respond_to?(:action_controller)
      action_controller.default_protect_from_forgery = true
    end

    if respond_to?(:action_view)
      action_view.form_with_generates_ids = true
    end
  when "6.0"
    load_defaults "5.2"

    self.autoloader = :zeitwerk if RUBY_ENGINE == "ruby"

    if respond_to?(:action_view)
      action_view.default_enforce_utf8 = false
    end

    if respond_to?(:action_dispatch)
      action_dispatch. = true
      action_dispatch.return_only_media_type_on_content_type = false
    end

    if respond_to?(:action_mailer)
      action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"
    end

    if respond_to?(:active_job)
      active_job.return_false_on_aborted_enqueue = true
    end

    if respond_to?(:active_storage)
      active_storage.queues.analysis = :active_storage_analysis
      active_storage.queues.purge    = :active_storage_purge

      active_storage.replace_on_assign_to_many = true
    end

    if respond_to?(:active_record)
      active_record.collection_cache_versioning = true
    end
  else
    raise "Unknown version #{target_version.to_s.inspect}"
  end

  @loaded_config_version = target_version
end

#pathsObject



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/rails/application/configuration.rb', line 187

def paths
  @paths ||= begin
    paths = super
    paths.add "config/database",    with: "config/database.yml"
    paths.add "config/secrets",     with: "config", glob: "secrets.yml{,.enc}"
    paths.add "config/environment", with: "config/environment.rb"
    paths.add "lib/templates"
    paths.add "log",                with: "log/#{Rails.env}.log"
    paths.add "public"
    paths.add "public/javascripts"
    paths.add "public/stylesheets"
    paths.add "tmp"
    paths
  end
end

#session_store(new_session_store = nil, **options) ⇒ Object



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/rails/application/configuration.rb', line 266

def session_store(new_session_store = nil, **options)
  if new_session_store
    if new_session_store == :active_record_store
      begin
        ActionDispatch::Session::ActiveRecordStore
      rescue NameError
        raise "`ActiveRecord::SessionStore` is extracted out of Rails into a gem. " \
          "Please add `activerecord-session_store` to your Gemfile to use it."
      end
    end

    @session_store = new_session_store
    @session_options = options || {}
  else
    case @session_store
    when :disabled
      nil
    when :active_record_store
      ActionDispatch::Session::ActiveRecordStore
    when Symbol
      ActionDispatch::Session.const_get(@session_store.to_s.camelize)
    else
      @session_store
    end
  end
end

#session_store?Boolean

:nodoc:

Returns:

  • (Boolean)


293
294
295
# File 'lib/rails/application/configuration.rb', line 293

def session_store? #:nodoc:
  @session_store
end