-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathmongoid.rb
171 lines (148 loc) · 4.4 KB
/
mongoid.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
77
78
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
165
166
167
168
169
170
171
# frozen_string_literal: true
# rubocop:todo all
require "forwardable"
require "time"
require "set"
require "active_support"
require "active_support/core_ext"
require "active_support/json"
require "active_support/inflector"
require "active_support/time_with_zone"
require "active_model"
require 'concurrent-ruby'
require "mongo"
require "mongo/active_support"
require "mongoid/version"
require "mongoid/deprecable"
require "mongoid/config"
require "mongoid/persistence_context"
require "mongoid/loadable"
require "mongoid/loggable"
require "mongoid/clients"
require "mongoid/document"
require "mongoid/tasks/database"
require "mongoid/tasks/encryption"
require "mongoid/warnings"
require "mongoid/utils"
# If we are using Rails then we will include the Mongoid railtie.
# This configures initializers required to integrate Mongoid with Rails.
if defined?(Rails)
require "mongoid/railtie"
end
# Add English locale config to load path by default.
I18n.load_path << File.join(File.dirname(__FILE__), "config", "locales", "en.yml")
# Top-level module for project.
module Mongoid
extend Forwardable
extend Loggable
extend Loadable
extend self
extend Clients::Sessions::ClassMethods
# A string added to the platform details of Ruby driver client handshake documents.
PLATFORM_DETAILS = "mongoid-#{VERSION}".freeze
# The minimum MongoDB version supported.
MONGODB_VERSION = "2.6.0"
# Sets the Mongoid configuration options. Best used by passing a block.
#
# @example Set up configuration options.
# Mongoid.configure do |config|
# config.connect_to("mongoid_test")
#
# config.clients.default = {
# hosts: ["localhost:27017"],
# database: "mongoid_test",
# }
# end
#
# @example Using a block without an argument. Use `config` inside
# the block to perform variable assignment.
#
# Mongoid.configure do
# connect_to("mongoid_test")
#
# config.preload_models = true
#
# @return [ Config ] The configuration object.
def configure(&block)
return Config unless block_given?
block.arity == 0 ? Config.instance_exec(&block) : yield(Config)
end
# Convenience method for getting the default client.
#
# @example Get the default client.
# Mongoid.default_client
#
# @return [ Mongo::Client ] The default client.
def default_client
Clients.default
end
# Disconnect all active clients.
#
# @example Disconnect all active clients.
# Mongoid.disconnect_clients
#
# @return [ true ] True.
def disconnect_clients
Clients.disconnect
end
# Reconnect all active clients.
#
# @example Reconnect all active clients.
# Mongoid.reconnect_clients
#
# @return [ true ] True.
def reconnect_clients
Clients.reconnect
end
# Convenience method for getting a named client.
#
# @example Get a named client.
# Mongoid.client(:default)
#
# @return [ Mongo::Client ] The named client.
def client(name)
Clients.with_name(name)
end
# Take all the public instance methods from the Config singleton and allow
# them to be accessed through the Mongoid module directly.
#
# @example Delegate the configuration methods.
# Mongoid.database = Mongo::Connection.new.db("test")
def_delegators Config, *(Config.public_instance_methods(false) - [ :logger=, :logger ])
# Define persistence context that is used when a transaction method is called
# on Mongoid module.
#
# @api private
def persistence_context
PersistenceContext.get(Mongoid) || PersistenceContext.new(Mongoid)
end
# Define client that is used when a transaction method is called
# on Mongoid module. This MUST be the default client.
#
# @api private
def storage_options
{ client: :default }
end
# Module used to prepend the discriminator key assignment function to change
# the value assigned to the discriminator key to a string.
#
# @api private
module GlobalDiscriminatorKeyAssignment
# This class is used for obtaining the method definition location for
# Mongoid methods.
class InvalidFieldHost
include Mongoid::Document
end
# Sets the global discriminator key name.
#
# @param [ String | Symbol ] value The new discriminator key name.
def discriminator_key=(value)
Mongoid::Fields::Validators::Macro.validate_field_name(InvalidFieldHost, value)
value = value.to_s
super
end
end
class << self
prepend GlobalDiscriminatorKeyAssignment
end
end