activerecord 3.2.22.5 → 5.2.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +657 -621
- data/MIT-LICENSE +2 -2
- data/README.rdoc +41 -46
- data/examples/performance.rb +55 -42
- data/examples/simple.rb +6 -5
- data/lib/active_record/aggregations.rb +264 -236
- data/lib/active_record/association_relation.rb +40 -0
- data/lib/active_record/associations/alias_tracker.rb +47 -42
- data/lib/active_record/associations/association.rb +127 -75
- data/lib/active_record/associations/association_scope.rb +126 -92
- data/lib/active_record/associations/belongs_to_association.rb +78 -27
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +9 -4
- data/lib/active_record/associations/builder/association.rb +117 -32
- data/lib/active_record/associations/builder/belongs_to.rb +135 -60
- data/lib/active_record/associations/builder/collection_association.rb +61 -54
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +120 -42
- data/lib/active_record/associations/builder/has_many.rb +10 -64
- data/lib/active_record/associations/builder/has_one.rb +19 -51
- data/lib/active_record/associations/builder/singular_association.rb +28 -18
- data/lib/active_record/associations/collection_association.rb +226 -293
- data/lib/active_record/associations/collection_proxy.rb +1067 -69
- data/lib/active_record/associations/foreign_association.rb +13 -0
- data/lib/active_record/associations/has_many_association.rb +83 -47
- data/lib/active_record/associations/has_many_through_association.rb +98 -65
- data/lib/active_record/associations/has_one_association.rb +57 -20
- data/lib/active_record/associations/has_one_through_association.rb +18 -9
- data/lib/active_record/associations/join_dependency/join_association.rb +48 -126
- data/lib/active_record/associations/join_dependency/join_base.rb +11 -12
- data/lib/active_record/associations/join_dependency/join_part.rb +35 -42
- data/lib/active_record/associations/join_dependency.rb +212 -164
- data/lib/active_record/associations/preloader/association.rb +95 -89
- data/lib/active_record/associations/preloader/through_association.rb +84 -44
- data/lib/active_record/associations/preloader.rb +123 -111
- data/lib/active_record/associations/singular_association.rb +33 -24
- data/lib/active_record/associations/through_association.rb +60 -26
- data/lib/active_record/associations.rb +1759 -1506
- data/lib/active_record/attribute_assignment.rb +60 -193
- data/lib/active_record/attribute_decorators.rb +90 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +55 -8
- data/lib/active_record/attribute_methods/dirty.rb +113 -74
- data/lib/active_record/attribute_methods/primary_key.rb +106 -77
- data/lib/active_record/attribute_methods/query.rb +8 -5
- data/lib/active_record/attribute_methods/read.rb +63 -114
- data/lib/active_record/attribute_methods/serialization.rb +60 -90
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +69 -43
- data/lib/active_record/attribute_methods/write.rb +43 -45
- data/lib/active_record/attribute_methods.rb +366 -149
- data/lib/active_record/attributes.rb +266 -0
- data/lib/active_record/autosave_association.rb +312 -225
- data/lib/active_record/base.rb +114 -505
- data/lib/active_record/callbacks.rb +145 -67
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +32 -23
- data/lib/active_record/collection_cache_key.rb +53 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +883 -284
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +16 -2
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +350 -200
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +82 -27
- data/lib/active_record/connection_adapters/abstract/quoting.rb +150 -65
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +146 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +477 -284
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1100 -310
- data/lib/active_record/connection_adapters/abstract/transaction.rb +283 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +450 -118
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +657 -446
- data/lib/active_record/connection_adapters/column.rb +50 -255
- data/lib/active_record/connection_adapters/connection_specification.rb +287 -0
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +33 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +140 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +87 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +80 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +148 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +59 -210
- data/lib/active_record/connection_adapters/postgresql/column.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +168 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +206 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +774 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +620 -1080
- data/lib/active_record/connection_adapters/schema_cache.rb +85 -36
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +67 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +106 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +545 -27
- data/lib/active_record/connection_adapters/statement_pool.rb +34 -13
- data/lib/active_record/connection_handling.rb +145 -0
- data/lib/active_record/core.rb +559 -0
- data/lib/active_record/counter_cache.rb +200 -105
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +107 -69
- data/lib/active_record/enum.rb +244 -0
- data/lib/active_record/errors.rb +245 -60
- data/lib/active_record/explain.rb +35 -71
- data/lib/active_record/explain_registry.rb +32 -0
- data/lib/active_record/explain_subscriber.rb +18 -9
- data/lib/active_record/fixture_set/file.rb +82 -0
- data/lib/active_record/fixtures.rb +418 -275
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +209 -100
- data/lib/active_record/integration.rb +116 -21
- data/lib/active_record/internal_metadata.rb +45 -0
- data/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/lib/active_record/locale/en.yml +9 -1
- data/lib/active_record/locking/optimistic.rb +107 -94
- data/lib/active_record/locking/pessimistic.rb +20 -8
- data/lib/active_record/log_subscriber.rb +99 -34
- data/lib/active_record/migration/command_recorder.rb +199 -64
- data/lib/active_record/migration/compatibility.rb +217 -0
- data/lib/active_record/migration/join_table.rb +17 -0
- data/lib/active_record/migration.rb +893 -296
- data/lib/active_record/model_schema.rb +328 -175
- data/lib/active_record/nested_attributes.rb +338 -242
- data/lib/active_record/no_touching.rb +58 -0
- data/lib/active_record/null_relation.rb +68 -0
- data/lib/active_record/persistence.rb +557 -170
- data/lib/active_record/query_cache.rb +14 -43
- data/lib/active_record/querying.rb +36 -24
- data/lib/active_record/railtie.rb +147 -52
- data/lib/active_record/railties/console_sandbox.rb +5 -4
- data/lib/active_record/railties/controller_runtime.rb +13 -6
- data/lib/active_record/railties/databases.rake +206 -488
- data/lib/active_record/readonly_attributes.rb +4 -6
- data/lib/active_record/reflection.rb +734 -228
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +249 -52
- data/lib/active_record/relation/calculations.rb +330 -284
- data/lib/active_record/relation/delegation.rb +135 -37
- data/lib/active_record/relation/finder_methods.rb +450 -287
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +193 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +56 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +42 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder.rb +132 -43
- data/lib/active_record/relation/query_attribute.rb +45 -0
- data/lib/active_record/relation/query_methods.rb +1037 -221
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +48 -151
- data/lib/active_record/relation/where_clause.rb +186 -0
- data/lib/active_record/relation/where_clause_factory.rb +34 -0
- data/lib/active_record/relation.rb +451 -359
- data/lib/active_record/result.rb +129 -20
- data/lib/active_record/runtime_registry.rb +24 -0
- data/lib/active_record/sanitization.rb +164 -136
- data/lib/active_record/schema.rb +31 -19
- data/lib/active_record/schema_dumper.rb +154 -107
- data/lib/active_record/schema_migration.rb +56 -0
- data/lib/active_record/scoping/default.rb +108 -98
- data/lib/active_record/scoping/named.rb +125 -112
- data/lib/active_record/scoping.rb +77 -123
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +10 -6
- data/lib/active_record/statement_cache.rb +121 -0
- data/lib/active_record/store.rb +175 -16
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +82 -0
- data/lib/active_record/tasks/database_tasks.rb +337 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
- data/lib/active_record/timestamp.rb +80 -41
- data/lib/active_record/touch_later.rb +64 -0
- data/lib/active_record/transactions.rb +240 -119
- data/lib/active_record/translation.rb +2 -0
- data/lib/active_record/type/adapter_specific_registry.rb +136 -0
- data/lib/active_record/type/date.rb +9 -0
- data/lib/active_record/type/date_time.rb +9 -0
- data/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/lib/active_record/type/hash_lookup_type_map.rb +25 -0
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +71 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +21 -0
- data/lib/active_record/type/type_map.rb +62 -0
- data/lib/active_record/type/unsigned_integer.rb +17 -0
- data/lib/active_record/type.rb +79 -0
- data/lib/active_record/type_caster/connection.rb +33 -0
- data/lib/active_record/type_caster/map.rb +23 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +35 -18
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +68 -0
- data/lib/active_record/validations/uniqueness.rb +133 -75
- data/lib/active_record/validations.rb +53 -43
- data/lib/active_record/version.rb +7 -7
- data/lib/active_record.rb +89 -57
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +61 -8
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +46 -0
- data/lib/rails/generators/active_record/migration.rb +28 -8
- data/lib/rails/generators/active_record/model/model_generator.rb +23 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +13 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +1 -1
- data/lib/rails/generators/active_record.rb +10 -16
- metadata +141 -62
- data/examples/associations.png +0 -0
- data/lib/active_record/associations/has_and_belongs_to_many_association.rb +0 -63
- data/lib/active_record/associations/join_helper.rb +0 -55
- data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
- data/lib/active_record/associations/preloader/collection_association.rb +0 -24
- data/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +0 -60
- data/lib/active_record/associations/preloader/has_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -15
- data/lib/active_record/associations/preloader/has_one.rb +0 -23
- data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
- data/lib/active_record/associations/preloader/singular_association.rb +0 -21
- data/lib/active_record/attribute_methods/deprecated_underscore_read.rb +0 -32
- data/lib/active_record/connection_adapters/abstract/connection_specification.rb +0 -191
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -441
- data/lib/active_record/connection_adapters/sqlite_adapter.rb +0 -583
- data/lib/active_record/dynamic_finder_match.rb +0 -68
- data/lib/active_record/dynamic_scope_match.rb +0 -23
- data/lib/active_record/fixtures/file.rb +0 -65
- data/lib/active_record/identity_map.rb +0 -162
- data/lib/active_record/observer.rb +0 -121
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -203
- data/lib/active_record/session_store.rb +0 -360
- data/lib/active_record/test_case.rb +0 -73
- data/lib/rails/generators/active_record/migration/templates/migration.rb +0 -34
- data/lib/rails/generators/active_record/model/templates/migration.rb +0 -15
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -12
- data/lib/rails/generators/active_record/observer/observer_generator.rb +0 -15
- data/lib/rails/generators/active_record/observer/templates/observer.rb +0 -4
- data/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +0 -25
- data/lib/rails/generators/active_record/session_migration/templates/migration.rb +0 -12
@@ -1,134 +1,168 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Associations
|
3
5
|
class AssociationScope #:nodoc:
|
4
|
-
|
5
|
-
|
6
|
-
|
6
|
+
def self.scope(association)
|
7
|
+
INSTANCE.scope(association)
|
8
|
+
end
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
+
def self.create(&block)
|
11
|
+
block ||= lambda { |val| val }
|
12
|
+
new(block)
|
13
|
+
end
|
10
14
|
|
11
|
-
def initialize(
|
12
|
-
@
|
13
|
-
@alias_tracker = AliasTracker.new klass.connection
|
15
|
+
def initialize(value_transformation)
|
16
|
+
@value_transformation = value_transformation
|
14
17
|
end
|
15
18
|
|
16
|
-
|
19
|
+
INSTANCE = create
|
20
|
+
|
21
|
+
def scope(association)
|
22
|
+
klass = association.klass
|
23
|
+
reflection = association.reflection
|
17
24
|
scope = klass.unscoped
|
18
|
-
|
25
|
+
owner = association.owner
|
26
|
+
chain = get_chain(reflection, association, scope.alias_tracker)
|
27
|
+
|
28
|
+
scope.extending! reflection.extensions
|
29
|
+
add_constraints(scope, owner, chain)
|
30
|
+
end
|
19
31
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
:readonly, :include, :order, :limit, :joins, :group, :having, :offset, :select))
|
32
|
+
def self.get_bind_values(owner, chain)
|
33
|
+
binds = []
|
34
|
+
last_reflection = chain.last
|
24
35
|
|
25
|
-
|
26
|
-
|
36
|
+
binds << last_reflection.join_id_for(owner)
|
37
|
+
if last_reflection.type
|
38
|
+
binds << owner.class.polymorphic_name
|
27
39
|
end
|
28
40
|
|
29
|
-
|
30
|
-
|
31
|
-
|
41
|
+
chain.each_cons(2).each do |reflection, next_reflection|
|
42
|
+
if reflection.type
|
43
|
+
binds << next_reflection.klass.polymorphic_name
|
44
|
+
end
|
45
|
+
end
|
46
|
+
binds
|
32
47
|
end
|
33
48
|
|
34
|
-
private
|
49
|
+
# TODO Change this to private once we've dropped Ruby 2.2 support.
|
50
|
+
# Workaround for Ruby 2.2 "private attribute?" warning.
|
51
|
+
protected
|
35
52
|
|
36
|
-
|
37
|
-
tables = construct_tables
|
53
|
+
attr_reader :value_transformation
|
38
54
|
|
39
|
-
|
40
|
-
|
55
|
+
private
|
56
|
+
def join(table, constraint)
|
57
|
+
table.create_join(table, table.create_on(constraint))
|
58
|
+
end
|
41
59
|
|
42
|
-
|
43
|
-
|
60
|
+
def last_chain_scope(scope, reflection, owner)
|
61
|
+
join_keys = reflection.join_keys
|
62
|
+
key = join_keys.key
|
63
|
+
foreign_key = join_keys.foreign_key
|
44
64
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
eq(join_table[reflection.association_foreign_key])
|
49
|
-
))
|
65
|
+
table = reflection.aliased_table
|
66
|
+
value = transform_value(owner[foreign_key])
|
67
|
+
scope = apply_scope(scope, table, key, value)
|
50
68
|
|
51
|
-
|
69
|
+
if reflection.type
|
70
|
+
polymorphic_type = transform_value(owner.class.polymorphic_name)
|
71
|
+
scope = apply_scope(scope, table, reflection.type, polymorphic_type)
|
52
72
|
end
|
53
73
|
|
54
|
-
|
55
|
-
|
56
|
-
key = reflection.association_primary_key(klass)
|
57
|
-
else
|
58
|
-
key = reflection.association_primary_key
|
59
|
-
end
|
74
|
+
scope
|
75
|
+
end
|
60
76
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
foreign_key = reflection.active_record_primary_key
|
65
|
-
end
|
77
|
+
def transform_value(value)
|
78
|
+
value_transformation.call(value)
|
79
|
+
end
|
66
80
|
|
67
|
-
|
81
|
+
def next_chain_scope(scope, reflection, next_reflection)
|
82
|
+
join_keys = reflection.join_keys
|
83
|
+
key = join_keys.key
|
84
|
+
foreign_key = join_keys.foreign_key
|
68
85
|
|
69
|
-
|
70
|
-
|
86
|
+
table = reflection.aliased_table
|
87
|
+
foreign_table = next_reflection.aliased_table
|
88
|
+
constraint = table[key].eq(foreign_table[foreign_key])
|
71
89
|
|
72
|
-
|
73
|
-
|
74
|
-
|
90
|
+
if reflection.type
|
91
|
+
value = transform_value(next_reflection.klass.polymorphic_name)
|
92
|
+
scope = apply_scope(scope, table, reflection.type, value)
|
93
|
+
end
|
75
94
|
|
76
|
-
|
77
|
-
|
78
|
-
condition = disambiguate_condition(table, condition)
|
79
|
-
end
|
95
|
+
scope.joins!(join(foreign_table, constraint))
|
96
|
+
end
|
80
97
|
|
81
|
-
|
82
|
-
|
83
|
-
else
|
84
|
-
constraint = table[key].eq(foreign_table[foreign_key])
|
98
|
+
class ReflectionProxy < SimpleDelegator # :nodoc:
|
99
|
+
attr_reader :aliased_table
|
85
100
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
101
|
+
def initialize(reflection, aliased_table)
|
102
|
+
super(reflection)
|
103
|
+
@aliased_table = aliased_table
|
104
|
+
end
|
90
105
|
|
91
|
-
|
106
|
+
def all_includes; nil; end
|
107
|
+
end
|
92
108
|
|
93
|
-
|
94
|
-
|
95
|
-
|
109
|
+
def get_chain(reflection, association, tracker)
|
110
|
+
name = reflection.name
|
111
|
+
chain = [Reflection::RuntimeReflection.new(reflection, association)]
|
112
|
+
reflection.chain.drop(1).each do |refl|
|
113
|
+
aliased_table = tracker.aliased_table_for(
|
114
|
+
refl.table_name,
|
115
|
+
refl.alias_candidate(name),
|
116
|
+
refl.klass.type_caster
|
117
|
+
)
|
118
|
+
chain << ReflectionProxy.new(refl, aliased_table)
|
96
119
|
end
|
120
|
+
chain
|
97
121
|
end
|
98
122
|
|
99
|
-
scope
|
100
|
-
|
123
|
+
def add_constraints(scope, owner, chain)
|
124
|
+
scope = last_chain_scope(scope, chain.last, owner)
|
101
125
|
|
102
|
-
|
103
|
-
|
104
|
-
|
126
|
+
chain.each_cons(2) do |reflection, next_reflection|
|
127
|
+
scope = next_chain_scope(scope, reflection, next_reflection)
|
128
|
+
end
|
105
129
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
130
|
+
chain_head = chain.first
|
131
|
+
chain.reverse_each do |reflection|
|
132
|
+
# Exclude the scope of the association itself, because that
|
133
|
+
# was already merged in the #scope method.
|
134
|
+
reflection.constraints.each do |scope_chain_item|
|
135
|
+
item = eval_scope(reflection, scope_chain_item, owner)
|
136
|
+
|
137
|
+
if scope_chain_item == chain_head.scope
|
138
|
+
scope.merge! item.except(:where, :includes, :unscope, :order)
|
139
|
+
end
|
116
140
|
|
117
|
-
|
118
|
-
|
119
|
-
Hash[
|
120
|
-
condition.map do |k, v|
|
121
|
-
if v.is_a?(Hash)
|
122
|
-
[k, v]
|
123
|
-
else
|
124
|
-
[table.table_alias || table.name, { k => v }]
|
141
|
+
reflection.all_includes do
|
142
|
+
scope.includes! item.includes_values
|
125
143
|
end
|
144
|
+
|
145
|
+
scope.unscope!(*item.unscope_values)
|
146
|
+
scope.where_clause += item.where_clause
|
147
|
+
scope.order_values = item.order_values | scope.order_values
|
126
148
|
end
|
127
|
-
|
128
|
-
|
129
|
-
|
149
|
+
end
|
150
|
+
|
151
|
+
scope
|
152
|
+
end
|
153
|
+
|
154
|
+
def apply_scope(scope, table, key, value)
|
155
|
+
if scope.table == table
|
156
|
+
scope.where!(key => value)
|
157
|
+
else
|
158
|
+
scope.where!(table.name => { key => value })
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
def eval_scope(reflection, scope, owner)
|
163
|
+
relation = reflection.build_scope(reflection.aliased_table)
|
164
|
+
relation.instance_exec(owner, &scope) || relation
|
130
165
|
end
|
131
|
-
end
|
132
166
|
end
|
133
167
|
end
|
134
168
|
end
|
@@ -1,78 +1,129 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
|
-
# = Active Record Belongs To Associations
|
3
4
|
module Associations
|
5
|
+
# = Active Record Belongs To Association
|
4
6
|
class BelongsToAssociation < SingularAssociation #:nodoc:
|
7
|
+
def handle_dependency
|
8
|
+
return unless load_target
|
9
|
+
|
10
|
+
case options[:dependent]
|
11
|
+
when :destroy
|
12
|
+
target.destroy
|
13
|
+
raise ActiveRecord::Rollback unless target.destroyed?
|
14
|
+
else
|
15
|
+
target.send(options[:dependent])
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
5
19
|
def replace(record)
|
6
|
-
|
20
|
+
if record
|
21
|
+
raise_on_type_mismatch!(record)
|
22
|
+
update_counters_on_replace(record)
|
23
|
+
set_inverse_instance(record)
|
24
|
+
@updated = true
|
25
|
+
else
|
26
|
+
decrement_counters
|
27
|
+
end
|
7
28
|
|
8
|
-
update_counters(record)
|
9
29
|
replace_keys(record)
|
10
|
-
set_inverse_instance(record)
|
11
|
-
|
12
|
-
@updated = true if record
|
13
30
|
|
14
31
|
self.target = record
|
15
32
|
end
|
16
33
|
|
34
|
+
def inversed_from(record)
|
35
|
+
replace_keys(record)
|
36
|
+
super
|
37
|
+
end
|
38
|
+
|
39
|
+
def default(&block)
|
40
|
+
writer(owner.instance_exec(&block)) if reader.nil?
|
41
|
+
end
|
42
|
+
|
43
|
+
def reset
|
44
|
+
super
|
45
|
+
@updated = false
|
46
|
+
end
|
47
|
+
|
17
48
|
def updated?
|
18
49
|
@updated
|
19
50
|
end
|
20
51
|
|
52
|
+
def decrement_counters # :nodoc:
|
53
|
+
update_counters(-1)
|
54
|
+
end
|
55
|
+
|
56
|
+
def increment_counters # :nodoc:
|
57
|
+
update_counters(1)
|
58
|
+
end
|
59
|
+
|
60
|
+
def target_changed?
|
61
|
+
owner.saved_change_to_attribute?(reflection.foreign_key)
|
62
|
+
end
|
63
|
+
|
21
64
|
private
|
22
65
|
|
66
|
+
def update_counters(by)
|
67
|
+
if require_counter_update? && foreign_key_present?
|
68
|
+
if target && !stale_target?
|
69
|
+
target.increment!(reflection.counter_cache_column, by, touch: reflection.options[:touch])
|
70
|
+
else
|
71
|
+
klass.update_counters(target_id, reflection.counter_cache_column => by, touch: reflection.options[:touch])
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
23
76
|
def find_target?
|
24
77
|
!loaded? && foreign_key_present? && klass
|
25
78
|
end
|
26
79
|
|
27
|
-
def
|
28
|
-
|
29
|
-
|
30
|
-
if counter_cache_name && owner.persisted? && different_target?(record)
|
31
|
-
if record
|
32
|
-
record.class.increment_counter(counter_cache_name, record.id)
|
33
|
-
end
|
80
|
+
def require_counter_update?
|
81
|
+
reflection.counter_cache_column && owner.persisted?
|
82
|
+
end
|
34
83
|
|
35
|
-
|
36
|
-
|
37
|
-
|
84
|
+
def update_counters_on_replace(record)
|
85
|
+
if require_counter_update? && different_target?(record)
|
86
|
+
owner.instance_variable_set :@_after_replace_counter_called, true
|
87
|
+
record.increment!(reflection.counter_cache_column, touch: reflection.options[:touch])
|
88
|
+
decrement_counters
|
38
89
|
end
|
39
90
|
end
|
40
91
|
|
41
92
|
# Checks whether record is different to the current target, without loading it
|
42
93
|
def different_target?(record)
|
43
|
-
record.
|
44
|
-
record && record.id != owner[reflection.foreign_key]
|
94
|
+
record._read_attribute(primary_key(record)) != owner._read_attribute(reflection.foreign_key)
|
45
95
|
end
|
46
96
|
|
47
97
|
def replace_keys(record)
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
98
|
+
owner[reflection.foreign_key] = record ? record._read_attribute(primary_key(record)) : nil
|
99
|
+
end
|
100
|
+
|
101
|
+
def primary_key(record)
|
102
|
+
reflection.association_primary_key(record.class)
|
53
103
|
end
|
54
104
|
|
55
105
|
def foreign_key_present?
|
56
|
-
owner
|
106
|
+
owner._read_attribute(reflection.foreign_key)
|
57
107
|
end
|
58
108
|
|
59
109
|
# NOTE - for now, we're only supporting inverse setting from belongs_to back onto
|
60
110
|
# has_one associations.
|
61
111
|
def invertible_for?(record)
|
62
112
|
inverse = inverse_reflection_for(record)
|
63
|
-
inverse && inverse.
|
113
|
+
inverse && inverse.has_one?
|
64
114
|
end
|
65
115
|
|
66
116
|
def target_id
|
67
117
|
if options[:primary_key]
|
68
118
|
owner.send(reflection.name).try(:id)
|
69
119
|
else
|
70
|
-
owner
|
120
|
+
owner._read_attribute(reflection.foreign_key)
|
71
121
|
end
|
72
122
|
end
|
73
123
|
|
74
124
|
def stale_state
|
75
|
-
owner
|
125
|
+
result = owner._read_attribute(reflection.foreign_key) { |n| owner.send(:missing_attribute, n, caller) }
|
126
|
+
result && result.to_s
|
76
127
|
end
|
77
128
|
end
|
78
129
|
end
|
@@ -1,17 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
|
-
# = Active Record Belongs To Polymorphic Association
|
3
4
|
module Associations
|
5
|
+
# = Active Record Belongs To Polymorphic Association
|
4
6
|
class BelongsToPolymorphicAssociation < BelongsToAssociation #:nodoc:
|
5
7
|
def klass
|
6
8
|
type = owner[reflection.foreign_type]
|
7
9
|
type.presence && type.constantize
|
8
10
|
end
|
9
11
|
|
10
|
-
|
12
|
+
def target_changed?
|
13
|
+
super || owner.saved_change_to_attribute?(reflection.foreign_type)
|
14
|
+
end
|
11
15
|
|
16
|
+
private
|
12
17
|
def replace_keys(record)
|
13
18
|
super
|
14
|
-
owner[reflection.foreign_type] = record
|
19
|
+
owner[reflection.foreign_type] = record ? record.class.polymorphic_name : nil
|
15
20
|
end
|
16
21
|
|
17
22
|
def different_target?(record)
|
@@ -22,7 +27,7 @@ module ActiveRecord
|
|
22
27
|
reflection.polymorphic_inverse_of(record.class)
|
23
28
|
end
|
24
29
|
|
25
|
-
def raise_on_type_mismatch(record)
|
30
|
+
def raise_on_type_mismatch!(record)
|
26
31
|
# A polymorphic association cannot have a type mismatch, by definition
|
27
32
|
end
|
28
33
|
|
@@ -1,55 +1,140 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This is the parent Association class which defines the variables
|
4
|
+
# used by all associations.
|
5
|
+
#
|
6
|
+
# The hierarchy is defined as follows:
|
7
|
+
# Association
|
8
|
+
# - SingularAssociation
|
9
|
+
# - BelongsToAssociation
|
10
|
+
# - HasOneAssociation
|
11
|
+
# - CollectionAssociation
|
12
|
+
# - HasManyAssociation
|
13
|
+
|
14
|
+
module ActiveRecord::Associations::Builder # :nodoc:
|
2
15
|
class Association #:nodoc:
|
3
|
-
|
4
|
-
|
16
|
+
class << self
|
17
|
+
attr_accessor :extensions
|
18
|
+
end
|
19
|
+
self.extensions = []
|
20
|
+
|
21
|
+
VALID_OPTIONS = [:class_name, :anonymous_class, :foreign_key, :validate] # :nodoc:
|
22
|
+
|
23
|
+
def self.build(model, name, scope, options, &block)
|
24
|
+
if model.dangerous_attribute_method?(name)
|
25
|
+
raise ArgumentError, "You tried to define an association named #{name} on the model #{model.name}, but " \
|
26
|
+
"this will conflict with a method #{name} already defined by Active Record. " \
|
27
|
+
"Please choose a different association name."
|
28
|
+
end
|
29
|
+
|
30
|
+
extension = define_extensions model, name, &block
|
31
|
+
reflection = create_reflection model, name, scope, options, extension
|
32
|
+
define_accessors model, reflection
|
33
|
+
define_callbacks model, reflection
|
34
|
+
define_validations model, reflection
|
35
|
+
reflection
|
36
|
+
end
|
5
37
|
|
6
|
-
|
7
|
-
|
38
|
+
def self.create_reflection(model, name, scope, options, extension = nil)
|
39
|
+
raise ArgumentError, "association names must be a Symbol" unless name.kind_of?(Symbol)
|
8
40
|
|
9
|
-
|
41
|
+
validate_options(options)
|
10
42
|
|
11
|
-
|
12
|
-
|
43
|
+
scope = build_scope(scope, extension)
|
44
|
+
|
45
|
+
ActiveRecord::Reflection.create(macro, name, scope, options, model)
|
13
46
|
end
|
14
47
|
|
15
|
-
def
|
16
|
-
|
48
|
+
def self.build_scope(scope, extension)
|
49
|
+
new_scope = scope
|
50
|
+
|
51
|
+
if scope && scope.arity == 0
|
52
|
+
new_scope = proc { instance_exec(&scope) }
|
53
|
+
end
|
54
|
+
|
55
|
+
if extension
|
56
|
+
new_scope = wrap_scope new_scope, extension
|
57
|
+
end
|
58
|
+
|
59
|
+
new_scope
|
17
60
|
end
|
18
61
|
|
19
|
-
def
|
20
|
-
|
62
|
+
def self.wrap_scope(scope, extension)
|
63
|
+
scope
|
21
64
|
end
|
22
65
|
|
23
|
-
def
|
24
|
-
|
25
|
-
reflection = model.create_reflection(self.class.macro, name, options, model)
|
26
|
-
define_accessors
|
27
|
-
reflection
|
66
|
+
def self.macro
|
67
|
+
raise NotImplementedError
|
28
68
|
end
|
29
69
|
|
30
|
-
|
70
|
+
def self.valid_options(options)
|
71
|
+
VALID_OPTIONS + Association.extensions.flat_map(&:valid_options)
|
72
|
+
end
|
31
73
|
|
32
|
-
|
33
|
-
|
74
|
+
def self.validate_options(options)
|
75
|
+
options.assert_valid_keys(valid_options(options))
|
76
|
+
end
|
77
|
+
|
78
|
+
def self.define_extensions(model, name)
|
79
|
+
end
|
80
|
+
|
81
|
+
def self.define_callbacks(model, reflection)
|
82
|
+
if dependent = reflection.options[:dependent]
|
83
|
+
check_dependent_options(dependent)
|
84
|
+
add_destroy_callbacks(model, reflection)
|
34
85
|
end
|
35
86
|
|
36
|
-
|
37
|
-
|
38
|
-
define_writers
|
87
|
+
Association.extensions.each do |extension|
|
88
|
+
extension.build model, reflection
|
39
89
|
end
|
90
|
+
end
|
40
91
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
92
|
+
# Defines the setter and getter methods for the association
|
93
|
+
# class Post < ActiveRecord::Base
|
94
|
+
# has_many :comments
|
95
|
+
# end
|
96
|
+
#
|
97
|
+
# Post.first.comments and Post.first.comments= methods are defined by this method...
|
98
|
+
def self.define_accessors(model, reflection)
|
99
|
+
mixin = model.generated_association_methods
|
100
|
+
name = reflection.name
|
101
|
+
define_readers(mixin, name)
|
102
|
+
define_writers(mixin, name)
|
103
|
+
end
|
104
|
+
|
105
|
+
def self.define_readers(mixin, name)
|
106
|
+
mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
|
107
|
+
def #{name}
|
108
|
+
association(:#{name}).reader
|
45
109
|
end
|
46
|
-
|
110
|
+
CODE
|
111
|
+
end
|
47
112
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
association(name).writer(value)
|
113
|
+
def self.define_writers(mixin, name)
|
114
|
+
mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
|
115
|
+
def #{name}=(value)
|
116
|
+
association(:#{name}).writer(value)
|
52
117
|
end
|
118
|
+
CODE
|
119
|
+
end
|
120
|
+
|
121
|
+
def self.define_validations(model, reflection)
|
122
|
+
# noop
|
123
|
+
end
|
124
|
+
|
125
|
+
def self.valid_dependent_options
|
126
|
+
raise NotImplementedError
|
127
|
+
end
|
128
|
+
|
129
|
+
def self.check_dependent_options(dependent)
|
130
|
+
unless valid_dependent_options.include? dependent
|
131
|
+
raise ArgumentError, "The :dependent option must be one of #{valid_dependent_options}, but is :#{dependent}"
|
53
132
|
end
|
133
|
+
end
|
134
|
+
|
135
|
+
def self.add_destroy_callbacks(model, reflection)
|
136
|
+
name = reflection.name
|
137
|
+
model.before_destroy lambda { |o| o.association(name).handle_dependency }
|
138
|
+
end
|
54
139
|
end
|
55
140
|
end
|