Module: Mongoid::Config
- Included in:
- Config
- Defined in:
- lib/mongoid/config.rb,
lib/mongoid/config/options.rb,
lib/mongoid/config/environment.rb,
lib/mongoid/config/validators/client.rb,
lib/mongoid/config/validators/option.rb
Overview
This module defines all the configuration options for Mongoid, including the database connections.
Defined Under Namespace
Modules: Environment, Options, Validators
Constant Summary collapse
- LOCK =
Mutex.new
Instance Method Summary collapse
-
#clients ⇒ Hash
Get the client configuration or an empty hash.
-
#configured? ⇒ true, false
Has Mongoid been configured? This is checking that at least a valid client config exists.
-
#connect_to(name, options = { read: { mode: :primary }}) ⇒ Object
Connect to the provided database name on the default client.
-
#destructive_fields ⇒ Array<String>
Return field names that could cause destructive things to happen if defined in a Mongoid::Document.
-
#load!(path, environment = nil) ⇒ Object
Load the settings from a compliant mongoid.yml file.
-
#load_configuration(settings) ⇒ Object
From a hash of settings, load all the configuration.
-
#models ⇒ Array<Class>
Get all the models in the application - this is everything that includes Mongoid::Document.
-
#options=(options) ⇒ Object
Set the configuration options.
-
#override_client(name) ⇒ String, Symbol
Override the client to use globally.
-
#override_database(name) ⇒ String, Symbol
Override the database to use globally.
-
#purge! ⇒ true
Purge all data in all collections, including indexes.
-
#register_model(klass) ⇒ Object
Register a model in the application with Mongoid.
-
#running_with_passenger? ⇒ true, false
Is the application running under passenger?.
-
#time_zone ⇒ String
Get the time zone to use.
-
#truncate! ⇒ true
Truncate all data in all collections, but not the indexes.
Methods included from Options
defaults, log_level, option, reset, settings
Instance Method Details
#clients ⇒ Hash
Get the client configuration or an empty hash.
220 221 222 |
# File 'lib/mongoid/config.rb', line 220 def clients @clients ||= {} end |
#configured? ⇒ true, false
Has Mongoid been configured? This is checking that at least a valid client config exists.
40 41 42 |
# File 'lib/mongoid/config.rb', line 40 def configured? clients.key?(:default) end |
#connect_to(name, options = { read: { mode: :primary }}) ⇒ Object
Use only in development or test environments for convenience.
Connect to the provided database name on the default client.
54 55 56 57 58 59 60 61 62 |
# File 'lib/mongoid/config.rb', line 54 def connect_to(name, = { read: { mode: :primary }}) self.clients = { default: { database: name, hosts: [ "localhost:27017" ], options: } } end |
#destructive_fields ⇒ Array<String>
Return field names that could cause destructive things to happen if defined in a Mongoid::Document.
71 72 73 |
# File 'lib/mongoid/config.rb', line 71 def destructive_fields Composable.prohibited_methods end |
#load!(path, environment = nil) ⇒ Object
Load the settings from a compliant mongoid.yml file. This can be used for easy setup with frameworks other than Rails.
85 86 87 88 89 90 91 92 93 |
# File 'lib/mongoid/config.rb', line 85 def load!(path, environment = nil) settings = Environment.load_yaml(path, environment) if settings.present? Clients.disconnect Clients.clear load_configuration(settings) end settings end |
#load_configuration(settings) ⇒ Object
From a hash of settings, load all the configuration.
130 131 132 133 134 135 |
# File 'lib/mongoid/config.rb', line 130 def load_configuration(settings) configuration = settings.with_indifferent_access self. = configuration[:options] self.clients = configuration[:clients] set_log_levels end |
#models ⇒ Array<Class>
Get all the models in the application - this is everything that includes Mongoid::Document.
104 105 106 |
# File 'lib/mongoid/config.rb', line 104 def models @models ||= [] end |
#options=(options) ⇒ Object
Set the configuration options. Will validate each one individually.
203 204 205 206 207 208 209 210 |
# File 'lib/mongoid/config.rb', line 203 def () if .each_pair do |option, value| Validators::Option.validate(option) send("#{option}=", value) end end end |
#override_client(name) ⇒ String, Symbol
Override the client to use globally.
161 162 163 |
# File 'lib/mongoid/config.rb', line 161 def override_client(name) Threaded.client_override = name ? name.to_s : nil end |
#override_database(name) ⇒ String, Symbol
Override the database to use globally.
147 148 149 |
# File 'lib/mongoid/config.rb', line 147 def override_database(name) Threaded.database_override = name end |
#purge! ⇒ true
This is the fastest way to drop all data.
Purge all data in all collections, including indexes.
175 176 177 |
# File 'lib/mongoid/config.rb', line 175 def purge! Clients.default.database.collections.each(&:drop) and true end |
#register_model(klass) ⇒ Object
Register a model in the application with Mongoid.
116 117 118 119 120 |
# File 'lib/mongoid/config.rb', line 116 def register_model(klass) LOCK.synchronize do models.push(klass) unless models.include?(klass) end end |
#running_with_passenger? ⇒ true, false
Is the application running under passenger?
244 245 246 |
# File 'lib/mongoid/config.rb', line 244 def running_with_passenger? @running_with_passenger ||= defined?(PhusionPassenger) end |
#time_zone ⇒ String
Get the time zone to use.
232 233 234 |
# File 'lib/mongoid/config.rb', line 232 def time_zone use_utc? ? "UTC" : ::Time.zone end |