mongoid-multi-db 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (276) hide show
  1. data/CHANGELOG.md +615 -0
  2. data/LICENSE +20 -0
  3. data/README.md +62 -0
  4. data/Rakefile +49 -0
  5. data/lib/config/locales/bg.yml +54 -0
  6. data/lib/config/locales/de.yml +54 -0
  7. data/lib/config/locales/en-GB.yml +55 -0
  8. data/lib/config/locales/en.yml +55 -0
  9. data/lib/config/locales/es.yml +52 -0
  10. data/lib/config/locales/fr.yml +55 -0
  11. data/lib/config/locales/hi.yml +46 -0
  12. data/lib/config/locales/hu.yml +57 -0
  13. data/lib/config/locales/id.yml +55 -0
  14. data/lib/config/locales/it.yml +52 -0
  15. data/lib/config/locales/ja.yml +50 -0
  16. data/lib/config/locales/kr.yml +47 -0
  17. data/lib/config/locales/nl.yml +52 -0
  18. data/lib/config/locales/pl.yml +52 -0
  19. data/lib/config/locales/pt-BR.yml +53 -0
  20. data/lib/config/locales/pt.yml +53 -0
  21. data/lib/config/locales/ro.yml +59 -0
  22. data/lib/config/locales/ru.yml +54 -0
  23. data/lib/config/locales/sv.yml +53 -0
  24. data/lib/config/locales/vi.yml +55 -0
  25. data/lib/config/locales/zh-CN.yml +46 -0
  26. data/lib/mongoid.rb +148 -0
  27. data/lib/mongoid/atomic.rb +230 -0
  28. data/lib/mongoid/atomic/modifiers.rb +243 -0
  29. data/lib/mongoid/atomic/paths.rb +3 -0
  30. data/lib/mongoid/atomic/paths/embedded.rb +43 -0
  31. data/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
  32. data/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
  33. data/lib/mongoid/atomic/paths/root.rb +40 -0
  34. data/lib/mongoid/attributes.rb +234 -0
  35. data/lib/mongoid/attributes/processing.rb +146 -0
  36. data/lib/mongoid/callbacks.rb +135 -0
  37. data/lib/mongoid/collection.rb +153 -0
  38. data/lib/mongoid/collection_proxy.rb +59 -0
  39. data/lib/mongoid/collections.rb +120 -0
  40. data/lib/mongoid/collections/master.rb +45 -0
  41. data/lib/mongoid/collections/operations.rb +44 -0
  42. data/lib/mongoid/collections/retry.rb +46 -0
  43. data/lib/mongoid/components.rb +96 -0
  44. data/lib/mongoid/config.rb +347 -0
  45. data/lib/mongoid/config/database.rb +186 -0
  46. data/lib/mongoid/config/replset_database.rb +82 -0
  47. data/lib/mongoid/connection_proxy.rb +30 -0
  48. data/lib/mongoid/contexts.rb +25 -0
  49. data/lib/mongoid/contexts/enumerable.rb +288 -0
  50. data/lib/mongoid/contexts/enumerable/sort.rb +43 -0
  51. data/lib/mongoid/contexts/mongo.rb +409 -0
  52. data/lib/mongoid/copyable.rb +48 -0
  53. data/lib/mongoid/criteria.rb +418 -0
  54. data/lib/mongoid/criterion/builder.rb +34 -0
  55. data/lib/mongoid/criterion/complex.rb +84 -0
  56. data/lib/mongoid/criterion/creational.rb +34 -0
  57. data/lib/mongoid/criterion/exclusion.rb +108 -0
  58. data/lib/mongoid/criterion/inclusion.rb +305 -0
  59. data/lib/mongoid/criterion/inspection.rb +22 -0
  60. data/lib/mongoid/criterion/optional.rb +232 -0
  61. data/lib/mongoid/criterion/selector.rb +153 -0
  62. data/lib/mongoid/cursor.rb +86 -0
  63. data/lib/mongoid/database_proxy.rb +97 -0
  64. data/lib/mongoid/default_scope.rb +36 -0
  65. data/lib/mongoid/dirty.rb +110 -0
  66. data/lib/mongoid/document.rb +280 -0
  67. data/lib/mongoid/errors.rb +17 -0
  68. data/lib/mongoid/errors/callback.rb +26 -0
  69. data/lib/mongoid/errors/document_not_found.rb +28 -0
  70. data/lib/mongoid/errors/eager_load.rb +25 -0
  71. data/lib/mongoid/errors/invalid_collection.rb +18 -0
  72. data/lib/mongoid/errors/invalid_database.rb +19 -0
  73. data/lib/mongoid/errors/invalid_field.rb +18 -0
  74. data/lib/mongoid/errors/invalid_find.rb +19 -0
  75. data/lib/mongoid/errors/invalid_options.rb +28 -0
  76. data/lib/mongoid/errors/invalid_time.rb +25 -0
  77. data/lib/mongoid/errors/invalid_type.rb +25 -0
  78. data/lib/mongoid/errors/mixed_relations.rb +37 -0
  79. data/lib/mongoid/errors/mongoid_error.rb +26 -0
  80. data/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
  81. data/lib/mongoid/errors/unsaved_document.rb +23 -0
  82. data/lib/mongoid/errors/unsupported_version.rb +20 -0
  83. data/lib/mongoid/errors/validations.rb +23 -0
  84. data/lib/mongoid/extensions.rb +82 -0
  85. data/lib/mongoid/extensions/array/deletion.rb +29 -0
  86. data/lib/mongoid/extensions/false_class/equality.rb +26 -0
  87. data/lib/mongoid/extensions/hash/criteria_helpers.rb +45 -0
  88. data/lib/mongoid/extensions/hash/scoping.rb +25 -0
  89. data/lib/mongoid/extensions/integer/checks.rb +23 -0
  90. data/lib/mongoid/extensions/nil/collectionization.rb +23 -0
  91. data/lib/mongoid/extensions/object/checks.rb +29 -0
  92. data/lib/mongoid/extensions/object/reflections.rb +48 -0
  93. data/lib/mongoid/extensions/object/substitutable.rb +15 -0
  94. data/lib/mongoid/extensions/object/yoda.rb +44 -0
  95. data/lib/mongoid/extensions/object_id/conversions.rb +60 -0
  96. data/lib/mongoid/extensions/proc/scoping.rb +25 -0
  97. data/lib/mongoid/extensions/string/checks.rb +36 -0
  98. data/lib/mongoid/extensions/string/conversions.rb +22 -0
  99. data/lib/mongoid/extensions/string/inflections.rb +118 -0
  100. data/lib/mongoid/extensions/symbol/checks.rb +23 -0
  101. data/lib/mongoid/extensions/symbol/inflections.rb +66 -0
  102. data/lib/mongoid/extensions/true_class/equality.rb +26 -0
  103. data/lib/mongoid/extras.rb +31 -0
  104. data/lib/mongoid/factory.rb +46 -0
  105. data/lib/mongoid/fields.rb +332 -0
  106. data/lib/mongoid/fields/mappings.rb +41 -0
  107. data/lib/mongoid/fields/serializable.rb +201 -0
  108. data/lib/mongoid/fields/serializable/array.rb +49 -0
  109. data/lib/mongoid/fields/serializable/big_decimal.rb +42 -0
  110. data/lib/mongoid/fields/serializable/bignum.rb +10 -0
  111. data/lib/mongoid/fields/serializable/binary.rb +11 -0
  112. data/lib/mongoid/fields/serializable/boolean.rb +43 -0
  113. data/lib/mongoid/fields/serializable/date.rb +51 -0
  114. data/lib/mongoid/fields/serializable/date_time.rb +28 -0
  115. data/lib/mongoid/fields/serializable/fixnum.rb +10 -0
  116. data/lib/mongoid/fields/serializable/float.rb +32 -0
  117. data/lib/mongoid/fields/serializable/foreign_keys/array.rb +42 -0
  118. data/lib/mongoid/fields/serializable/foreign_keys/object.rb +47 -0
  119. data/lib/mongoid/fields/serializable/hash.rb +11 -0
  120. data/lib/mongoid/fields/serializable/integer.rb +44 -0
  121. data/lib/mongoid/fields/serializable/localized.rb +41 -0
  122. data/lib/mongoid/fields/serializable/nil_class.rb +38 -0
  123. data/lib/mongoid/fields/serializable/object.rb +11 -0
  124. data/lib/mongoid/fields/serializable/object_id.rb +31 -0
  125. data/lib/mongoid/fields/serializable/range.rb +42 -0
  126. data/lib/mongoid/fields/serializable/set.rb +42 -0
  127. data/lib/mongoid/fields/serializable/string.rb +27 -0
  128. data/lib/mongoid/fields/serializable/symbol.rb +27 -0
  129. data/lib/mongoid/fields/serializable/time.rb +23 -0
  130. data/lib/mongoid/fields/serializable/time_with_zone.rb +23 -0
  131. data/lib/mongoid/fields/serializable/timekeeping.rb +106 -0
  132. data/lib/mongoid/finders.rb +152 -0
  133. data/lib/mongoid/hierarchy.rb +120 -0
  134. data/lib/mongoid/identity.rb +92 -0
  135. data/lib/mongoid/identity_map.rb +119 -0
  136. data/lib/mongoid/indexes.rb +54 -0
  137. data/lib/mongoid/inspection.rb +54 -0
  138. data/lib/mongoid/javascript.rb +20 -0
  139. data/lib/mongoid/javascript/functions.yml +63 -0
  140. data/lib/mongoid/json.rb +16 -0
  141. data/lib/mongoid/keys.rb +144 -0
  142. data/lib/mongoid/logger.rb +39 -0
  143. data/lib/mongoid/matchers.rb +32 -0
  144. data/lib/mongoid/matchers/all.rb +21 -0
  145. data/lib/mongoid/matchers/and.rb +30 -0
  146. data/lib/mongoid/matchers/default.rb +70 -0
  147. data/lib/mongoid/matchers/exists.rb +23 -0
  148. data/lib/mongoid/matchers/gt.rb +21 -0
  149. data/lib/mongoid/matchers/gte.rb +21 -0
  150. data/lib/mongoid/matchers/in.rb +21 -0
  151. data/lib/mongoid/matchers/lt.rb +21 -0
  152. data/lib/mongoid/matchers/lte.rb +21 -0
  153. data/lib/mongoid/matchers/ne.rb +21 -0
  154. data/lib/mongoid/matchers/nin.rb +21 -0
  155. data/lib/mongoid/matchers/or.rb +33 -0
  156. data/lib/mongoid/matchers/size.rb +21 -0
  157. data/lib/mongoid/matchers/strategies.rb +93 -0
  158. data/lib/mongoid/multi_database.rb +31 -0
  159. data/lib/mongoid/multi_parameter_attributes.rb +106 -0
  160. data/lib/mongoid/named_scope.rb +146 -0
  161. data/lib/mongoid/nested_attributes.rb +54 -0
  162. data/lib/mongoid/observer.rb +170 -0
  163. data/lib/mongoid/paranoia.rb +158 -0
  164. data/lib/mongoid/persistence.rb +264 -0
  165. data/lib/mongoid/persistence/atomic.rb +223 -0
  166. data/lib/mongoid/persistence/atomic/add_to_set.rb +35 -0
  167. data/lib/mongoid/persistence/atomic/bit.rb +37 -0
  168. data/lib/mongoid/persistence/atomic/inc.rb +31 -0
  169. data/lib/mongoid/persistence/atomic/operation.rb +85 -0
  170. data/lib/mongoid/persistence/atomic/pop.rb +34 -0
  171. data/lib/mongoid/persistence/atomic/pull.rb +34 -0
  172. data/lib/mongoid/persistence/atomic/pull_all.rb +34 -0
  173. data/lib/mongoid/persistence/atomic/push.rb +31 -0
  174. data/lib/mongoid/persistence/atomic/push_all.rb +31 -0
  175. data/lib/mongoid/persistence/atomic/rename.rb +31 -0
  176. data/lib/mongoid/persistence/atomic/sets.rb +30 -0
  177. data/lib/mongoid/persistence/atomic/unset.rb +28 -0
  178. data/lib/mongoid/persistence/deletion.rb +32 -0
  179. data/lib/mongoid/persistence/insertion.rb +41 -0
  180. data/lib/mongoid/persistence/modification.rb +37 -0
  181. data/lib/mongoid/persistence/operations.rb +211 -0
  182. data/lib/mongoid/persistence/operations/embedded/insert.rb +42 -0
  183. data/lib/mongoid/persistence/operations/embedded/remove.rb +40 -0
  184. data/lib/mongoid/persistence/operations/insert.rb +34 -0
  185. data/lib/mongoid/persistence/operations/remove.rb +33 -0
  186. data/lib/mongoid/persistence/operations/update.rb +64 -0
  187. data/lib/mongoid/railtie.rb +126 -0
  188. data/lib/mongoid/railties/database.rake +182 -0
  189. data/lib/mongoid/railties/document.rb +12 -0
  190. data/lib/mongoid/relations.rb +144 -0
  191. data/lib/mongoid/relations/accessors.rb +138 -0
  192. data/lib/mongoid/relations/auto_save.rb +38 -0
  193. data/lib/mongoid/relations/binding.rb +26 -0
  194. data/lib/mongoid/relations/bindings.rb +9 -0
  195. data/lib/mongoid/relations/bindings/embedded/in.rb +69 -0
  196. data/lib/mongoid/relations/bindings/embedded/many.rb +93 -0
  197. data/lib/mongoid/relations/bindings/embedded/one.rb +61 -0
  198. data/lib/mongoid/relations/bindings/referenced/in.rb +76 -0
  199. data/lib/mongoid/relations/bindings/referenced/many.rb +54 -0
  200. data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +51 -0
  201. data/lib/mongoid/relations/bindings/referenced/one.rb +58 -0
  202. data/lib/mongoid/relations/builder.rb +57 -0
  203. data/lib/mongoid/relations/builders.rb +83 -0
  204. data/lib/mongoid/relations/builders/embedded/in.rb +29 -0
  205. data/lib/mongoid/relations/builders/embedded/many.rb +40 -0
  206. data/lib/mongoid/relations/builders/embedded/one.rb +30 -0
  207. data/lib/mongoid/relations/builders/nested_attributes/many.rb +110 -0
  208. data/lib/mongoid/relations/builders/nested_attributes/one.rb +135 -0
  209. data/lib/mongoid/relations/builders/referenced/in.rb +26 -0
  210. data/lib/mongoid/relations/builders/referenced/many.rb +27 -0
  211. data/lib/mongoid/relations/builders/referenced/many_to_many.rb +38 -0
  212. data/lib/mongoid/relations/builders/referenced/one.rb +26 -0
  213. data/lib/mongoid/relations/cascading.rb +56 -0
  214. data/lib/mongoid/relations/cascading/delete.rb +19 -0
  215. data/lib/mongoid/relations/cascading/destroy.rb +26 -0
  216. data/lib/mongoid/relations/cascading/nullify.rb +18 -0
  217. data/lib/mongoid/relations/cascading/strategy.rb +26 -0
  218. data/lib/mongoid/relations/constraint.rb +42 -0
  219. data/lib/mongoid/relations/conversions.rb +35 -0
  220. data/lib/mongoid/relations/cyclic.rb +103 -0
  221. data/lib/mongoid/relations/embedded/atomic.rb +89 -0
  222. data/lib/mongoid/relations/embedded/atomic/operation.rb +63 -0
  223. data/lib/mongoid/relations/embedded/atomic/pull.rb +65 -0
  224. data/lib/mongoid/relations/embedded/atomic/push_all.rb +59 -0
  225. data/lib/mongoid/relations/embedded/atomic/set.rb +61 -0
  226. data/lib/mongoid/relations/embedded/atomic/unset.rb +41 -0
  227. data/lib/mongoid/relations/embedded/in.rb +220 -0
  228. data/lib/mongoid/relations/embedded/many.rb +560 -0
  229. data/lib/mongoid/relations/embedded/one.rb +206 -0
  230. data/lib/mongoid/relations/embedded/sort.rb +31 -0
  231. data/lib/mongoid/relations/macros.rb +310 -0
  232. data/lib/mongoid/relations/many.rb +135 -0
  233. data/lib/mongoid/relations/metadata.rb +919 -0
  234. data/lib/mongoid/relations/nested_builder.rb +75 -0
  235. data/lib/mongoid/relations/one.rb +36 -0
  236. data/lib/mongoid/relations/options.rb +47 -0
  237. data/lib/mongoid/relations/polymorphic.rb +40 -0
  238. data/lib/mongoid/relations/proxy.rb +145 -0
  239. data/lib/mongoid/relations/referenced/batch.rb +72 -0
  240. data/lib/mongoid/relations/referenced/batch/insert.rb +57 -0
  241. data/lib/mongoid/relations/referenced/in.rb +262 -0
  242. data/lib/mongoid/relations/referenced/many.rb +623 -0
  243. data/lib/mongoid/relations/referenced/many_to_many.rb +396 -0
  244. data/lib/mongoid/relations/referenced/one.rb +272 -0
  245. data/lib/mongoid/relations/reflections.rb +62 -0
  246. data/lib/mongoid/relations/synchronization.rb +153 -0
  247. data/lib/mongoid/relations/targets.rb +2 -0
  248. data/lib/mongoid/relations/targets/enumerable.rb +372 -0
  249. data/lib/mongoid/reloading.rb +91 -0
  250. data/lib/mongoid/safety.rb +105 -0
  251. data/lib/mongoid/scope.rb +31 -0
  252. data/lib/mongoid/serialization.rb +134 -0
  253. data/lib/mongoid/sharding.rb +61 -0
  254. data/lib/mongoid/state.rb +97 -0
  255. data/lib/mongoid/threaded.rb +530 -0
  256. data/lib/mongoid/threaded/lifecycle.rb +192 -0
  257. data/lib/mongoid/timestamps.rb +15 -0
  258. data/lib/mongoid/timestamps/created.rb +24 -0
  259. data/lib/mongoid/timestamps/timeless.rb +50 -0
  260. data/lib/mongoid/timestamps/updated.rb +26 -0
  261. data/lib/mongoid/validations.rb +140 -0
  262. data/lib/mongoid/validations/associated.rb +46 -0
  263. data/lib/mongoid/validations/uniqueness.rb +145 -0
  264. data/lib/mongoid/version.rb +4 -0
  265. data/lib/mongoid/versioning.rb +185 -0
  266. data/lib/rack/mongoid.rb +2 -0
  267. data/lib/rack/mongoid/middleware/identity_map.rb +38 -0
  268. data/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
  269. data/lib/rails/generators/mongoid/config/templates/mongoid.yml +20 -0
  270. data/lib/rails/generators/mongoid/model/model_generator.rb +24 -0
  271. data/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
  272. data/lib/rails/generators/mongoid/observer/observer_generator.rb +17 -0
  273. data/lib/rails/generators/mongoid/observer/templates/observer.rb.tt +4 -0
  274. data/lib/rails/generators/mongoid_generator.rb +70 -0
  275. data/lib/rails/mongoid.rb +91 -0
  276. metadata +465 -0
