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,48 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module Mongoid #:nodoc:
|
3
|
+
|
4
|
+
# This module contains the behaviour of Mongoid's clone/dup of documents.
|
5
|
+
module Copyable
|
6
|
+
extend ActiveSupport::Concern
|
7
|
+
|
8
|
+
COPYABLES = [
|
9
|
+
:@accessed,
|
10
|
+
:@attributes,
|
11
|
+
:@metadata,
|
12
|
+
:@modifications,
|
13
|
+
:@previous_modifications
|
14
|
+
]
|
15
|
+
|
16
|
+
protected
|
17
|
+
|
18
|
+
# Clone or dup the current +Document+. This will return all attributes with
|
19
|
+
# the exception of the document's id and versions, and will reset all the
|
20
|
+
# instance variables.
|
21
|
+
#
|
22
|
+
# This clone also includes embedded documents.
|
23
|
+
#
|
24
|
+
# @example Clone the document.
|
25
|
+
# document.clone
|
26
|
+
#
|
27
|
+
# @example Dup the document.
|
28
|
+
# document.dup
|
29
|
+
#
|
30
|
+
# @param [ Document ] other The document getting cloned.
|
31
|
+
#
|
32
|
+
# @return [ Document ] The new document.
|
33
|
+
def initialize_copy(other)
|
34
|
+
@attributes = other.as_document
|
35
|
+
instance_variables.each { |name| remove_instance_variable(name) }
|
36
|
+
COPYABLES.each do |name|
|
37
|
+
value = other.instance_variable_get(name)
|
38
|
+
instance_variable_set(name, value ? value.dup : nil)
|
39
|
+
end
|
40
|
+
attributes.delete("_id")
|
41
|
+
if attributes.delete("versions")
|
42
|
+
attributes["version"] = 1
|
43
|
+
end
|
44
|
+
@new_record = true
|
45
|
+
identify
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,418 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require "mongoid/criterion/builder"
|
3
|
+
require "mongoid/criterion/creational"
|
4
|
+
require "mongoid/criterion/complex"
|
5
|
+
require "mongoid/criterion/exclusion"
|
6
|
+
require "mongoid/criterion/inclusion"
|
7
|
+
require "mongoid/criterion/inspection"
|
8
|
+
require "mongoid/criterion/optional"
|
9
|
+
require "mongoid/criterion/selector"
|
10
|
+
|
11
|
+
module Mongoid #:nodoc:
|
12
|
+
|
13
|
+
# The +Criteria+ class is the core object needed in Mongoid to retrieve
|
14
|
+
# objects from the database. It is a DSL that essentially sets up the
|
15
|
+
# selector and options arguments that get passed on to a Mongo::Collection
|
16
|
+
# in the Ruby driver. Each method on the +Criteria+ returns self to they
|
17
|
+
# can be chained in order to create a readable criterion to be executed
|
18
|
+
# against the database.
|
19
|
+
#
|
20
|
+
# @example Create and execute a criteria.
|
21
|
+
# criteria = Criteria.new
|
22
|
+
# criteria.only(:field).where(:field => "value").skip(20).limit(20)
|
23
|
+
# criteria.execute
|
24
|
+
class Criteria
|
25
|
+
include Enumerable
|
26
|
+
include Criterion::Builder
|
27
|
+
include Criterion::Creational
|
28
|
+
include Criterion::Exclusion
|
29
|
+
include Criterion::Inclusion
|
30
|
+
include Criterion::Inspection
|
31
|
+
include Criterion::Optional
|
32
|
+
|
33
|
+
attr_accessor \
|
34
|
+
:documents,
|
35
|
+
:embedded,
|
36
|
+
:ids,
|
37
|
+
:klass,
|
38
|
+
:options,
|
39
|
+
:selector,
|
40
|
+
:field_list
|
41
|
+
|
42
|
+
delegate \
|
43
|
+
:add_to_set,
|
44
|
+
:aggregate,
|
45
|
+
:avg,
|
46
|
+
:blank?,
|
47
|
+
:count,
|
48
|
+
:size,
|
49
|
+
:length,
|
50
|
+
:delete,
|
51
|
+
:delete_all,
|
52
|
+
:destroy,
|
53
|
+
:destroy_all,
|
54
|
+
:distinct,
|
55
|
+
:empty?,
|
56
|
+
:execute,
|
57
|
+
:first,
|
58
|
+
:group,
|
59
|
+
:last,
|
60
|
+
:max,
|
61
|
+
:min,
|
62
|
+
:one,
|
63
|
+
:pull,
|
64
|
+
:shift,
|
65
|
+
:sum,
|
66
|
+
:update,
|
67
|
+
:update_all, :to => :context
|
68
|
+
|
69
|
+
# Concatinate the criteria with another enumerable. If the other is a
|
70
|
+
# +Criteria+ then it needs to get the collection from it.
|
71
|
+
#
|
72
|
+
# @example Concat 2 criteria.
|
73
|
+
# criteria + criteria
|
74
|
+
#
|
75
|
+
# @param [ Criteria ] other The other criteria.
|
76
|
+
def +(other)
|
77
|
+
entries + comparable(other)
|
78
|
+
end
|
79
|
+
|
80
|
+
# Returns the difference between the criteria and another enumerable. If
|
81
|
+
# the other is a +Criteria+ then it needs to get the collection from it.
|
82
|
+
#
|
83
|
+
# @example Get the difference of 2 criteria.
|
84
|
+
# criteria - criteria
|
85
|
+
#
|
86
|
+
# @param [ Criteria ] other The other criteria.
|
87
|
+
def -(other)
|
88
|
+
entries - comparable(other)
|
89
|
+
end
|
90
|
+
|
91
|
+
# Returns true if the supplied +Enumerable+ or +Criteria+ is equal to the results
|
92
|
+
# of this +Criteria+ or the criteria itself.
|
93
|
+
#
|
94
|
+
# @note This will force a database load when called if an enumerable is passed.
|
95
|
+
#
|
96
|
+
# @param [ Object ] other The other +Enumerable+ or +Criteria+ to compare to.
|
97
|
+
#
|
98
|
+
# @return [ true, false ] If the objects are equal.
|
99
|
+
def ==(other)
|
100
|
+
case other
|
101
|
+
when Criteria
|
102
|
+
self.selector == other.selector && self.options == other.options
|
103
|
+
when Enumerable
|
104
|
+
return (execute.entries == other)
|
105
|
+
else
|
106
|
+
return false
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
# Get the collection associated with the criteria.
|
111
|
+
#
|
112
|
+
# @example Get the collection.
|
113
|
+
# criteria.collection
|
114
|
+
#
|
115
|
+
# @return [ Collection ] The collection.
|
116
|
+
#
|
117
|
+
# @since 2.2.0
|
118
|
+
def collection
|
119
|
+
klass.collection
|
120
|
+
end
|
121
|
+
|
122
|
+
# Return or create the context in which this criteria should be executed.
|
123
|
+
#
|
124
|
+
# This will return an Enumerable context if the class is embedded,
|
125
|
+
# otherwise it will return a Mongo context for root classes.
|
126
|
+
#
|
127
|
+
# @example Get the appropriate context.
|
128
|
+
# criteria.context
|
129
|
+
#
|
130
|
+
# @return [ Mongo, Enumerable ] The appropriate context.
|
131
|
+
def context
|
132
|
+
@context ||= Contexts.context_for(self, embedded)
|
133
|
+
end
|
134
|
+
|
135
|
+
# Iterate over each +Document+ in the results. This can take an optional
|
136
|
+
# block to pass to each argument in the results.
|
137
|
+
#
|
138
|
+
# @example Iterate over the criteria results.
|
139
|
+
# criteria.each { |doc| p doc }
|
140
|
+
#
|
141
|
+
# @return [ Criteria ] The criteria itself.
|
142
|
+
def each(&block)
|
143
|
+
tap { context.iterate(&block) }
|
144
|
+
end
|
145
|
+
|
146
|
+
# Return true if the criteria has some Document or not.
|
147
|
+
#
|
148
|
+
# @example Are there any documents for the criteria?
|
149
|
+
# criteria.exists?
|
150
|
+
#
|
151
|
+
# @return [ true, false ] If documents match.
|
152
|
+
def exists?
|
153
|
+
context.count > 0
|
154
|
+
end
|
155
|
+
|
156
|
+
# Extract a single id from the provided criteria. Could be in an $and
|
157
|
+
# query or a straight _id query.
|
158
|
+
#
|
159
|
+
# @example Extract the id.
|
160
|
+
# criteria.extract_id
|
161
|
+
#
|
162
|
+
# @return [ Object ] The id.
|
163
|
+
#
|
164
|
+
# @since 2.3.0
|
165
|
+
def extract_id
|
166
|
+
selector[:_id]
|
167
|
+
end
|
168
|
+
|
169
|
+
# When freezing a criteria we need to initialize the context first
|
170
|
+
# otherwise the setting of the context on attempted iteration will raise a
|
171
|
+
# runtime error.
|
172
|
+
#
|
173
|
+
# @example Freeze the criteria.
|
174
|
+
# criteria.freeze
|
175
|
+
#
|
176
|
+
# @return [ Criteria ] The frozen criteria.
|
177
|
+
#
|
178
|
+
# @since 2.0.0
|
179
|
+
def freeze
|
180
|
+
context and inclusions and super
|
181
|
+
end
|
182
|
+
|
183
|
+
# Merges the supplied argument hash into a single criteria
|
184
|
+
#
|
185
|
+
# @example Fuse the criteria and the object.
|
186
|
+
# criteria.fuse(:where => { :field => "value"}, :limit => 20)
|
187
|
+
#
|
188
|
+
# @param [ Hash ] criteria_conditions Criteria keys and values.
|
189
|
+
#
|
190
|
+
# @return [ Criteria ] self.
|
191
|
+
def fuse(criteria_conditions = {})
|
192
|
+
criteria_conditions.inject(self) do |criteria, (key, value)|
|
193
|
+
criteria.send(key, value)
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
197
|
+
# Create the new +Criteria+ object. This will initialize the selector
|
198
|
+
# and options hashes, as well as the type of criteria.
|
199
|
+
#
|
200
|
+
# @example Instantiate a new criteria.
|
201
|
+
# Criteria.new(Model, true)
|
202
|
+
#
|
203
|
+
# @param [ Class ] klass The model the criteria is for.
|
204
|
+
# @param [ true, false ] embedded Is the criteria for embedded docs.
|
205
|
+
def initialize(klass, embedded = false)
|
206
|
+
@selector = Criterion::Selector.new(klass)
|
207
|
+
@options, @klass, @documents, @embedded = {}, klass, [], embedded
|
208
|
+
end
|
209
|
+
|
210
|
+
# Merges another object with this +Criteria+ and returns a new criteria.
|
211
|
+
# The other object may be a +Criteria+ or a +Hash+. This is used to
|
212
|
+
# combine multiple scopes together, where a chained scope situation
|
213
|
+
# may be desired.
|
214
|
+
#
|
215
|
+
# @example Merge the criteria with a conditions hash.
|
216
|
+
# criteria.merge({ :conditions => { :title => "Sir" } })
|
217
|
+
#
|
218
|
+
# @example Merge the criteria with another criteria.
|
219
|
+
# criteri.merge(other_criteria)
|
220
|
+
#
|
221
|
+
# @param [ Criteria, Hash ] other The other criterion to merge with.
|
222
|
+
#
|
223
|
+
# @return [ Criteria ] A cloned self.
|
224
|
+
def merge(other)
|
225
|
+
clone.tap do |crit|
|
226
|
+
if other.is_a?(Criteria)
|
227
|
+
crit.selector.update(other.selector)
|
228
|
+
crit.options.update(other.options)
|
229
|
+
crit.documents = other.documents
|
230
|
+
else
|
231
|
+
duped = other.dup
|
232
|
+
crit.selector.update(duped.delete(:conditions) || {})
|
233
|
+
crit.options.update(duped)
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
# Returns true if criteria responds to the given method.
|
239
|
+
#
|
240
|
+
# @example Does the criteria respond to the method?
|
241
|
+
# crtiteria.respond_to?(:each)
|
242
|
+
#
|
243
|
+
# @param [ Symbol ] name The name of the class method on the +Document+.
|
244
|
+
# @param [ true, false ] include_private Whether to include privates.
|
245
|
+
#
|
246
|
+
# @return [ true, false ] If the criteria responds to the method.
|
247
|
+
def respond_to?(name, include_private = false)
|
248
|
+
# don't include klass private methods because method_missing won't call them
|
249
|
+
super || @klass.respond_to?(name) || entries.respond_to?(name, include_private)
|
250
|
+
end
|
251
|
+
|
252
|
+
# Returns the selector and options as a +Hash+ that would be passed to a
|
253
|
+
# scope for use with named scopes.
|
254
|
+
#
|
255
|
+
# @example Get the criteria as a scoped hash.
|
256
|
+
# criteria.scoped
|
257
|
+
#
|
258
|
+
# @return [ Hash ] The criteria as a scoped hash.
|
259
|
+
def scoped
|
260
|
+
scope_options = @options.dup
|
261
|
+
sorting = scope_options.delete(:sort)
|
262
|
+
scope_options[:order_by] = sorting if sorting
|
263
|
+
{ :where => @selector }.merge(scope_options)
|
264
|
+
end
|
265
|
+
alias :to_ary :to_a
|
266
|
+
|
267
|
+
# Needed to properly get a criteria back as json
|
268
|
+
#
|
269
|
+
# @example Get the criteria as json.
|
270
|
+
# Person.where(:title => "Sir").as_json
|
271
|
+
#
|
272
|
+
# @param [ Hash ] options Options to pass through to the serializer.
|
273
|
+
#
|
274
|
+
# @return [ String ] The JSON string.
|
275
|
+
def as_json(options = nil)
|
276
|
+
entries.as_json(options)
|
277
|
+
end
|
278
|
+
|
279
|
+
# Search for documents based on a variety of args.
|
280
|
+
#
|
281
|
+
# @example Find by an id.
|
282
|
+
# criteria.search(BSON::ObjectId.new)
|
283
|
+
#
|
284
|
+
# @example Find by multiple ids.
|
285
|
+
# criteria.search([ BSON::ObjectId.new, BSON::ObjectId.new ])
|
286
|
+
#
|
287
|
+
# @example Conditionally find all matching documents.
|
288
|
+
# criteria.search(:all, :conditions => { :title => "Sir" })
|
289
|
+
#
|
290
|
+
# @example Conditionally find the first document.
|
291
|
+
# criteria.search(:first, :conditions => { :title => "Sir" })
|
292
|
+
#
|
293
|
+
# @example Conditionally find the last document.
|
294
|
+
# criteria.search(:last, :conditions => { :title => "Sir" })
|
295
|
+
#
|
296
|
+
# @param [ Symbol, BSON::ObjectId, Array<BSON::ObjectId> ] arg The
|
297
|
+
# argument to search with.
|
298
|
+
# @param [ Hash ] options The options to search with.
|
299
|
+
#
|
300
|
+
# @return [ Array<Symbol, Criteria> ] The type and criteria.
|
301
|
+
#
|
302
|
+
# @since 2.0.0
|
303
|
+
def search(*args)
|
304
|
+
raise_invalid if args[0].nil?
|
305
|
+
type = args[0]
|
306
|
+
params = args[1] || {}
|
307
|
+
return [ :ids, for_ids(type) ] unless type.is_a?(Symbol)
|
308
|
+
conditions = params.delete(:conditions) || {}
|
309
|
+
if conditions.include?(:id)
|
310
|
+
conditions[:_id] = conditions[:id]
|
311
|
+
conditions.delete(:id)
|
312
|
+
end
|
313
|
+
return [ type, where(conditions).extras(params) ]
|
314
|
+
end
|
315
|
+
|
316
|
+
# Convenience method of raising an invalid options error.
|
317
|
+
#
|
318
|
+
# @example Raise the error.
|
319
|
+
# criteria.raise_invalid
|
320
|
+
#
|
321
|
+
# @raise [ Errors::InvalidOptions ] The error.
|
322
|
+
#
|
323
|
+
# @since 2.0.0
|
324
|
+
def raise_invalid
|
325
|
+
raise Errors::InvalidFind.new
|
326
|
+
end
|
327
|
+
|
328
|
+
protected
|
329
|
+
|
330
|
+
# Return the entries of the other criteria or the object. Used for
|
331
|
+
# comparing criteria or an enumerable.
|
332
|
+
#
|
333
|
+
# @example Get the comparable version.
|
334
|
+
# criteria.comparable(other)
|
335
|
+
#
|
336
|
+
# @param [ Criteria ] other Another criteria.
|
337
|
+
#
|
338
|
+
# @return [ Array ] The array to compare with.
|
339
|
+
def comparable(other)
|
340
|
+
other.is_a?(Criteria) ? other.entries : other
|
341
|
+
end
|
342
|
+
|
343
|
+
# Get the raw driver collection from the criteria.
|
344
|
+
#
|
345
|
+
# @example Get the raw driver collection.
|
346
|
+
# criteria.driver
|
347
|
+
#
|
348
|
+
# @return [ Mongo::Collection ] The driver collection.
|
349
|
+
#
|
350
|
+
# @since 2.2.0
|
351
|
+
def driver
|
352
|
+
collection.driver
|
353
|
+
end
|
354
|
+
|
355
|
+
# Clone or dup the current +Criteria+. This will return a new criteria with
|
356
|
+
# the selector, options, klass, embedded options, etc intact.
|
357
|
+
#
|
358
|
+
# @example Clone a criteria.
|
359
|
+
# criteria.clone
|
360
|
+
#
|
361
|
+
# @example Dup a criteria.
|
362
|
+
# criteria.dup
|
363
|
+
#
|
364
|
+
# @param [ Criteria ] other The criteria getting cloned.
|
365
|
+
#
|
366
|
+
# @return [ nil ] nil.
|
367
|
+
def initialize_copy(other)
|
368
|
+
@selector = other.selector.dup
|
369
|
+
@options = other.options.dup
|
370
|
+
@includes = other.inclusions.dup
|
371
|
+
@context = nil
|
372
|
+
end
|
373
|
+
|
374
|
+
# Used for chaining +Criteria+ scopes together in the for of class methods
|
375
|
+
# on the +Document+ the criteria is for.
|
376
|
+
def method_missing(name, *args, &block)
|
377
|
+
if @klass.respond_to?(name)
|
378
|
+
@klass.send(:with_scope, self) do
|
379
|
+
@klass.send(name, *args, &block)
|
380
|
+
end
|
381
|
+
else
|
382
|
+
return entries.send(name, *args)
|
383
|
+
end
|
384
|
+
end
|
385
|
+
|
386
|
+
# Update the selector setting the operator on the value for each key in the
|
387
|
+
# supplied attributes +Hash+.
|
388
|
+
#
|
389
|
+
# @example Update the selector.
|
390
|
+
# criteria.update_selector({ :field => "value" }, "$in")
|
391
|
+
#
|
392
|
+
# @param [ Hash, Array ] attributes The values to convert and apply.
|
393
|
+
# @param [ String ] operator The MongoDB operator.
|
394
|
+
# @param [ Symbol ] combine The operator to use when combining sets.
|
395
|
+
def update_selector(attributes, operator, combine = :+)
|
396
|
+
clone.tap do |crit|
|
397
|
+
converted = BSON::ObjectId.convert(klass, attributes || {})
|
398
|
+
converted.each_pair do |key, value|
|
399
|
+
existing = crit.selector[key]
|
400
|
+
unless existing
|
401
|
+
crit.selector[key] = { operator => value }
|
402
|
+
else
|
403
|
+
if existing.respond_to?(:merge)
|
404
|
+
if existing.has_key?(operator)
|
405
|
+
new_value = existing.values.first.send(combine, value)
|
406
|
+
crit.selector[key] = { operator => new_value }
|
407
|
+
else
|
408
|
+
crit.selector[key][operator] = value
|
409
|
+
end
|
410
|
+
else
|
411
|
+
crit.selector[key] = { operator => value }
|
412
|
+
end
|
413
|
+
end
|
414
|
+
end
|
415
|
+
end
|
416
|
+
end
|
417
|
+
end
|
418
|
+
end
|