mongoid 6.4.8 → 7.0.0.beta
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Rakefile +0 -26
- data/lib/config/locales/en.yml +17 -21
- data/lib/mongoid.rb +2 -2
- data/lib/mongoid/association.rb +150 -0
- data/lib/mongoid/association/accessors.rb +339 -0
- data/lib/mongoid/{relations/binding.rb → association/bindable.rb} +32 -52
- data/lib/mongoid/association/builders.rb +92 -0
- data/lib/mongoid/{relations/constraint.rb → association/constrainable.rb} +11 -22
- data/lib/mongoid/association/depending.rb +116 -0
- data/lib/mongoid/{relations/eager.rb → association/eager_loadable.rb} +11 -11
- data/lib/mongoid/association/embedded.rb +4 -0
- data/lib/mongoid/{relations → association}/embedded/batchable.rb +27 -53
- data/lib/mongoid/association/embedded/cyclic.rb +109 -0
- data/lib/mongoid/association/embedded/embedded_in.rb +154 -0
- data/lib/mongoid/association/embedded/embedded_in/binding.rb +56 -0
- data/lib/mongoid/{relations/builders/embedded/in.rb → association/embedded/embedded_in/buildable.rb} +12 -6
- data/lib/mongoid/association/embedded/embedded_in/proxy.rb +121 -0
- data/lib/mongoid/association/embedded/embeds_many.rb +210 -0
- data/lib/mongoid/{relations/bindings/embedded/many.rb → association/embedded/embeds_many/binding.rb} +11 -9
- data/lib/mongoid/{relations/builders/embedded/many.rb → association/embedded/embeds_many/buildable.rb} +13 -7
- data/lib/mongoid/association/embedded/embeds_many/proxy.rb +529 -0
- data/lib/mongoid/association/embedded/embeds_one.rb +173 -0
- data/lib/mongoid/{relations/bindings/embedded/one.rb → association/embedded/embeds_one/binding.rb} +12 -10
- data/lib/mongoid/{relations/builders/embedded/one.rb → association/embedded/embeds_one/buildable.rb} +13 -7
- data/lib/mongoid/association/embedded/embeds_one/proxy.rb +130 -0
- data/lib/mongoid/association/macros.rb +204 -0
- data/lib/mongoid/{relations → association}/many.rb +18 -52
- data/lib/mongoid/{relations → association}/marshalable.rb +6 -4
- data/lib/mongoid/association/nested.rb +15 -0
- data/lib/mongoid/association/nested/many.rb +200 -0
- data/lib/mongoid/association/nested/nested_buildable.rb +72 -0
- data/lib/mongoid/association/nested/one.rb +127 -0
- data/lib/mongoid/{relations → association}/one.rb +6 -6
- data/lib/mongoid/association/options.rb +152 -0
- data/lib/mongoid/{relations → association}/proxy.rb +31 -58
- data/lib/mongoid/association/referenced.rb +7 -0
- data/lib/mongoid/association/referenced/auto_save.rb +79 -0
- data/lib/mongoid/association/referenced/belongs_to.rb +248 -0
- data/lib/mongoid/association/referenced/belongs_to/binding.rb +87 -0
- data/lib/mongoid/association/referenced/belongs_to/buildable.rb +46 -0
- data/lib/mongoid/association/referenced/belongs_to/eager.rb +36 -0
- data/lib/mongoid/association/referenced/belongs_to/proxy.rb +136 -0
- data/lib/mongoid/association/referenced/counter_cache.rb +163 -0
- data/lib/mongoid/association/referenced/eager.rb +159 -0
- data/lib/mongoid/association/referenced/has_and_belongs_to_many.rb +290 -0
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/binding.rb +71 -0
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/buildable.rb +40 -0
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/eager.rb +52 -0
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/proxy.rb +310 -0
- data/lib/mongoid/association/referenced/has_many.rb +273 -0
- data/lib/mongoid/{relations/bindings/referenced/many.rb → association/referenced/has_many/binding.rb} +6 -5
- data/lib/mongoid/association/referenced/has_many/buildable.rb +38 -0
- data/lib/mongoid/association/referenced/has_many/eager.rb +43 -0
- data/lib/mongoid/association/referenced/has_many/enumerable.rb +479 -0
- data/lib/mongoid/association/referenced/has_many/proxy.rb +577 -0
- data/lib/mongoid/association/referenced/has_one.rb +204 -0
- data/lib/mongoid/{relations/bindings/referenced/one.rb → association/referenced/has_one/binding.rb} +11 -8
- data/lib/mongoid/association/referenced/has_one/buildable.rb +60 -0
- data/lib/mongoid/association/referenced/has_one/eager.rb +35 -0
- data/lib/mongoid/{relations/builders/nested_attributes/one.rb → association/referenced/has_one/nested_builder.rb} +9 -9
- data/lib/mongoid/association/referenced/has_one/proxy.rb +113 -0
- data/lib/mongoid/association/referenced/syncable.rb +170 -0
- data/lib/mongoid/{relations → association}/reflections.rb +21 -17
- data/lib/mongoid/association/relatable.rb +415 -0
- data/lib/mongoid/association/touchable.rb +97 -0
- data/lib/mongoid/atomic.rb +6 -6
- data/lib/mongoid/atomic/modifiers.rb +8 -12
- data/lib/mongoid/atomic/paths/embedded/many.rb +1 -1
- data/lib/mongoid/atomic/paths/embedded/one.rb +1 -1
- data/lib/mongoid/attributes.rb +2 -1
- data/lib/mongoid/attributes/nested.rb +10 -10
- data/lib/mongoid/attributes/processing.rb +2 -2
- data/lib/mongoid/attributes/readonly.rb +2 -4
- data/lib/mongoid/clients.rb +0 -2
- data/lib/mongoid/clients/options.rb +1 -1
- data/lib/mongoid/clients/storage_options.rb +0 -1
- data/lib/mongoid/composable.rb +3 -4
- data/lib/mongoid/config.rb +1 -0
- data/lib/mongoid/contextual/aggregable/mongo.rb +1 -1
- data/lib/mongoid/contextual/atomic.rb +3 -6
- data/lib/mongoid/contextual/map_reduce.rb +3 -7
- data/lib/mongoid/contextual/memory.rb +5 -10
- data/lib/mongoid/contextual/mongo.rb +10 -27
- data/lib/mongoid/copyable.rb +6 -6
- data/lib/mongoid/criteria.rb +1 -2
- data/lib/mongoid/criteria/includable.rb +14 -14
- data/lib/mongoid/criteria/modifiable.rb +8 -14
- data/lib/mongoid/criteria/queryable/mergeable.rb +1 -3
- data/lib/mongoid/criteria/queryable/pipeline.rb +10 -5
- data/lib/mongoid/criteria/queryable/selectable.rb +10 -34
- data/lib/mongoid/document.rb +6 -6
- data/lib/mongoid/errors.rb +3 -1
- data/lib/mongoid/errors/invalid_dependent_strategy.rb +32 -0
- data/lib/mongoid/errors/invalid_relation_option.rb +29 -0
- data/lib/mongoid/errors/unknown_model.rb +25 -0
- data/lib/mongoid/extensions/array.rb +5 -5
- data/lib/mongoid/extensions/big_decimal.rb +1 -1
- data/lib/mongoid/extensions/object.rb +4 -4
- data/lib/mongoid/extensions/range.rb +1 -0
- data/lib/mongoid/extensions/regexp.rb +0 -1
- data/lib/mongoid/extensions/string.rb +1 -3
- data/lib/mongoid/factory.rb +4 -3
- data/lib/mongoid/fields.rb +1 -1
- data/lib/mongoid/fields/foreign_key.rb +5 -5
- data/lib/mongoid/fields/standard.rb +2 -14
- data/lib/mongoid/fields/validators/macro.rb +1 -1
- data/lib/mongoid/indexable.rb +8 -5
- data/lib/mongoid/interceptable.rb +5 -5
- data/lib/mongoid/matchable.rb +0 -3
- data/lib/mongoid/persistable.rb +4 -5
- data/lib/mongoid/persistable/creatable.rb +2 -4
- data/lib/mongoid/persistable/deletable.rb +9 -10
- data/lib/mongoid/persistable/destroyable.rb +5 -1
- data/lib/mongoid/persistable/incrementable.rb +1 -1
- data/lib/mongoid/persistable/logical.rb +1 -1
- data/lib/mongoid/persistable/settable.rb +5 -5
- data/lib/mongoid/persistable/updatable.rb +2 -2
- data/lib/mongoid/persistable/upsertable.rb +1 -2
- data/lib/mongoid/persistence_context.rb +4 -9
- data/lib/mongoid/query_cache.rb +18 -65
- data/lib/mongoid/railtie.rb +0 -17
- data/lib/mongoid/reloadable.rb +1 -1
- data/lib/mongoid/scopable.rb +3 -3
- data/lib/mongoid/serializable.rb +3 -3
- data/lib/mongoid/tasks/database.rb +2 -3
- data/lib/mongoid/threaded.rb +0 -74
- data/lib/mongoid/traversable.rb +2 -2
- data/lib/mongoid/validatable.rb +8 -8
- data/lib/mongoid/validatable/presence.rb +2 -2
- data/lib/mongoid/validatable/uniqueness.rb +4 -4
- data/lib/mongoid/version.rb +1 -1
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +3 -4
- data/spec/app/models/animal.rb +2 -1
- data/spec/app/models/band.rb +0 -1
- data/spec/app/models/bomb.rb +1 -1
- data/spec/app/models/message.rb +1 -1
- data/spec/app/models/person.rb +5 -2
- data/spec/app/models/vertex.rb +6 -0
- data/spec/app/models/wiki_page.rb +1 -1
- data/spec/config/mongoid.yml +1 -0
- data/spec/mongoid/{relations → association}/accessors_spec.rb +1 -1
- data/spec/mongoid/{relations → association}/auto_save_spec.rb +60 -12
- data/spec/mongoid/{relations → association}/builders_spec.rb +1 -1
- data/spec/mongoid/association/constrainable_spec.rb +115 -0
- data/spec/mongoid/{relations → association}/counter_cache_spec.rb +1 -1
- data/spec/mongoid/association/depending_spec.rb +613 -0
- data/spec/mongoid/{relations → association}/eager_spec.rb +12 -12
- data/spec/mongoid/{relations → association/embedded}/cyclic_spec.rb +1 -1
- data/spec/mongoid/{relations → association}/embedded/dirty_spec.rb +0 -0
- data/spec/mongoid/{relations/bindings/embedded/in_spec.rb → association/embedded/embedded_in/binding_spec.rb} +13 -13
- data/spec/mongoid/{relations/builders/embedded/in_spec.rb → association/embedded/embedded_in/buildable_spec.rb} +9 -9
- data/spec/mongoid/{relations/embedded/in_spec.rb → association/embedded/embedded_in/proxy_spec.rb} +5 -77
- data/spec/mongoid/association/embedded/embedded_in_spec.rb +843 -0
- data/spec/mongoid/{relations/bindings/embedded/many_spec.rb → association/embedded/embeds_many/binding_spec.rb} +3 -3
- data/spec/mongoid/{relations/builders/embedded/many_spec.rb → association/embedded/embeds_many/buildable_spec.rb} +17 -45
- data/spec/mongoid/{relations/embedded/many_spec.rb → association/embedded/embeds_many/proxy_spec.rb} +140 -428
- data/spec/mongoid/association/embedded/embeds_many_spec.rb +852 -0
- data/spec/mongoid/{relations/bindings/embedded/one_spec.rb → association/embedded/embeds_one/binding_spec.rb} +4 -4
- data/spec/mongoid/{relations/builders/embedded/one_spec.rb → association/embedded/embeds_one/buildable_spec.rb} +14 -34
- data/spec/mongoid/{relations/embedded/one_spec.rb → association/embedded/embeds_one/proxy_spec.rb} +39 -84
- data/spec/mongoid/association/embedded/embeds_one_spec.rb +908 -0
- data/spec/mongoid/{relations → association}/macros_spec.rb +148 -93
- data/spec/mongoid/{relations/builders/nested_attributes → association/nested}/many_spec.rb +16 -19
- data/spec/mongoid/{relations/builders/nested_attributes → association/nested}/one_spec.rb +17 -20
- data/spec/mongoid/association/options_spec.rb +1321 -0
- data/spec/mongoid/{relations → association}/polymorphic_spec.rb +7 -34
- data/spec/mongoid/{relations/bindings/referenced/in_spec.rb → association/referenced/belongs_to/binding_spec.rb} +7 -7
- data/spec/mongoid/{relations/builders/referenced/in_spec.rb → association/referenced/belongs_to/buildable_spec.rb} +46 -79
- data/spec/mongoid/{relations/eager/belongs_to_spec.rb → association/referenced/belongs_to/eager_spec.rb} +9 -9
- data/spec/mongoid/{relations/referenced/in_spec.rb → association/referenced/belongs_to/proxy_spec.rb} +57 -91
- data/spec/mongoid/association/referenced/belongs_to_spec.rb +1963 -0
- data/spec/mongoid/{relations/bindings/referenced/many_to_many_spec.rb → association/referenced/has_and_belongs_to_many/binding_spec.rb} +5 -5
- data/spec/mongoid/association/referenced/has_and_belongs_to_many/buildable_spec.rb +121 -0
- data/spec/mongoid/{relations/eager/has_and_belongs_to_many_spec.rb → association/referenced/has_and_belongs_to_many/eager_spec.rb} +5 -5
- data/spec/mongoid/{relations/referenced/many_to_many_spec.rb → association/referenced/has_and_belongs_to_many/proxy_spec.rb} +107 -98
- data/spec/mongoid/association/referenced/has_and_belongs_to_many_spec.rb +1027 -0
- data/spec/mongoid/{relations/bindings/referenced/many_spec.rb → association/referenced/has_many/binding_spec.rb} +5 -5
- data/spec/mongoid/association/referenced/has_many/buildable_spec.rb +119 -0
- data/spec/mongoid/{relations/eager/has_many_spec.rb → association/referenced/has_many/eager_spec.rb} +11 -11
- data/spec/mongoid/{relations/targets → association/referenced/has_many}/enumerable_spec.rb +1 -109
- data/spec/mongoid/{relations/referenced/many_spec.rb → association/referenced/has_many/proxy_spec.rb} +28 -93
- data/spec/mongoid/association/referenced/has_many_spec.rb +1225 -0
- data/spec/mongoid/{relations/bindings/referenced/one_spec.rb → association/referenced/has_one/binding_spec.rb} +4 -4
- data/spec/mongoid/association/referenced/has_one/buildable_spec.rb +113 -0
- data/spec/mongoid/{relations/eager/has_one_spec.rb → association/referenced/has_one/eager_spec.rb} +10 -10
- data/spec/mongoid/{relations/referenced/one_spec.rb → association/referenced/has_one/proxy_spec.rb} +9 -109
- data/spec/mongoid/association/referenced/has_one_spec.rb +1244 -0
- data/spec/mongoid/{relations → association}/reflections_spec.rb +1 -12
- data/spec/mongoid/{relations/synchronization_spec.rb → association/syncable_spec.rb} +4 -2
- data/spec/mongoid/{relations → association}/touchable_spec.rb +19 -1
- data/spec/mongoid/{relations_spec.rb → association_spec.rb} +1 -1
- data/spec/mongoid/atomic/modifiers_spec.rb +17 -17
- data/spec/mongoid/atomic_spec.rb +17 -17
- data/spec/mongoid/attributes/nested_spec.rb +14 -12
- data/spec/mongoid/attributes/readonly_spec.rb +80 -125
- data/spec/mongoid/clients/factory_spec.rb +28 -52
- data/spec/mongoid/clients/options_spec.rb +65 -69
- data/spec/mongoid/config_spec.rb +24 -0
- data/spec/mongoid/contextual/geo_near_spec.rb +0 -1
- data/spec/mongoid/contextual/mongo_spec.rb +4 -112
- data/spec/mongoid/criteria/modifiable_spec.rb +183 -60
- data/spec/mongoid/criteria/queryable/extensions/big_decimal_spec.rb +3 -3
- data/spec/mongoid/criteria/queryable/pipeline_spec.rb +12 -0
- data/spec/mongoid/criteria/queryable/selectable_spec.rb +6 -74
- data/spec/mongoid/criteria/queryable/selector_spec.rb +2 -2
- data/spec/mongoid/criteria/scopable_spec.rb +0 -81
- data/spec/mongoid/criteria_spec.rb +16 -19
- data/spec/mongoid/document_spec.rb +2 -56
- data/spec/mongoid/extensions/array_spec.rb +11 -15
- data/spec/mongoid/extensions/big_decimal_spec.rb +9 -9
- data/spec/mongoid/extensions/object_spec.rb +7 -11
- data/spec/mongoid/extensions/range_spec.rb +7 -0
- data/spec/mongoid/extensions/regexp_spec.rb +0 -23
- data/spec/mongoid/extensions/string_spec.rb +7 -35
- data/spec/mongoid/factory_spec.rb +18 -11
- data/spec/mongoid/fields/foreign_key_spec.rb +24 -32
- data/spec/mongoid/fields_spec.rb +2 -2
- data/spec/mongoid/findable_spec.rb +1 -1
- data/spec/mongoid/indexable_spec.rb +18 -8
- data/spec/mongoid/interceptable_spec.rb +21 -2
- data/spec/mongoid/matchable_spec.rb +1 -26
- data/spec/mongoid/persistable/deletable_spec.rb +0 -19
- data/spec/mongoid/persistable/destroyable_spec.rb +0 -19
- data/spec/mongoid/persistable/incrementable_spec.rb +6 -6
- data/spec/mongoid/persistable/savable_spec.rb +3 -3
- data/spec/mongoid/persistable/settable_spec.rb +1 -35
- data/spec/mongoid/persistable/updatable_spec.rb +2 -2
- data/spec/mongoid/persistable_spec.rb +16 -16
- data/spec/mongoid/persistence_context_spec.rb +0 -14
- data/spec/mongoid/positional_spec.rb +10 -10
- data/spec/mongoid/query_cache_spec.rb +18 -87
- data/spec/mongoid/relations/proxy_spec.rb +124 -124
- data/spec/mongoid/scopable_spec.rb +0 -13
- data/spec/mongoid/threaded_spec.rb +0 -68
- data/spec/mongoid/validatable/associated_spec.rb +1 -1
- data/spec/mongoid/validatable/presence_spec.rb +7 -6
- data/spec/mongoid/validatable_spec.rb +1 -1
- data/spec/spec_helper.rb +7 -83
- metadata +586 -611
- metadata.gz.sig +2 -5
- data/lib/mongoid/clients/sessions.rb +0 -113
- data/lib/mongoid/errors/invalid_session_use.rb +0 -24
- data/lib/mongoid/matchable/nor.rb +0 -37
- data/lib/mongoid/railties/controller_runtime.rb +0 -86
- data/lib/mongoid/relations.rb +0 -148
- data/lib/mongoid/relations/accessors.rb +0 -267
- data/lib/mongoid/relations/auto_save.rb +0 -94
- data/lib/mongoid/relations/bindings.rb +0 -9
- data/lib/mongoid/relations/bindings/embedded/in.rb +0 -59
- data/lib/mongoid/relations/bindings/referenced/in.rb +0 -65
- data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +0 -70
- data/lib/mongoid/relations/builder.rb +0 -57
- data/lib/mongoid/relations/builders.rb +0 -106
- data/lib/mongoid/relations/builders/nested_attributes/many.rb +0 -199
- data/lib/mongoid/relations/builders/referenced/in.rb +0 -26
- data/lib/mongoid/relations/builders/referenced/many.rb +0 -26
- data/lib/mongoid/relations/builders/referenced/many_to_many.rb +0 -39
- data/lib/mongoid/relations/builders/referenced/one.rb +0 -26
- data/lib/mongoid/relations/cascading.rb +0 -56
- data/lib/mongoid/relations/cascading/delete.rb +0 -44
- data/lib/mongoid/relations/cascading/destroy.rb +0 -43
- data/lib/mongoid/relations/cascading/nullify.rb +0 -35
- data/lib/mongoid/relations/cascading/restrict.rb +0 -39
- data/lib/mongoid/relations/conversions.rb +0 -34
- data/lib/mongoid/relations/counter_cache.rb +0 -160
- data/lib/mongoid/relations/cyclic.rb +0 -107
- data/lib/mongoid/relations/eager/base.rb +0 -153
- data/lib/mongoid/relations/eager/belongs_to.rb +0 -31
- data/lib/mongoid/relations/eager/has_and_belongs_to_many.rb +0 -47
- data/lib/mongoid/relations/eager/has_many.rb +0 -38
- data/lib/mongoid/relations/eager/has_one.rb +0 -30
- data/lib/mongoid/relations/embedded/in.rb +0 -241
- data/lib/mongoid/relations/embedded/many.rb +0 -683
- data/lib/mongoid/relations/embedded/one.rb +0 -235
- data/lib/mongoid/relations/macros.rb +0 -367
- data/lib/mongoid/relations/metadata.rb +0 -1179
- data/lib/mongoid/relations/nested_builder.rb +0 -74
- data/lib/mongoid/relations/options.rb +0 -49
- data/lib/mongoid/relations/polymorphic.rb +0 -39
- data/lib/mongoid/relations/referenced/in.rb +0 -304
- data/lib/mongoid/relations/referenced/many.rb +0 -812
- data/lib/mongoid/relations/referenced/many_to_many.rb +0 -479
- data/lib/mongoid/relations/referenced/one.rb +0 -290
- data/lib/mongoid/relations/synchronization.rb +0 -169
- data/lib/mongoid/relations/targets.rb +0 -2
- data/lib/mongoid/relations/targets/enumerable.rb +0 -493
- data/lib/mongoid/relations/touchable.rb +0 -97
- data/spec/app/models/array_field.rb +0 -7
- data/spec/app/models/delegating_patient.rb +0 -16
- data/spec/integration/document_spec.rb +0 -22
- data/spec/mongoid/clients/sessions_spec.rb +0 -334
- data/spec/mongoid/fields/internal/foreign_keys/array_spec.rb +0 -184
- data/spec/mongoid/fields/internal/foreign_keys/object_spec.rb +0 -201
- data/spec/mongoid/matchable/nor_spec.rb +0 -209
- data/spec/mongoid/relations/builders/referenced/many_spec.rb +0 -137
- data/spec/mongoid/relations/builders/referenced/many_to_many_spec.rb +0 -178
- data/spec/mongoid/relations/builders/referenced/one_spec.rb +0 -111
- data/spec/mongoid/relations/cascading/delete_spec.rb +0 -101
- data/spec/mongoid/relations/cascading/destroy_spec.rb +0 -47
- data/spec/mongoid/relations/cascading/nullify_spec.rb +0 -32
- data/spec/mongoid/relations/cascading/restrict_spec.rb +0 -68
- data/spec/mongoid/relations/cascading_spec.rb +0 -355
- data/spec/mongoid/relations/constraint_spec.rb +0 -75
- data/spec/mongoid/relations/conversions_spec.rb +0 -128
- data/spec/mongoid/relations/metadata_spec.rb +0 -1985
- data/spec/mongoid/relations/options_spec.rb +0 -35
- data/spec/rails/controller_extension/controller_runtime_spec.rb +0 -110
- data/spec/support/cluster_config.rb +0 -158
- data/spec/support/constraints.rb +0 -101
- data/spec/support/macros.rb +0 -20
- data/spec/support/session_registry.rb +0 -50
- data/spec/support/spec_config.rb +0 -42
@@ -1,290 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
module Mongoid
|
3
|
-
module Relations
|
4
|
-
module Referenced
|
5
|
-
|
6
|
-
# This class defines the behaviour for all relations that are a
|
7
|
-
# one-to-one between documents in different collections.
|
8
|
-
class One < Relations::One
|
9
|
-
|
10
|
-
# The allowed options when defining this relation.
|
11
|
-
#
|
12
|
-
# @return [ Array<Symbol> ] The allowed options when defining this relation.
|
13
|
-
#
|
14
|
-
# @since 6.0.0
|
15
|
-
VALID_OPTIONS = [
|
16
|
-
:as,
|
17
|
-
:autobuild,
|
18
|
-
:autosave,
|
19
|
-
:dependent,
|
20
|
-
:foreign_key,
|
21
|
-
:primary_key
|
22
|
-
].freeze
|
23
|
-
|
24
|
-
# Instantiate a new references_one relation. Will set the foreign key
|
25
|
-
# and the base on the inverse object.
|
26
|
-
#
|
27
|
-
# @example Create the new relation.
|
28
|
-
# Referenced::One.new(base, target, metadata)
|
29
|
-
#
|
30
|
-
# @param [ Document ] base The document this relation hangs off of.
|
31
|
-
# @param [ Document ] target The target (child) of the relation.
|
32
|
-
# @param [ Metadata ] metadata The relation's metadata.
|
33
|
-
def initialize(base, target, metadata)
|
34
|
-
init(base, target, metadata) do
|
35
|
-
raise_mixed if klass.embedded? && !klass.cyclic?
|
36
|
-
characterize_one(target)
|
37
|
-
bind_one
|
38
|
-
target.save if persistable?
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
# Removes the association between the base document and the target
|
43
|
-
# document by deleting the foreign key and the reference, orphaning
|
44
|
-
# the target document in the process.
|
45
|
-
#
|
46
|
-
# @example Nullify the relation.
|
47
|
-
# person.game.nullify
|
48
|
-
#
|
49
|
-
# @since 2.0.0.rc.1
|
50
|
-
def nullify
|
51
|
-
unbind_one
|
52
|
-
target.save
|
53
|
-
end
|
54
|
-
|
55
|
-
# Substitutes the supplied target document for the existing document
|
56
|
-
# in the relation. If the new target is nil, perform the necessary
|
57
|
-
# deletion.
|
58
|
-
#
|
59
|
-
# @example Replace the relation.
|
60
|
-
# person.game.substitute(new_game)
|
61
|
-
#
|
62
|
-
# @param [ Array<Document> ] replacement The replacement target.
|
63
|
-
#
|
64
|
-
# @return [ One ] The relation.
|
65
|
-
#
|
66
|
-
# @since 2.0.0.rc.1
|
67
|
-
def substitute(replacement)
|
68
|
-
unbind_one
|
69
|
-
if persistable?
|
70
|
-
if __metadata.destructive?
|
71
|
-
send(__metadata.dependent)
|
72
|
-
else
|
73
|
-
save if persisted?
|
74
|
-
end
|
75
|
-
end
|
76
|
-
One.new(base, replacement, __metadata) if replacement
|
77
|
-
end
|
78
|
-
|
79
|
-
private
|
80
|
-
|
81
|
-
# Instantiate the binding associated with this relation.
|
82
|
-
#
|
83
|
-
# @example Get the binding.
|
84
|
-
# relation.binding([ address ])
|
85
|
-
#
|
86
|
-
# @return [ Binding ] The binding object.
|
87
|
-
def binding
|
88
|
-
Bindings::Referenced::One.new(base, target, __metadata)
|
89
|
-
end
|
90
|
-
|
91
|
-
# Are we able to persist this relation?
|
92
|
-
#
|
93
|
-
# @example Can we persist the relation?
|
94
|
-
# relation.persistable?
|
95
|
-
#
|
96
|
-
# @return [ true, false ] If the relation is persistable.
|
97
|
-
#
|
98
|
-
# @since 2.1.0
|
99
|
-
def persistable?
|
100
|
-
base.persisted? && !_binding? && !_building?
|
101
|
-
end
|
102
|
-
|
103
|
-
class << self
|
104
|
-
|
105
|
-
# Return the builder that is responsible for generating the documents
|
106
|
-
# that will be used by this relation.
|
107
|
-
#
|
108
|
-
# @example Get the builder.
|
109
|
-
# Referenced::One.builder(meta, object)
|
110
|
-
#
|
111
|
-
# @param [ Document ] base The base document.
|
112
|
-
# @param [ Metadata ] meta The metadata of the relation.
|
113
|
-
# @param [ Document, Hash ] object A document or attributes to build
|
114
|
-
# with.
|
115
|
-
#
|
116
|
-
# @return [ Builder ] A new builder object.
|
117
|
-
#
|
118
|
-
# @since 2.0.0.rc.1
|
119
|
-
def builder(base, meta, object)
|
120
|
-
Builders::Referenced::One.new(base, meta, object)
|
121
|
-
end
|
122
|
-
|
123
|
-
# Get the standard criteria used for querying this relation.
|
124
|
-
#
|
125
|
-
# @example Get the criteria.
|
126
|
-
# Proxy.criteria(meta, id, Model)
|
127
|
-
#
|
128
|
-
# @param [ Metadata ] metadata The metadata.
|
129
|
-
# @param [ Object ] object The value of the foreign key.
|
130
|
-
# @param [ Class ] type The optional type.
|
131
|
-
#
|
132
|
-
# @return [ Criteria ] The criteria.
|
133
|
-
#
|
134
|
-
# @since 2.1.0
|
135
|
-
def criteria(metadata, object, type = nil)
|
136
|
-
crit = metadata.klass.where(metadata.foreign_key => object)
|
137
|
-
if metadata.polymorphic?
|
138
|
-
crit = crit.where(metadata.type => type.name)
|
139
|
-
end
|
140
|
-
crit
|
141
|
-
end
|
142
|
-
|
143
|
-
def eager_load_klass
|
144
|
-
Relations::Eager::HasOne
|
145
|
-
end
|
146
|
-
|
147
|
-
# Returns true if the relation is an embedded one. In this case
|
148
|
-
# always false.
|
149
|
-
#
|
150
|
-
# @example Is this relation embedded?
|
151
|
-
# Referenced::One.embedded?
|
152
|
-
#
|
153
|
-
# @return [ false ] Always false.
|
154
|
-
#
|
155
|
-
# @since 2.0.0.rc.1
|
156
|
-
def embedded?
|
157
|
-
false
|
158
|
-
end
|
159
|
-
|
160
|
-
# Get the foreign key for the provided name.
|
161
|
-
#
|
162
|
-
# @example Get the foreign key.
|
163
|
-
# Referenced::One.foreign_key(:person)
|
164
|
-
#
|
165
|
-
# @param [ Symbol ] name The name.
|
166
|
-
#
|
167
|
-
# @return [ String ] The foreign key.
|
168
|
-
#
|
169
|
-
# @since 3.0.0
|
170
|
-
def foreign_key(name)
|
171
|
-
"#{name}#{foreign_key_suffix}"
|
172
|
-
end
|
173
|
-
|
174
|
-
# Get the default value for the foreign key.
|
175
|
-
#
|
176
|
-
# @example Get the default.
|
177
|
-
# Referenced::One.foreign_key_default
|
178
|
-
#
|
179
|
-
# @return [ nil ] Always nil.
|
180
|
-
#
|
181
|
-
# @since 2.0.0.rc.1
|
182
|
-
def foreign_key_default
|
183
|
-
nil
|
184
|
-
end
|
185
|
-
|
186
|
-
# Returns the suffix of the foreign key field, either "_id" or "_ids".
|
187
|
-
#
|
188
|
-
# @example Get the suffix for the foreign key.
|
189
|
-
# Referenced::One.foreign_key_suffix
|
190
|
-
#
|
191
|
-
# @return [ String ] "_id"
|
192
|
-
#
|
193
|
-
# @since 2.0.0.rc.1
|
194
|
-
def foreign_key_suffix
|
195
|
-
"_id"
|
196
|
-
end
|
197
|
-
|
198
|
-
# Returns the macro for this relation. Used mostly as a helper in
|
199
|
-
# reflection.
|
200
|
-
#
|
201
|
-
# @example Get the macro.
|
202
|
-
# Referenced::One.macro
|
203
|
-
#
|
204
|
-
# @return [ Symbol ] :has_one.
|
205
|
-
def macro
|
206
|
-
:has_one
|
207
|
-
end
|
208
|
-
|
209
|
-
# Return the nested builder that is responsible for generating the documents
|
210
|
-
# that will be used by this relation.
|
211
|
-
#
|
212
|
-
# @example Get the nested builder.
|
213
|
-
# Referenced::One.builder(attributes, options)
|
214
|
-
#
|
215
|
-
# @param [ Metadata ] metadata The relation metadata.
|
216
|
-
# @param [ Hash ] attributes The attributes to build with.
|
217
|
-
# @param [ Hash ] options The options for the builder.
|
218
|
-
#
|
219
|
-
# @option options [ true, false ] :allow_destroy Can documents be
|
220
|
-
# deleted?
|
221
|
-
# @option options [ Integer ] :limit Max number of documents to
|
222
|
-
# create at once.
|
223
|
-
# @option options [ Proc, Symbol ] :reject_if If documents match this
|
224
|
-
# option then they are ignored.
|
225
|
-
# @option options [ true, false ] :update_only Only existing documents
|
226
|
-
# can be modified.
|
227
|
-
#
|
228
|
-
# @return [ NestedBuilder ] A newly instantiated nested builder object.
|
229
|
-
#
|
230
|
-
# @since 2.0.0.rc.1
|
231
|
-
def nested_builder(metadata, attributes, options)
|
232
|
-
Builders::NestedAttributes::One.new(metadata, attributes, options)
|
233
|
-
end
|
234
|
-
|
235
|
-
# Get the path calculator for the supplied document.
|
236
|
-
#
|
237
|
-
# @example Get the path calculator.
|
238
|
-
# Proxy.path(document)
|
239
|
-
#
|
240
|
-
# @param [ Document ] document The document to calculate on.
|
241
|
-
#
|
242
|
-
# @return [ Root ] The root atomic path calculator.
|
243
|
-
#
|
244
|
-
# @since 2.1.0
|
245
|
-
def path(document)
|
246
|
-
Mongoid::Atomic::Paths::Root.new(document)
|
247
|
-
end
|
248
|
-
|
249
|
-
# Tells the caller if this relation is one that stores the foreign
|
250
|
-
# key on its own objects.
|
251
|
-
#
|
252
|
-
# @example Does this relation store a foreign key?
|
253
|
-
# Referenced::One.stores_foreign_key?
|
254
|
-
#
|
255
|
-
# @return [ false ] Always false.
|
256
|
-
#
|
257
|
-
# @since 2.0.0.rc.1
|
258
|
-
def stores_foreign_key?
|
259
|
-
false
|
260
|
-
end
|
261
|
-
|
262
|
-
# Get the valid options allowed with this relation.
|
263
|
-
#
|
264
|
-
# @example Get the valid options.
|
265
|
-
# Relation.valid_options
|
266
|
-
#
|
267
|
-
# @return [ Array<Symbol> ] The valid options.
|
268
|
-
#
|
269
|
-
# @since 2.1.0
|
270
|
-
def valid_options
|
271
|
-
VALID_OPTIONS
|
272
|
-
end
|
273
|
-
|
274
|
-
# Get the default validation setting for the relation. Determines if
|
275
|
-
# by default a validates associated will occur.
|
276
|
-
#
|
277
|
-
# @example Get the validation default.
|
278
|
-
# Proxy.validation_default
|
279
|
-
#
|
280
|
-
# @return [ true, false ] The validation default.
|
281
|
-
#
|
282
|
-
# @since 2.1.9
|
283
|
-
def validation_default
|
284
|
-
true
|
285
|
-
end
|
286
|
-
end
|
287
|
-
end
|
288
|
-
end
|
289
|
-
end
|
290
|
-
end
|
@@ -1,169 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
module Mongoid
|
3
|
-
module Relations
|
4
|
-
|
5
|
-
# This module handles the behaviour for synchronizing foreign keys between
|
6
|
-
# both sides of a many to many relations.
|
7
|
-
module Synchronization
|
8
|
-
extend ActiveSupport::Concern
|
9
|
-
|
10
|
-
# Is the document able to be synced on the inverse side? This is only if
|
11
|
-
# the key has changed and the relation bindings have not been run.
|
12
|
-
#
|
13
|
-
# @example Are the foreign keys syncable?
|
14
|
-
# document._syncable??(metadata)
|
15
|
-
#
|
16
|
-
# @param [ Metadata ] metadata The relation metadata.
|
17
|
-
#
|
18
|
-
# @return [ true, false ] If we can sync.
|
19
|
-
#
|
20
|
-
# @since 2.1.0
|
21
|
-
def _syncable?(metadata)
|
22
|
-
!_synced?(metadata.foreign_key) && send(metadata.foreign_key_check)
|
23
|
-
end
|
24
|
-
|
25
|
-
# Get the synced foreign keys.
|
26
|
-
#
|
27
|
-
# @example Get the synced foreign keys.
|
28
|
-
# document._synced
|
29
|
-
#
|
30
|
-
# @return [ Hash ] The synced foreign keys.
|
31
|
-
#
|
32
|
-
# @since 2.1.0
|
33
|
-
def _synced
|
34
|
-
@_synced ||= {}
|
35
|
-
end
|
36
|
-
|
37
|
-
# Has the document been synced for the foreign key?
|
38
|
-
#
|
39
|
-
# @example Has the document been synced?
|
40
|
-
# document._synced??
|
41
|
-
#
|
42
|
-
# @param [ String ] foreign_key The foreign key.
|
43
|
-
#
|
44
|
-
# @return [ true, false ] If we can sync.
|
45
|
-
#
|
46
|
-
# @since 2.1.0
|
47
|
-
def _synced?(foreign_key)
|
48
|
-
!!_synced[foreign_key]
|
49
|
-
end
|
50
|
-
|
51
|
-
# Update the inverse keys on destroy.
|
52
|
-
#
|
53
|
-
# @example Update the inverse keys.
|
54
|
-
# document.remove_inverse_keys(metadata)
|
55
|
-
#
|
56
|
-
# @param [ Metadata ] meta The document metadata.
|
57
|
-
#
|
58
|
-
# @return [ Object ] The updated values.
|
59
|
-
#
|
60
|
-
# @since 2.2.1
|
61
|
-
def remove_inverse_keys(meta)
|
62
|
-
foreign_keys = send(meta.foreign_key)
|
63
|
-
unless foreign_keys.nil? || foreign_keys.empty?
|
64
|
-
meta.criteria(foreign_keys, self.class).pull(meta.inverse_foreign_key => _id)
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
# Update the inverse keys for the relation.
|
69
|
-
#
|
70
|
-
# @example Update the inverse keys
|
71
|
-
# document.update_inverse_keys(metadata)
|
72
|
-
#
|
73
|
-
# @param [ Metadata ] meta The document metadata.
|
74
|
-
#
|
75
|
-
# @return [ Object ] The updated values.
|
76
|
-
#
|
77
|
-
# @since 2.1.0
|
78
|
-
def update_inverse_keys(meta)
|
79
|
-
if changes.has_key?(meta.foreign_key)
|
80
|
-
old, new = changes[meta.foreign_key]
|
81
|
-
adds, subs = new - (old || []), (old || []) - new
|
82
|
-
|
83
|
-
# If we are autosaving we don't want a duplicate to get added - the
|
84
|
-
# $addToSet would run previously and then the $push and $each from the
|
85
|
-
# inverse on the autosave would cause this. We delete each id from
|
86
|
-
# what's in memory in case a mix of id addition and object addition
|
87
|
-
# had occurred.
|
88
|
-
if meta.autosave?
|
89
|
-
send(meta.name).in_memory.each do |doc|
|
90
|
-
adds.delete_one(doc._id)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
|
94
|
-
unless adds.empty?
|
95
|
-
meta.criteria(adds, self.class).without_options.add_to_set(meta.inverse_foreign_key => _id)
|
96
|
-
end
|
97
|
-
unless subs.empty?
|
98
|
-
meta.criteria(subs, self.class).without_options.pull(meta.inverse_foreign_key => _id)
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
module ClassMethods
|
104
|
-
|
105
|
-
# Set up the syncing of many to many foreign keys.
|
106
|
-
#
|
107
|
-
# @example Set up the syncing.
|
108
|
-
# Person.synced(metadata)
|
109
|
-
#
|
110
|
-
# @param [ Metadata ] metadata The relation metadata.
|
111
|
-
#
|
112
|
-
# @since 2.1.0
|
113
|
-
def _synced(metadata)
|
114
|
-
unless metadata.forced_nil_inverse?
|
115
|
-
synced_save(metadata)
|
116
|
-
synced_destroy(metadata)
|
117
|
-
end
|
118
|
-
end
|
119
|
-
|
120
|
-
private
|
121
|
-
|
122
|
-
# Set up the sync of inverse keys that needs to happen on a save.
|
123
|
-
#
|
124
|
-
# If the foreign key field has changed and the document is not
|
125
|
-
# synced, $addToSet the new ids, $pull the ones no longer in the
|
126
|
-
# array from the inverse side.
|
127
|
-
#
|
128
|
-
# @example Set up the save syncing.
|
129
|
-
# Person.synced_save(metadata)
|
130
|
-
#
|
131
|
-
# @param [ Metadata ] metadata The relation metadata.
|
132
|
-
#
|
133
|
-
# @return [ Class ] The class getting set up.
|
134
|
-
#
|
135
|
-
# @since 2.1.0
|
136
|
-
def synced_save(metadata)
|
137
|
-
set_callback(
|
138
|
-
:save,
|
139
|
-
:after,
|
140
|
-
if: ->(doc){ doc._syncable?(metadata) }
|
141
|
-
) do |doc|
|
142
|
-
doc.update_inverse_keys(metadata)
|
143
|
-
end
|
144
|
-
self
|
145
|
-
end
|
146
|
-
|
147
|
-
# Set up the sync of inverse keys that needs to happen on a destroy.
|
148
|
-
#
|
149
|
-
# @example Set up the destroy syncing.
|
150
|
-
# Person.synced_destroy(metadata)
|
151
|
-
#
|
152
|
-
# @param [ Metadata ] metadata The relation metadata.
|
153
|
-
#
|
154
|
-
# @return [ Class ] The class getting set up.
|
155
|
-
#
|
156
|
-
# @since 2.2.1
|
157
|
-
def synced_destroy(metadata)
|
158
|
-
set_callback(
|
159
|
-
:destroy,
|
160
|
-
:after
|
161
|
-
) do |doc|
|
162
|
-
doc.remove_inverse_keys(metadata)
|
163
|
-
end
|
164
|
-
self
|
165
|
-
end
|
166
|
-
end
|
167
|
-
end
|
168
|
-
end
|
169
|
-
end
|