mongoid-multi-db 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +615 -0
- data/LICENSE +20 -0
- data/README.md +62 -0
- data/Rakefile +49 -0
- data/lib/config/locales/bg.yml +54 -0
- data/lib/config/locales/de.yml +54 -0
- data/lib/config/locales/en-GB.yml +55 -0
- data/lib/config/locales/en.yml +55 -0
- data/lib/config/locales/es.yml +52 -0
- data/lib/config/locales/fr.yml +55 -0
- data/lib/config/locales/hi.yml +46 -0
- data/lib/config/locales/hu.yml +57 -0
- data/lib/config/locales/id.yml +55 -0
- data/lib/config/locales/it.yml +52 -0
- data/lib/config/locales/ja.yml +50 -0
- data/lib/config/locales/kr.yml +47 -0
- data/lib/config/locales/nl.yml +52 -0
- data/lib/config/locales/pl.yml +52 -0
- data/lib/config/locales/pt-BR.yml +53 -0
- data/lib/config/locales/pt.yml +53 -0
- data/lib/config/locales/ro.yml +59 -0
- data/lib/config/locales/ru.yml +54 -0
- data/lib/config/locales/sv.yml +53 -0
- data/lib/config/locales/vi.yml +55 -0
- data/lib/config/locales/zh-CN.yml +46 -0
- data/lib/mongoid.rb +148 -0
- data/lib/mongoid/atomic.rb +230 -0
- data/lib/mongoid/atomic/modifiers.rb +243 -0
- data/lib/mongoid/atomic/paths.rb +3 -0
- data/lib/mongoid/atomic/paths/embedded.rb +43 -0
- data/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
- data/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
- data/lib/mongoid/atomic/paths/root.rb +40 -0
- data/lib/mongoid/attributes.rb +234 -0
- data/lib/mongoid/attributes/processing.rb +146 -0
- data/lib/mongoid/callbacks.rb +135 -0
- data/lib/mongoid/collection.rb +153 -0
- data/lib/mongoid/collection_proxy.rb +59 -0
- data/lib/mongoid/collections.rb +120 -0
- data/lib/mongoid/collections/master.rb +45 -0
- data/lib/mongoid/collections/operations.rb +44 -0
- data/lib/mongoid/collections/retry.rb +46 -0
- data/lib/mongoid/components.rb +96 -0
- data/lib/mongoid/config.rb +347 -0
- data/lib/mongoid/config/database.rb +186 -0
- data/lib/mongoid/config/replset_database.rb +82 -0
- data/lib/mongoid/connection_proxy.rb +30 -0
- data/lib/mongoid/contexts.rb +25 -0
- data/lib/mongoid/contexts/enumerable.rb +288 -0
- data/lib/mongoid/contexts/enumerable/sort.rb +43 -0
- data/lib/mongoid/contexts/mongo.rb +409 -0
- data/lib/mongoid/copyable.rb +48 -0
- data/lib/mongoid/criteria.rb +418 -0
- data/lib/mongoid/criterion/builder.rb +34 -0
- data/lib/mongoid/criterion/complex.rb +84 -0
- data/lib/mongoid/criterion/creational.rb +34 -0
- data/lib/mongoid/criterion/exclusion.rb +108 -0
- data/lib/mongoid/criterion/inclusion.rb +305 -0
- data/lib/mongoid/criterion/inspection.rb +22 -0
- data/lib/mongoid/criterion/optional.rb +232 -0
- data/lib/mongoid/criterion/selector.rb +153 -0
- data/lib/mongoid/cursor.rb +86 -0
- data/lib/mongoid/database_proxy.rb +97 -0
- data/lib/mongoid/default_scope.rb +36 -0
- data/lib/mongoid/dirty.rb +110 -0
- data/lib/mongoid/document.rb +280 -0
- data/lib/mongoid/errors.rb +17 -0
- data/lib/mongoid/errors/callback.rb +26 -0
- data/lib/mongoid/errors/document_not_found.rb +28 -0
- data/lib/mongoid/errors/eager_load.rb +25 -0
- data/lib/mongoid/errors/invalid_collection.rb +18 -0
- data/lib/mongoid/errors/invalid_database.rb +19 -0
- data/lib/mongoid/errors/invalid_field.rb +18 -0
- data/lib/mongoid/errors/invalid_find.rb +19 -0
- data/lib/mongoid/errors/invalid_options.rb +28 -0
- data/lib/mongoid/errors/invalid_time.rb +25 -0
- data/lib/mongoid/errors/invalid_type.rb +25 -0
- data/lib/mongoid/errors/mixed_relations.rb +37 -0
- data/lib/mongoid/errors/mongoid_error.rb +26 -0
- data/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
- data/lib/mongoid/errors/unsaved_document.rb +23 -0
- data/lib/mongoid/errors/unsupported_version.rb +20 -0
- data/lib/mongoid/errors/validations.rb +23 -0
- data/lib/mongoid/extensions.rb +82 -0
- data/lib/mongoid/extensions/array/deletion.rb +29 -0
- data/lib/mongoid/extensions/false_class/equality.rb +26 -0
- data/lib/mongoid/extensions/hash/criteria_helpers.rb +45 -0
- data/lib/mongoid/extensions/hash/scoping.rb +25 -0
- data/lib/mongoid/extensions/integer/checks.rb +23 -0
- data/lib/mongoid/extensions/nil/collectionization.rb +23 -0
- data/lib/mongoid/extensions/object/checks.rb +29 -0
- data/lib/mongoid/extensions/object/reflections.rb +48 -0
- data/lib/mongoid/extensions/object/substitutable.rb +15 -0
- data/lib/mongoid/extensions/object/yoda.rb +44 -0
- data/lib/mongoid/extensions/object_id/conversions.rb +60 -0
- data/lib/mongoid/extensions/proc/scoping.rb +25 -0
- data/lib/mongoid/extensions/string/checks.rb +36 -0
- data/lib/mongoid/extensions/string/conversions.rb +22 -0
- data/lib/mongoid/extensions/string/inflections.rb +118 -0
- data/lib/mongoid/extensions/symbol/checks.rb +23 -0
- data/lib/mongoid/extensions/symbol/inflections.rb +66 -0
- data/lib/mongoid/extensions/true_class/equality.rb +26 -0
- data/lib/mongoid/extras.rb +31 -0
- data/lib/mongoid/factory.rb +46 -0
- data/lib/mongoid/fields.rb +332 -0
- data/lib/mongoid/fields/mappings.rb +41 -0
- data/lib/mongoid/fields/serializable.rb +201 -0
- data/lib/mongoid/fields/serializable/array.rb +49 -0
- data/lib/mongoid/fields/serializable/big_decimal.rb +42 -0
- data/lib/mongoid/fields/serializable/bignum.rb +10 -0
- data/lib/mongoid/fields/serializable/binary.rb +11 -0
- data/lib/mongoid/fields/serializable/boolean.rb +43 -0
- data/lib/mongoid/fields/serializable/date.rb +51 -0
- data/lib/mongoid/fields/serializable/date_time.rb +28 -0
- data/lib/mongoid/fields/serializable/fixnum.rb +10 -0
- data/lib/mongoid/fields/serializable/float.rb +32 -0
- data/lib/mongoid/fields/serializable/foreign_keys/array.rb +42 -0
- data/lib/mongoid/fields/serializable/foreign_keys/object.rb +47 -0
- data/lib/mongoid/fields/serializable/hash.rb +11 -0
- data/lib/mongoid/fields/serializable/integer.rb +44 -0
- data/lib/mongoid/fields/serializable/localized.rb +41 -0
- data/lib/mongoid/fields/serializable/nil_class.rb +38 -0
- data/lib/mongoid/fields/serializable/object.rb +11 -0
- data/lib/mongoid/fields/serializable/object_id.rb +31 -0
- data/lib/mongoid/fields/serializable/range.rb +42 -0
- data/lib/mongoid/fields/serializable/set.rb +42 -0
- data/lib/mongoid/fields/serializable/string.rb +27 -0
- data/lib/mongoid/fields/serializable/symbol.rb +27 -0
- data/lib/mongoid/fields/serializable/time.rb +23 -0
- data/lib/mongoid/fields/serializable/time_with_zone.rb +23 -0
- data/lib/mongoid/fields/serializable/timekeeping.rb +106 -0
- data/lib/mongoid/finders.rb +152 -0
- data/lib/mongoid/hierarchy.rb +120 -0
- data/lib/mongoid/identity.rb +92 -0
- data/lib/mongoid/identity_map.rb +119 -0
- data/lib/mongoid/indexes.rb +54 -0
- data/lib/mongoid/inspection.rb +54 -0
- data/lib/mongoid/javascript.rb +20 -0
- data/lib/mongoid/javascript/functions.yml +63 -0
- data/lib/mongoid/json.rb +16 -0
- data/lib/mongoid/keys.rb +144 -0
- data/lib/mongoid/logger.rb +39 -0
- data/lib/mongoid/matchers.rb +32 -0
- data/lib/mongoid/matchers/all.rb +21 -0
- data/lib/mongoid/matchers/and.rb +30 -0
- data/lib/mongoid/matchers/default.rb +70 -0
- data/lib/mongoid/matchers/exists.rb +23 -0
- data/lib/mongoid/matchers/gt.rb +21 -0
- data/lib/mongoid/matchers/gte.rb +21 -0
- data/lib/mongoid/matchers/in.rb +21 -0
- data/lib/mongoid/matchers/lt.rb +21 -0
- data/lib/mongoid/matchers/lte.rb +21 -0
- data/lib/mongoid/matchers/ne.rb +21 -0
- data/lib/mongoid/matchers/nin.rb +21 -0
- data/lib/mongoid/matchers/or.rb +33 -0
- data/lib/mongoid/matchers/size.rb +21 -0
- data/lib/mongoid/matchers/strategies.rb +93 -0
- data/lib/mongoid/multi_database.rb +31 -0
- data/lib/mongoid/multi_parameter_attributes.rb +106 -0
- data/lib/mongoid/named_scope.rb +146 -0
- data/lib/mongoid/nested_attributes.rb +54 -0
- data/lib/mongoid/observer.rb +170 -0
- data/lib/mongoid/paranoia.rb +158 -0
- data/lib/mongoid/persistence.rb +264 -0
- data/lib/mongoid/persistence/atomic.rb +223 -0
- data/lib/mongoid/persistence/atomic/add_to_set.rb +35 -0
- data/lib/mongoid/persistence/atomic/bit.rb +37 -0
- data/lib/mongoid/persistence/atomic/inc.rb +31 -0
- data/lib/mongoid/persistence/atomic/operation.rb +85 -0
- data/lib/mongoid/persistence/atomic/pop.rb +34 -0
- data/lib/mongoid/persistence/atomic/pull.rb +34 -0
- data/lib/mongoid/persistence/atomic/pull_all.rb +34 -0
- data/lib/mongoid/persistence/atomic/push.rb +31 -0
- data/lib/mongoid/persistence/atomic/push_all.rb +31 -0
- data/lib/mongoid/persistence/atomic/rename.rb +31 -0
- data/lib/mongoid/persistence/atomic/sets.rb +30 -0
- data/lib/mongoid/persistence/atomic/unset.rb +28 -0
- data/lib/mongoid/persistence/deletion.rb +32 -0
- data/lib/mongoid/persistence/insertion.rb +41 -0
- data/lib/mongoid/persistence/modification.rb +37 -0
- data/lib/mongoid/persistence/operations.rb +211 -0
- data/lib/mongoid/persistence/operations/embedded/insert.rb +42 -0
- data/lib/mongoid/persistence/operations/embedded/remove.rb +40 -0
- data/lib/mongoid/persistence/operations/insert.rb +34 -0
- data/lib/mongoid/persistence/operations/remove.rb +33 -0
- data/lib/mongoid/persistence/operations/update.rb +64 -0
- data/lib/mongoid/railtie.rb +126 -0
- data/lib/mongoid/railties/database.rake +182 -0
- data/lib/mongoid/railties/document.rb +12 -0
- data/lib/mongoid/relations.rb +144 -0
- data/lib/mongoid/relations/accessors.rb +138 -0
- data/lib/mongoid/relations/auto_save.rb +38 -0
- data/lib/mongoid/relations/binding.rb +26 -0
- data/lib/mongoid/relations/bindings.rb +9 -0
- data/lib/mongoid/relations/bindings/embedded/in.rb +69 -0
- data/lib/mongoid/relations/bindings/embedded/many.rb +93 -0
- data/lib/mongoid/relations/bindings/embedded/one.rb +61 -0
- data/lib/mongoid/relations/bindings/referenced/in.rb +76 -0
- data/lib/mongoid/relations/bindings/referenced/many.rb +54 -0
- data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +51 -0
- data/lib/mongoid/relations/bindings/referenced/one.rb +58 -0
- data/lib/mongoid/relations/builder.rb +57 -0
- data/lib/mongoid/relations/builders.rb +83 -0
- data/lib/mongoid/relations/builders/embedded/in.rb +29 -0
- data/lib/mongoid/relations/builders/embedded/many.rb +40 -0
- data/lib/mongoid/relations/builders/embedded/one.rb +30 -0
- data/lib/mongoid/relations/builders/nested_attributes/many.rb +110 -0
- data/lib/mongoid/relations/builders/nested_attributes/one.rb +135 -0
- data/lib/mongoid/relations/builders/referenced/in.rb +26 -0
- data/lib/mongoid/relations/builders/referenced/many.rb +27 -0
- data/lib/mongoid/relations/builders/referenced/many_to_many.rb +38 -0
- data/lib/mongoid/relations/builders/referenced/one.rb +26 -0
- data/lib/mongoid/relations/cascading.rb +56 -0
- data/lib/mongoid/relations/cascading/delete.rb +19 -0
- data/lib/mongoid/relations/cascading/destroy.rb +26 -0
- data/lib/mongoid/relations/cascading/nullify.rb +18 -0
- data/lib/mongoid/relations/cascading/strategy.rb +26 -0
- data/lib/mongoid/relations/constraint.rb +42 -0
- data/lib/mongoid/relations/conversions.rb +35 -0
- data/lib/mongoid/relations/cyclic.rb +103 -0
- data/lib/mongoid/relations/embedded/atomic.rb +89 -0
- data/lib/mongoid/relations/embedded/atomic/operation.rb +63 -0
- data/lib/mongoid/relations/embedded/atomic/pull.rb +65 -0
- data/lib/mongoid/relations/embedded/atomic/push_all.rb +59 -0
- data/lib/mongoid/relations/embedded/atomic/set.rb +61 -0
- data/lib/mongoid/relations/embedded/atomic/unset.rb +41 -0
- data/lib/mongoid/relations/embedded/in.rb +220 -0
- data/lib/mongoid/relations/embedded/many.rb +560 -0
- data/lib/mongoid/relations/embedded/one.rb +206 -0
- data/lib/mongoid/relations/embedded/sort.rb +31 -0
- data/lib/mongoid/relations/macros.rb +310 -0
- data/lib/mongoid/relations/many.rb +135 -0
- data/lib/mongoid/relations/metadata.rb +919 -0
- data/lib/mongoid/relations/nested_builder.rb +75 -0
- data/lib/mongoid/relations/one.rb +36 -0
- data/lib/mongoid/relations/options.rb +47 -0
- data/lib/mongoid/relations/polymorphic.rb +40 -0
- data/lib/mongoid/relations/proxy.rb +145 -0
- data/lib/mongoid/relations/referenced/batch.rb +72 -0
- data/lib/mongoid/relations/referenced/batch/insert.rb +57 -0
- data/lib/mongoid/relations/referenced/in.rb +262 -0
- data/lib/mongoid/relations/referenced/many.rb +623 -0
- data/lib/mongoid/relations/referenced/many_to_many.rb +396 -0
- data/lib/mongoid/relations/referenced/one.rb +272 -0
- data/lib/mongoid/relations/reflections.rb +62 -0
- data/lib/mongoid/relations/synchronization.rb +153 -0
- data/lib/mongoid/relations/targets.rb +2 -0
- data/lib/mongoid/relations/targets/enumerable.rb +372 -0
- data/lib/mongoid/reloading.rb +91 -0
- data/lib/mongoid/safety.rb +105 -0
- data/lib/mongoid/scope.rb +31 -0
- data/lib/mongoid/serialization.rb +134 -0
- data/lib/mongoid/sharding.rb +61 -0
- data/lib/mongoid/state.rb +97 -0
- data/lib/mongoid/threaded.rb +530 -0
- data/lib/mongoid/threaded/lifecycle.rb +192 -0
- data/lib/mongoid/timestamps.rb +15 -0
- data/lib/mongoid/timestamps/created.rb +24 -0
- data/lib/mongoid/timestamps/timeless.rb +50 -0
- data/lib/mongoid/timestamps/updated.rb +26 -0
- data/lib/mongoid/validations.rb +140 -0
- data/lib/mongoid/validations/associated.rb +46 -0
- data/lib/mongoid/validations/uniqueness.rb +145 -0
- data/lib/mongoid/version.rb +4 -0
- data/lib/mongoid/versioning.rb +185 -0
- data/lib/rack/mongoid.rb +2 -0
- data/lib/rack/mongoid/middleware/identity_map.rb +38 -0
- data/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +20 -0
- data/lib/rails/generators/mongoid/model/model_generator.rb +24 -0
- data/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
- data/lib/rails/generators/mongoid/observer/observer_generator.rb +17 -0
- data/lib/rails/generators/mongoid/observer/templates/observer.rb.tt +4 -0
- data/lib/rails/generators/mongoid_generator.rb +70 -0
- data/lib/rails/mongoid.rb +91 -0
- 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
|