@@ -0,0 +1,34 @@
1
+ # encoding: utf-8
2
+ module Mongoid #:nodoc:
3
+ module Criterion #:nodoc:
4
+
5
+ # This module defines criteria behavior for building documents for
6
+ # specified conditions.
7
+ module Builder
8
+
9
+ # Build a document given the selector and return it.
10
+ # Complex criteria, such as $in and $or operations will get ignored.
11
+ #
12
+ # @example build the document.
13
+ # Person.where(:title => "Sir").build
14
+ #
15
+ # @example Build with selectors getting ignored.
16
+ # Person.where(:age.gt => 5).build
17
+ #
18
+ # @return [ Document ] A non-persisted document.
19
+ #
20
+ # @since 2.0.0
21
+ def build(attrs = {})
22
+ klass.new(
23
+ selector.inject(attrs) do |hash, (key, value)|
24
+ hash.tap do |attrs|
25
+ unless key.to_s =~ /\$/ || value.is_a?(Hash)
26
+ attrs[key] = value
27
+ end
28
+ end
29
+ end
30
+ )
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,84 @@
1
+ # encoding: utf-8
2
+ module Mongoid #:nodoc:
3
+ module Criterion #:nodoc:
4
+
5
+ # Complex criterion are used when performing operations on symbols to get
6
+ # get a shorthand syntax for where clauses.
7
+ #
8
+ # @example Conversion of a simple to complex criterion.
9
+ # { :field => { "$lt" => "value" } }
10
+ # becomes:
11
+ # { :field.lt => "value }
12
+ class Complex
13
+ attr_accessor :key, :operator
14
+
15
+ # Create the new complex criterion.
16
+ #
17
+ # @example Instantiate a new complex criterion.
18
+ # Complex.new(:key => :field, :operator => "$gt")
19
+ #
20
+ # @param [ Hash ] opts The options to convert.
21
+ def initialize(opts = {})
22
+ @key, @operator = opts[:key], opts[:operator]
23
+ end
24
+
25
+ # Get the criterion as a hash.
26
+ #
27
+ # @example Get the criterion as a hash.
28
+ # criterion.hash
29
+ #
30
+ # @return [ Hash ] The keys and operators.
31
+ def hash
32
+ [@key, @operator].hash
33
+ end
34
+
35
+ # Create a mongo query with given value
36
+ #
37
+ # @example Create query
38
+ # criterion.to_mongo_hash(value)
39
+ #
40
+ # @params [] Whatever is a valid input for given operator
41
+ # @return [ Hash ] The query
42
+ def to_mongo_query(v)
43
+ {"$#{self.operator}" => v}
44
+ end
45
+
46
+ # Is the criterion equal to the other?
47
+ #
48
+ # @example Check equality.
49
+ # criterion.eql?(other)
50
+ #
51
+ # @param [ Complex ] other The other complex criterion.
52
+ #
53
+ # @return [ true, false ] If they are equal.
54
+ def eql?(other)
55
+ self == (other)
56
+ end
57
+
58
+ # Is the criterion equal to the other?
59
+ #
60
+ # @example Check equality.
61
+ # criterion == other
62
+ #
63
+ # @param [ Complex ] other The other complex criterion.
64
+ #
65
+ # @return [ true, false ] If they are equal.
66
+ def ==(other)
67
+ return false unless other.is_a?(self.class)
68
+ self.key == other.key && self.operator == other.operator
69
+ end
70
+
71
+ # Returns the name of the key as a string.
72
+ #
73
+ # @example Get the name of the key.
74
+ # criterion.to_s
75
+ #
76
+ # @return [ String ] The field name.
77
+ #
78
+ # @since 2.1.0
79
+ def to_s
80
+ key.to_s
81
+ end
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,34 @@
1
+ # encoding: utf-8
2
+ module Mongoid #:nodoc:
3
+ module Criterion #:nodoc:
4
+
5
+ # This module defines criteria behavior for creating documents in the
6
+ # database for specified conditions.
7
+ module Creational
8
+
9
+ # Create a document in the database given the selector and return it.
10
+ # Complex criteria, such as $in and $or operations will get ignored.
11
+ #
12
+ # @example Create the document.
13
+ # Person.where(:title => "Sir").create
14
+ #
15
+ # @example Create with selectors getting ignored.
16
+ # Person.where(:age.gt => 5).create
17
+ #
18
+ # @return [ Document ] A newly created document.
19
+ #
20
+ # @since 2.0.0.rc.1
21
+ def create(attrs = {})
22
+ klass.create(
23
+ selector.inject(attrs) do |hash, (key, value)|
24
+ hash.tap do |attrs|
25
+ unless key.to_s =~ /\$/ || value.is_a?(Hash)
26
+ attrs[key] = value
27
+ end
28
+ end
29
+ end
30
+ )
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,108 @@
1
+ # encoding: utf-8
2
+ module Mongoid #:nodoc:
3
+ module Criterion #:nodoc:
4
+
5
+ # This module contains criteria behaviour for exclusion of values.
6
+ module Exclusion
7
+
8
+ # Adds a criterion to the +Criteria+ that specifies values that are not
9
+ # allowed to match any document in the database. The MongoDB
10
+ # conditional operator that will be used is "$ne".
11
+ #
12
+ # @example Match documents without these values.
13
+ # criteria.excludes(:field => "value1")
14
+ # criteria.excludes(:field1 => "value1", :field2 => "value1")
15
+ #
16
+ # @param [ Hash ] attributes: A +Hash+ where the key is the field
17
+ # name and the value is a value that must not be equal to the
18
+ # corresponding field value in the database.
19
+ #
20
+ # @return [ Criteria ] A newly cloned copy.
21
+ def excludes(attributes = {})
22
+ mongo_id = attributes.delete(:id)
23
+ attributes = attributes.merge(:_id => mongo_id) if mongo_id
24
+ update_selector(attributes, "$ne")
25
+ end
26
+
27
+ # Used when wanting to set the fields options directly using a hash
28
+ # instead of going through only or without.
29
+ #
30
+ # @example Set the limited fields.
31
+ # criteria.fields(:field => 1)
32
+ #
33
+ # @param [ Hash ] attributes The field options.
34
+ #
35
+ # @return [ Criteria ] A newly cloned copy.
36
+ #
37
+ # @since 2.0.2
38
+ def fields(attributes = nil)
39
+ clone.tap { |crit| crit.options[:fields] = attributes || {} }
40
+ end
41
+
42
+ # Adds a criterion to the +Criteria+ that specifies values where none
43
+ # should match in order to return results. This is similar to an SQL
44
+ # "NOT IN" clause. The MongoDB conditional operator that will be
45
+ # used is "$nin".
46
+ #
47
+ # @example Match documents with values not in the provided.
48
+ # criteria.not_in(:field => ["value1", "value2"])
49
+ # criteria.not_in(:field1 => ["value1", "value2"], :field2 => ["value1"])
50
+ #
51
+ # @param [ Hash ] attributes A +Hash+ where the key is the field name
52
+ # and the value is an +Array+ of values that none can match.
53
+ #
54
+ # @return [ Criteria ] A newly cloned copy.
55
+ def not_in(attributes)
56
+ update_selector(attributes, "$nin")
57
+ end
58
+
59
+ # Adds a criterion to the +Criteria+ that specifies the fields that will
60
+ # get returned from the Document. Used mainly for list views that do not
61
+ # require all fields to be present. This is similar to SQL "SELECT" values.
62
+ #
63
+ # @example Limit the fields to only the specified.
64
+ # criteria.only(:field1, :field2, :field3)
65
+ #
66
+ # @note #only and #without cannot be used together.
67
+ #
68
+ # @param [ Array<Symbol> ] args A list of field names to limit to.
69
+ #
70
+ # @return [ Criteria ] A newly cloned copy.
71
+ def only(*args)
72
+ clone.tap do |crit|
73
+ if args.any?
74
+ crit.options[:fields] = {:_type => 1}
75
+ crit.field_list = args.flatten
76
+ crit.field_list.each do |f|
77
+ crit.options[:fields][f] = 1
78
+ end
79
+ end
80
+ end
81
+ end
82
+
83
+ # Adds a criterion to the +Criteria+ that specifies the fields that will
84
+ # not get returned by the document.
85
+ #
86
+ # @example Filter out specific fields.
87
+ # criteria.without(:field2, :field2)
88
+ #
89
+ # @note #only and #without cannot be used together.
90
+ #
91
+ # @param [ Array<Symbol> args A list of fields to exclude.
92
+ #
93
+ # @return [ Criteria ] A newly cloned copy.
94
+ #
95
+ # @since 2.0.0
96
+ def without(*args)
97
+ clone.tap do |crit|
98
+ if args.any?
99
+ crit.options[:fields] = {}
100
+ args.flatten.each do |f|
101
+ crit.options[:fields][f] = 0
102
+ end
103
+ end
104
+ end
105
+ end
106
+ end
107
+ end
108
+ end
@@ -0,0 +1,305 @@
1
+ # encoding: utf-8
2
+ module Mongoid #:nodoc:
3
+ module Criterion #:nodoc:
4
+ module Inclusion
5
+
6
+ # Adds a criterion to the +Criteria+ that specifies values that must all
7
+ # be matched in order to return results. Similar to an "in" clause but the
8
+ # underlying conditional logic is an "AND" and not an "OR". The MongoDB
9
+ # conditional operator that will be used is "$all".
10
+ #
11
+ # @example Adding the criterion.
12
+ # criteria.all(:field => ["value1", "value2"])
13
+ # criteria.all(:field1 => ["value1", "value2"], :field2 => ["value1"])
14
+ #
15
+ # @param [ Hash ] attributes Name/value pairs that all must match.
16
+ #
17
+ # @return [ Criteria ] A new criteria with the added selector.
18
+ def all(attributes = {})
19
+ update_selector(attributes, "$all")
20
+ end
21
+ alias :all_in :all
22
+
23
+ # Adds a criterion to the criteria that specifies multiple expressions
24
+ # that *all* must match. This uses MongoDB's $and operator under the
25
+ # covers.
26
+ #
27
+ # @example Match all provided expressions.
28
+ # criteria.all_of(:name => value, :age.gt => 18)
29
+ #
30
+ # @param [ Array<Hash> ] Multiple hash expressions.
31
+ #
32
+ # @return [ Criteria ] The criteria object.
33
+ #
34
+ # @since 2.3.0
35
+ def all_of(*args)
36
+ clone.tap do |crit|
37
+ unless args.empty?
38
+ criterion = @selector["$and"] || []
39
+ converted = BSON::ObjectId.convert(klass, args.flatten)
40
+ expanded = converted.collect { |hash| hash.expand_complex_criteria }
41
+ crit.selector["$and"] = criterion.concat(expanded)
42
+ end
43
+ end
44
+ end
45
+
46
+ # Adds a criterion to the +Criteria+ that specifies values where any can
47
+ # be matched in order to return results. This is similar to an SQL "IN"
48
+ # clause. The MongoDB conditional operator that will be used is "$in".
49
+ # Any previously matching "$in" arrays will be unioned with new
50
+ # arguments.
51
+ #
52
+ # @example Adding the criterion.
53
+ # criteria.in(:field => ["value1"]).also_in(:field => ["value2"])
54
+ #
55
+ # @param [ Hash ] attributes Name/value pairs any can match.
56
+ #
57
+ # @return [ Criteria ] A new criteria with the added selector.
58
+ def also_in(attributes = {})
59
+ update_selector(attributes, "$in")
60
+ end
61
+
62
+ # Adds a criterion to the +Criteria+ that specifies values that must
63
+ # be matched in order to return results. This is similar to a SQL "WHERE"
64
+ # clause. This is the actual selector that will be provided to MongoDB,
65
+ # similar to the Javascript object that is used when performing a find()
66
+ # in the MongoDB console.
67
+ #
68
+ # @example Adding the criterion.
69
+ # criteria.and(:field1 => "value1", :field2 => 15)
70
+ #
71
+ # @param [ Hash ] selectior Name/value pairs that all must match.
72
+ #
73
+ # @return [ Criteria ] A new criteria with the added selector.
74
+ def and(selector = nil)
75
+ where(selector)
76
+ end
77
+
78
+ # Adds a criterion to the +Criteria+ that specifies a set of expressions
79
+ # to match if any of them return true. This is a $or query in MongoDB and
80
+ # is similar to a SQL OR. This is named #any_of and aliased "or" for
81
+ # readability.
82
+ #
83
+ # @example Adding the criterion.
84
+ # criteria.any_of({ :field1 => "value" }, { :field2 => "value2" })
85
+ #
86
+ # @param [ Array<Hash> ] args A list of name/value pairs any can match.
87
+ #
88
+ # @return [ Criteria ] A new criteria with the added selector.
89
+ def any_of(*args)
90
+ clone.tap do |crit|
91
+ criterion = @selector["$or"] || []
92
+ converted = BSON::ObjectId.convert(klass, args.flatten)
93
+ expanded = converted.collect { |hash| hash.expand_complex_criteria }
94
+ crit.selector["$or"] = criterion.concat(expanded)
95
+ end
96
+ end
97
+ alias :or :any_of
98
+
99
+ # Find the matchind document in the criteria, either based on id or
100
+ # conditions.
101
+ #
102
+ # @todo Durran: DRY up duplicated code in a few places.
103
+ #
104
+ # @example Find by an id.
105
+ # criteria.find(BSON::ObjectId.new)
106
+ #
107
+ # @example Find by multiple ids.
108
+ # criteria.find([ BSON::ObjectId.new, BSON::ObjectId.new ])
109
+ #
110
+ # @example Conditionally find all matching documents.
111
+ # criteria.find(:all, :conditions => { :title => "Sir" })
112
+ #
113
+ # @example Conditionally find the first document.
114
+ # criteria.find(:first, :conditions => { :title => "Sir" })
115
+ #
116
+ # @example Conditionally find the last document.
117
+ # criteria.find(:last, :conditions => { :title => "Sir" })
118
+ #
119
+ # @param [ Symbol, BSON::ObjectId, Array<BSON::ObjectId> ] arg The
120
+ # argument to search with.
121
+ # @param [ Hash ] options The options to search with.
122
+ #
123
+ # @return [ Document, Criteria ] The matching document(s).
124
+ def find(*args)
125
+ type, crit = search(*args)
126
+ case type
127
+ when :first then crit.one
128
+ when :last then crit.last
129
+ when :ids then crit.execute_or_raise(args)
130
+ else
131
+ crit
132
+ end
133
+ end
134
+
135
+ # Execute the criteria or raise an error if no documents found.
136
+ #
137
+ # @example Execute or raise
138
+ # criteria.execute_or_raise(id, criteria)
139
+ #
140
+ # @param [ Object ] args The arguments passed.
141
+ # @param [ Criteria ] criteria The criteria to execute.
142
+ #
143
+ # @raise [ Errors::DocumentNotFound ] If nothing returned.
144
+ #
145
+ # @return [ Document, Array<Document> ] The document(s).
146
+ #
147
+ # @since 2.0.0
148
+ def execute_or_raise(args)
149
+ (args[0].is_a?(Array) ? entries : from_map_or_db).tap do |result|
150
+ if Mongoid.raise_not_found_error && !args.flatten.blank?
151
+ raise Errors::DocumentNotFound.new(klass, args) if result._vacant?
152
+ end
153
+ end
154
+ end
155
+
156
+ # Get the document from the identity map, and if not found hit the
157
+ # database.
158
+ #
159
+ # @example Get the document from the map or criteria.
160
+ # criteria.from_map_or_db(criteria)
161
+ #
162
+ # @param [ Criteria ] The cloned criteria.
163
+ #
164
+ # @return [ Document ] The found document.
165
+ #
166
+ # @since 2.2.1
167
+ def from_map_or_db
168
+ doc = IdentityMap.get(klass, extract_id)
169
+ doc && doc.matches?(selector) ? doc : first
170
+ end
171
+
172
+ # Adds a criterion to the +Criteria+ that specifies values where any can
173
+ # be matched in order to return results. This is similar to an SQL "IN"
174
+ # clause. The MongoDB conditional operator that will be used is "$in".
175
+ #
176
+ # @example Adding the criterion.
177
+ # criteria.in(:field => ["value1", "value2"])
178
+ # criteria.in(:field1 => ["value1", "value2"], :field2 => ["value1"])
179
+ #
180
+ # @param [ Hash ] attributes Name/value pairs any can match.
181
+ #
182
+ # @return [ Criteria ] A new criteria with the added selector.
183
+ def in(attributes = {})
184
+ update_selector(attributes, "$in", :&)
185
+ end
186
+ alias :any_in :in
187
+
188
+ # Eager loads all the provided relations. Will load all the documents
189
+ # into the identity map who's ids match based on the extra query for the
190
+ # ids.
191
+ #
192
+ # @note This will only work if Mongoid's identity map is enabled. To do
193
+ # so set identity_map_enabled: true in your mongoid.yml
194
+ #
195
+ # @note This will work for embedded relations that reference another
196
+ # collection via belongs_to as well.
197
+ #
198
+ # @note Eager loading brings all the documents into memory, so there is a
199
+ # sweet spot on the performance gains. Internal benchmarks show that
200
+ # eager loading becomes slower around 100k documents, but this will
201
+ # naturally depend on the specific application.
202
+ #
203
+ # @example Eager load the provided relations.
204
+ # Person.includes(:posts, :game)
205
+ #
206
+ # @param [ Array<Symbol> ] relations The names of the relations to eager
207
+ # load.
208
+ #
209
+ # @return [ Criteria ] The cloned criteria.
210
+ #
211
+ # @since 2.2.0
212
+ def includes(*relations)
213
+ relations.each do |name|
214
+ inclusions.push(klass.reflect_on_association(name))
215
+ end
216
+ clone
217
+ end
218
+
219
+ # Get a list of criteria that are to be executed for eager loading.
220
+ #
221
+ # @example Get the eager loading inclusions.
222
+ # Person.includes(:game).inclusions
223
+ #
224
+ # @return [ Array<Metadata> ] The inclusions.
225
+ #
226
+ # @since 2.2.0
227
+ def inclusions
228
+ @inclusions ||= []
229
+ end
230
+
231
+ # Loads an array of ids only for the current criteria. Used by eager
232
+ # loading to determine the documents to load.
233
+ #
234
+ # @example Load the related ids.
235
+ # criteria.load_ids("person_id")
236
+ #
237
+ # @param [ String ] key The id or foriegn key string.
238
+ #
239
+ # @return [ Array<String, BSON::ObjectId> ] The ids to load.
240
+ #
241
+ # @since 2.2.0
242
+ def load_ids(key)
243
+ driver.find(selector, { :fields => { key => 1 }}).map { |doc| doc[key] }
244
+ end
245
+
246
+ # Adds a criterion to the +Criteria+ that specifies values to do
247
+ # geospacial searches by. The field must be indexed with the "2d" option.
248
+ #
249
+ # @example Adding the criterion.
250
+ # criteria.near(:field1 => [30, -44])
251
+ #
252
+ # @param [ Hash ] attributes The fields with lat/long values.
253
+ #
254
+ # @return [ Criteria ] A new criteria with the added selector.
255
+ def near(attributes = {})
256
+ update_selector(attributes, "$near")
257
+ end
258
+
259
+ # Adds a criterion to the +Criteria+ that specifies values that must
260
+ # be matched in order to return results. This is similar to a SQL "WHERE"
261
+ # clause. This is the actual selector that will be provided to MongoDB,
262
+ # similar to the Javascript object that is used when performing a find()
263
+ # in the MongoDB console.
264
+ #
265
+ # @example Adding the criterion.
266
+ # criteria.where(:field1 => "value1", :field2 => 15)
267
+ #
268
+ # @param [ Hash ] selector Name/value pairs where all must match.
269
+ #
270
+ # @return [ Criteria ] A new criteria with the added selector.
271
+ def where(selector = nil)
272
+ clone.tap do |crit|
273
+ selector = case selector
274
+ when String then {"$where" => selector}
275
+ else
276
+ BSON::ObjectId.convert(klass, selector || {}, false).expand_complex_criteria
277
+ end
278
+
279
+ # @todo: Durran: 3.0.0: refactor the merging into separate strategies
280
+ # to clean this funkiness up.
281
+ selector.each_pair do |key, value|
282
+ if crit.selector.has_key?(key)
283
+ if key.mongoid_id?
284
+ if crit.selector.has_key?("$and")
285
+ crit.selector["$and"] << { key => value }
286
+ else
287
+ crit.selector["$and"] = [{ key => crit.selector.delete(key) }, { key => value }]
288
+ end
289
+ elsif crit.selector[key].respond_to?(:merge) && value.respond_to?(:merge)
290
+ crit.selector[key] =
291
+ crit.selector[key].merge(value) do |key, old, new|
292
+ key == '$in' ? old & new : new
293
+ end
294
+ else
295
+ crit.selector[key] = value
296
+ end
297
+ else
298
+ crit.selector[key] = value
299
+ end
300
+ end
301
+ end
302
+ end
303
+ end
304
+ end
305
+ end