activerecord 4.2.0 → 6.0.5.1
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 +852 -801
- data/MIT-LICENSE +4 -2
- data/README.rdoc +14 -13
- data/examples/performance.rb +33 -32
- data/examples/simple.rb +5 -4
- data/lib/active_record/advisory_lock_base.rb +18 -0
- data/lib/active_record/aggregations.rb +267 -249
- data/lib/active_record/association_relation.rb +26 -6
- data/lib/active_record/associations/alias_tracker.rb +29 -36
- data/lib/active_record/associations/association.rb +137 -55
- data/lib/active_record/associations/association_scope.rb +110 -132
- data/lib/active_record/associations/belongs_to_association.rb +67 -54
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -12
- data/lib/active_record/associations/builder/association.rb +27 -40
- data/lib/active_record/associations/builder/belongs_to.rb +69 -55
- data/lib/active_record/associations/builder/collection_association.rb +10 -29
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +58 -70
- data/lib/active_record/associations/builder/has_many.rb +8 -4
- data/lib/active_record/associations/builder/has_one.rb +46 -5
- data/lib/active_record/associations/builder/singular_association.rb +16 -10
- data/lib/active_record/associations/collection_association.rb +150 -275
- data/lib/active_record/associations/collection_proxy.rb +253 -152
- data/lib/active_record/associations/foreign_association.rb +20 -0
- data/lib/active_record/associations/has_many_association.rb +35 -84
- data/lib/active_record/associations/has_many_through_association.rb +62 -80
- data/lib/active_record/associations/has_one_association.rb +62 -49
- data/lib/active_record/associations/has_one_through_association.rb +20 -11
- data/lib/active_record/associations/join_dependency/join_association.rb +43 -78
- data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
- data/lib/active_record/associations/join_dependency/join_part.rb +14 -14
- data/lib/active_record/associations/join_dependency.rb +159 -162
- data/lib/active_record/associations/preloader/association.rb +102 -113
- data/lib/active_record/associations/preloader/through_association.rb +85 -65
- data/lib/active_record/associations/preloader.rb +96 -95
- data/lib/active_record/associations/singular_association.rb +18 -45
- data/lib/active_record/associations/through_association.rb +49 -24
- data/lib/active_record/associations.rb +1737 -1596
- data/lib/active_record/attribute_assignment.rb +57 -185
- data/lib/active_record/attribute_decorators.rb +39 -17
- data/lib/active_record/attribute_methods/before_type_cast.rb +14 -5
- data/lib/active_record/attribute_methods/dirty.rb +174 -134
- data/lib/active_record/attribute_methods/primary_key.rb +90 -84
- data/lib/active_record/attribute_methods/query.rb +6 -5
- data/lib/active_record/attribute_methods/read.rb +20 -77
- data/lib/active_record/attribute_methods/serialization.rb +40 -21
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +61 -37
- data/lib/active_record/attribute_methods/write.rb +33 -56
- data/lib/active_record/attribute_methods.rb +124 -143
- data/lib/active_record/attributes.rb +213 -74
- data/lib/active_record/autosave_association.rb +125 -54
- data/lib/active_record/base.rb +60 -49
- data/lib/active_record/callbacks.rb +101 -76
- data/lib/active_record/coders/json.rb +3 -1
- data/lib/active_record/coders/yaml_column.rb +36 -13
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +810 -291
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +26 -8
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +253 -108
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +83 -24
- data/lib/active_record/connection_adapters/abstract/quoting.rb +171 -53
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +6 -4
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +74 -47
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +383 -239
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +736 -235
- data/lib/active_record/connection_adapters/abstract/transaction.rb +190 -87
- data/lib/active_record/connection_adapters/abstract_adapter.rb +487 -192
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +536 -600
- data/lib/active_record/connection_adapters/column.rb +56 -43
- data/lib/active_record/connection_adapters/connection_specification.rb +174 -153
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +196 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +268 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +59 -196
- data/lib/active_record/connection_adapters/postgresql/column.rb +21 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +71 -115
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +49 -57
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +9 -8
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +5 -2
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +17 -13
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +6 -3
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -20
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
- data/lib/active_record/connection_adapters/postgresql/oid/{infinity.rb → oid.rb} +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +32 -11
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +70 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -1
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +67 -51
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +9 -5
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +23 -25
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +144 -47
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +178 -108
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +465 -291
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +11 -8
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +565 -363
- data/lib/active_record/connection_adapters/schema_cache.rb +72 -25
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +119 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +102 -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 +137 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +299 -364
- data/lib/active_record/connection_adapters/statement_pool.rb +33 -13
- data/lib/active_record/connection_handling.rb +167 -41
- data/lib/active_record/core.rb +277 -233
- data/lib/active_record/counter_cache.rb +71 -50
- data/lib/active_record/database_configurations/database_config.rb +37 -0
- data/lib/active_record/database_configurations/hash_config.rb +50 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +233 -0
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -106
- data/lib/active_record/enum.rb +172 -89
- data/lib/active_record/errors.rb +189 -53
- data/lib/active_record/explain.rb +22 -11
- data/lib/active_record/explain_registry.rb +4 -2
- data/lib/active_record/explain_subscriber.rb +11 -6
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixture_set/model_metadata.rb +33 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +152 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +225 -497
- data/lib/active_record/gem_version.rb +6 -4
- data/lib/active_record/inheritance.rb +158 -115
- data/lib/active_record/insert_all.rb +179 -0
- data/lib/active_record/integration.rb +123 -29
- data/lib/active_record/internal_metadata.rb +53 -0
- data/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +99 -98
- data/lib/active_record/locking/pessimistic.rb +18 -6
- data/lib/active_record/log_subscriber.rb +76 -33
- data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +87 -0
- data/lib/active_record/middleware/database_selector.rb +74 -0
- data/lib/active_record/migration/command_recorder.rb +166 -91
- data/lib/active_record/migration/compatibility.rb +244 -0
- data/lib/active_record/migration/join_table.rb +8 -7
- data/lib/active_record/migration.rb +636 -290
- data/lib/active_record/model_schema.rb +344 -112
- data/lib/active_record/nested_attributes.rb +265 -215
- data/lib/active_record/no_touching.rb +15 -2
- data/lib/active_record/null_relation.rb +24 -38
- data/lib/active_record/persistence.rb +559 -125
- data/lib/active_record/query_cache.rb +19 -23
- data/lib/active_record/querying.rb +44 -30
- data/lib/active_record/railtie.rb +166 -47
- data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
- data/lib/active_record/railties/console_sandbox.rb +2 -0
- data/lib/active_record/railties/controller_runtime.rb +34 -33
- data/lib/active_record/railties/databases.rake +341 -202
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +461 -302
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +206 -55
- data/lib/active_record/relation/calculations.rb +270 -249
- data/lib/active_record/relation/delegation.rb +76 -84
- data/lib/active_record/relation/finder_methods.rb +287 -255
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +86 -68
- data/lib/active_record/relation/predicate_builder/array_handler.rb +27 -25
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
- data/lib/active_record/relation/predicate_builder.rb +112 -92
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +612 -392
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +18 -17
- data/lib/active_record/relation/where_clause.rb +189 -0
- data/lib/active_record/relation/where_clause_factory.rb +33 -0
- data/lib/active_record/relation.rb +533 -340
- data/lib/active_record/result.rb +79 -43
- data/lib/active_record/runtime_registry.rb +6 -4
- data/lib/active_record/sanitization.rb +144 -121
- data/lib/active_record/schema.rb +21 -24
- data/lib/active_record/schema_dumper.rb +112 -93
- data/lib/active_record/schema_migration.rb +24 -20
- data/lib/active_record/scoping/default.rb +98 -82
- data/lib/active_record/scoping/named.rb +91 -33
- data/lib/active_record/scoping.rb +45 -27
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/statement_cache.rb +73 -36
- data/lib/active_record/store.rb +127 -42
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +90 -0
- data/lib/active_record/tasks/database_tasks.rb +309 -99
- data/lib/active_record/tasks/mysql_database_tasks.rb +58 -89
- data/lib/active_record/tasks/postgresql_database_tasks.rb +81 -31
- data/lib/active_record/tasks/sqlite_database_tasks.rb +37 -16
- data/lib/active_record/test_databases.rb +23 -0
- data/lib/active_record/test_fixtures.rb +243 -0
- data/lib/active_record/timestamp.rb +86 -41
- data/lib/active_record/touch_later.rb +65 -0
- data/lib/active_record/transactions.rb +222 -146
- data/lib/active_record/translation.rb +3 -1
- data/lib/active_record/type/adapter_specific_registry.rb +126 -0
- data/lib/active_record/type/date.rb +4 -41
- data/lib/active_record/type/date_time.rb +4 -38
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +12 -5
- 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 +29 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +21 -16
- data/lib/active_record/type/type_map.rb +16 -19
- data/lib/active_record/type/unsigned_integer.rb +9 -8
- data/lib/active_record/type.rb +77 -23
- data/lib/active_record/type_caster/connection.rb +34 -0
- data/lib/active_record/type_caster/map.rb +20 -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 +12 -4
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +14 -13
- data/lib/active_record/validations/uniqueness.rb +43 -46
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +44 -21
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +37 -0
- data/lib/arel/attributes.rb +22 -0
- data/lib/arel/collectors/bind.rb +24 -0
- data/lib/arel/collectors/composite.rb +31 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +20 -0
- data/lib/arel/collectors/substitute_binds.rb +28 -0
- data/lib/arel/crud.rb +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +52 -0
- data/lib/arel/nodes/bind_param.rb +36 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +50 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/delete_statement.rb +45 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +18 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +8 -0
- data/lib/arel/nodes/in.rb +8 -0
- data/lib/arel/nodes/infix_operation.rb +80 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +50 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +16 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +27 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +45 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +41 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/nodes.rb +68 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +256 -0
- data/lib/arel/select_manager.rb +271 -0
- data/lib/arel/table.rb +110 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors/depth_first.rb +203 -0
- data/lib/arel/visitors/dot.rb +296 -0
- data/lib/arel/visitors/ibm_db.rb +34 -0
- data/lib/arel/visitors/informix.rb +62 -0
- data/lib/arel/visitors/mssql.rb +156 -0
- data/lib/arel/visitors/mysql.rb +83 -0
- data/lib/arel/visitors/oracle.rb +158 -0
- data/lib/arel/visitors/oracle12.rb +65 -0
- data/lib/arel/visitors/postgresql.rb +109 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +888 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors/where_sql.rb +22 -0
- data/lib/arel/visitors.rb +20 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +62 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -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 +42 -37
- 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 → migration.rb.tt} +11 -8
- data/lib/rails/generators/active_record/migration.rb +30 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +18 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record.rb +7 -5
- metadata +174 -63
- 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_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
- 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.rb +0 -149
- data/lib/active_record/attribute_set/builder.rb +0 -86
- data/lib/active_record/attribute_set.rb +0 -77
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -491
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/integer.rb +0 -11
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -30
- data/lib/active_record/type/decimal.rb +0 -40
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -55
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -36
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -101
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -22
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
- /data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
@@ -1,6 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_support/core_ext/hash/except"
|
4
|
+
require "active_support/core_ext/module/redefine_method"
|
5
|
+
require "active_support/core_ext/object/try"
|
6
|
+
require "active_support/core_ext/hash/indifferent_access"
|
4
7
|
|
5
8
|
module ActiveRecord
|
6
9
|
module NestedAttributes #:nodoc:
|
@@ -10,8 +13,7 @@ module ActiveRecord
|
|
10
13
|
extend ActiveSupport::Concern
|
11
14
|
|
12
15
|
included do
|
13
|
-
class_attribute :nested_attributes_options, instance_writer: false
|
14
|
-
self.nested_attributes_options = {}
|
16
|
+
class_attribute :nested_attributes_options, instance_writer: false, default: {}
|
15
17
|
end
|
16
18
|
|
17
19
|
# = Active Record Nested Attributes
|
@@ -61,6 +63,18 @@ module ActiveRecord
|
|
61
63
|
# member.update params[:member]
|
62
64
|
# member.avatar.icon # => 'sad'
|
63
65
|
#
|
66
|
+
# If you want to update the current avatar without providing the id, you must add <tt>:update_only</tt> option.
|
67
|
+
#
|
68
|
+
# class Member < ActiveRecord::Base
|
69
|
+
# has_one :avatar
|
70
|
+
# accepts_nested_attributes_for :avatar, update_only: true
|
71
|
+
# end
|
72
|
+
#
|
73
|
+
# params = { member: { avatar_attributes: { icon: 'sad' } } }
|
74
|
+
# member.update params[:member]
|
75
|
+
# member.avatar.id # => 2
|
76
|
+
# member.avatar.icon # => 'sad'
|
77
|
+
#
|
64
78
|
# By default you will only be able to set and update attributes on the
|
65
79
|
# associated model. If you want to destroy the associated model through the
|
66
80
|
# attributes hash, you have to enable it first using the
|
@@ -81,6 +95,9 @@ module ActiveRecord
|
|
81
95
|
#
|
82
96
|
# Note that the model will _not_ be destroyed until the parent is saved.
|
83
97
|
#
|
98
|
+
# Also note that the model will not be destroyed unless you also specify
|
99
|
+
# its id in the updated hash.
|
100
|
+
#
|
84
101
|
# === One-to-many
|
85
102
|
#
|
86
103
|
# Consider a member that has a number of posts:
|
@@ -111,7 +128,7 @@ module ActiveRecord
|
|
111
128
|
# member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
|
112
129
|
# member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
|
113
130
|
#
|
114
|
-
# You may also set a
|
131
|
+
# You may also set a +:reject_if+ proc to silently ignore any new record
|
115
132
|
# hashes if they fail to pass your criteria. For example, the previous
|
116
133
|
# example could be rewritten as:
|
117
134
|
#
|
@@ -133,7 +150,7 @@ module ActiveRecord
|
|
133
150
|
# member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
|
134
151
|
# member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
|
135
152
|
#
|
136
|
-
# Alternatively,
|
153
|
+
# Alternatively, +:reject_if+ also accepts a symbol for using methods:
|
137
154
|
#
|
138
155
|
# class Member < ActiveRecord::Base
|
139
156
|
# has_many :posts
|
@@ -144,8 +161,8 @@ module ActiveRecord
|
|
144
161
|
# has_many :posts
|
145
162
|
# accepts_nested_attributes_for :posts, reject_if: :reject_posts
|
146
163
|
#
|
147
|
-
# def reject_posts(
|
148
|
-
#
|
164
|
+
# def reject_posts(attributes)
|
165
|
+
# attributes['title'].blank?
|
149
166
|
# end
|
150
167
|
# end
|
151
168
|
#
|
@@ -163,6 +180,11 @@ module ActiveRecord
|
|
163
180
|
# member.posts.first.title # => '[UPDATED] An, as of yet, undisclosed awesome Ruby documentation browser!'
|
164
181
|
# member.posts.second.title # => '[UPDATED] other post'
|
165
182
|
#
|
183
|
+
# However, the above applies if the parent model is being updated as well.
|
184
|
+
# For example, If you wanted to create a +member+ named _joe_ and wanted to
|
185
|
+
# update the +posts+ at the same time, that would give an
|
186
|
+
# ActiveRecord::RecordNotFound error.
|
187
|
+
#
|
166
188
|
# By default the associated records are protected from being destroyed. If
|
167
189
|
# you want to destroy any of the associated records through the attributes
|
168
190
|
# hash, you have to enable it first using the <tt>:allow_destroy</tt>
|
@@ -187,38 +209,46 @@ module ActiveRecord
|
|
187
209
|
# Nested attributes for an associated collection can also be passed in
|
188
210
|
# the form of a hash of hashes instead of an array of hashes:
|
189
211
|
#
|
190
|
-
# Member.create(
|
191
|
-
#
|
192
|
-
#
|
212
|
+
# Member.create(
|
213
|
+
# name: 'joe',
|
214
|
+
# posts_attributes: {
|
215
|
+
# first: { title: 'Foo' },
|
216
|
+
# second: { title: 'Bar' }
|
217
|
+
# }
|
218
|
+
# )
|
193
219
|
#
|
194
220
|
# has the same effect as
|
195
221
|
#
|
196
|
-
# Member.create(
|
197
|
-
#
|
198
|
-
#
|
222
|
+
# Member.create(
|
223
|
+
# name: 'joe',
|
224
|
+
# posts_attributes: [
|
225
|
+
# { title: 'Foo' },
|
226
|
+
# { title: 'Bar' }
|
227
|
+
# ]
|
228
|
+
# )
|
199
229
|
#
|
200
230
|
# The keys of the hash which is the value for +:posts_attributes+ are
|
201
231
|
# ignored in this case.
|
202
|
-
# However, it is not allowed to use
|
232
|
+
# However, it is not allowed to use <tt>'id'</tt> or <tt>:id</tt> for one of
|
203
233
|
# such keys, otherwise the hash will be wrapped in an array and
|
204
234
|
# interpreted as an attribute hash for a single post.
|
205
235
|
#
|
206
236
|
# Passing attributes for an associated collection in the form of a hash
|
207
237
|
# of hashes can be used with hashes generated from HTTP/HTML parameters,
|
208
|
-
# where there
|
238
|
+
# where there may be no natural way to submit an array of hashes.
|
209
239
|
#
|
210
240
|
# === Saving
|
211
241
|
#
|
212
242
|
# All changes to models, including the destruction of those marked for
|
213
243
|
# destruction, are saved and destroyed automatically and atomically when
|
214
244
|
# the parent model is saved. This happens inside the transaction initiated
|
215
|
-
# by the
|
245
|
+
# by the parent's save method. See ActiveRecord::AutosaveAssociation.
|
216
246
|
#
|
217
247
|
# === Validating the presence of a parent model
|
218
248
|
#
|
219
249
|
# If you want to validate that a child record is associated with a parent
|
220
|
-
# record, you can use
|
221
|
-
#
|
250
|
+
# record, you can use the +validates_presence_of+ method and the +:inverse_of+
|
251
|
+
# key as this example illustrates:
|
222
252
|
#
|
223
253
|
# class Member < ActiveRecord::Base
|
224
254
|
# has_many :posts, inverse_of: :member
|
@@ -230,7 +260,7 @@ module ActiveRecord
|
|
230
260
|
# validates_presence_of :member
|
231
261
|
# end
|
232
262
|
#
|
233
|
-
# Note that if you do not specify the
|
263
|
+
# Note that if you do not specify the +:inverse_of+ option, then
|
234
264
|
# Active Record will try to automatically guess the inverse association
|
235
265
|
# based on heuristics.
|
236
266
|
#
|
@@ -251,7 +281,7 @@ module ActiveRecord
|
|
251
281
|
# member.avatar_attributes = {icon: 'sad'}
|
252
282
|
# member.avatar.width # => 200
|
253
283
|
module ClassMethods
|
254
|
-
REJECT_ALL_BLANK_PROC = proc { |attributes| attributes.all? { |key, value| key ==
|
284
|
+
REJECT_ALL_BLANK_PROC = proc { |attributes| attributes.all? { |key, value| key == "_destroy" || value.blank? } }
|
255
285
|
|
256
286
|
# Defines an attributes writer for the specified association(s).
|
257
287
|
#
|
@@ -264,29 +294,31 @@ module ActiveRecord
|
|
264
294
|
# Allows you to specify a Proc or a Symbol pointing to a method
|
265
295
|
# that checks whether a record should be built for a certain attribute
|
266
296
|
# hash. The hash is passed to the supplied Proc or the method
|
267
|
-
# and it should return either +true+ or +false+. When no
|
297
|
+
# and it should return either +true+ or +false+. When no +:reject_if+
|
268
298
|
# is specified, a record will be built for all attribute hashes that
|
269
299
|
# do not have a <tt>_destroy</tt> value that evaluates to true.
|
270
300
|
# Passing <tt>:all_blank</tt> instead of a Proc will create a proc
|
271
301
|
# that will reject a record where all the attributes are blank excluding
|
272
|
-
# any value for _destroy
|
302
|
+
# any value for +_destroy+.
|
273
303
|
# [:limit]
|
274
|
-
# Allows you to specify the maximum number of
|
275
|
-
# can be processed with the nested attributes. Limit also can be specified
|
276
|
-
# Proc or a Symbol pointing to a method that should return number.
|
277
|
-
# nested attributes array exceeds the specified limit,
|
278
|
-
# exception is raised. If omitted, any
|
279
|
-
#
|
304
|
+
# Allows you to specify the maximum number of associated records that
|
305
|
+
# can be processed with the nested attributes. Limit also can be specified
|
306
|
+
# as a Proc or a Symbol pointing to a method that should return a number.
|
307
|
+
# If the size of the nested attributes array exceeds the specified limit,
|
308
|
+
# NestedAttributes::TooManyRecords exception is raised. If omitted, any
|
309
|
+
# number of associations can be processed.
|
310
|
+
# Note that the +:limit+ option is only applicable to one-to-many
|
311
|
+
# associations.
|
280
312
|
# [:update_only]
|
281
313
|
# For a one-to-one association, this option allows you to specify how
|
282
|
-
# nested attributes are to be used when an associated record already
|
314
|
+
# nested attributes are going to be used when an associated record already
|
283
315
|
# exists. In general, an existing record may either be updated with the
|
284
316
|
# new set of attribute values or be replaced by a wholly new record
|
285
|
-
# containing those values. By default the
|
317
|
+
# containing those values. By default the +:update_only+ option is +false+
|
286
318
|
# and the nested attributes are used to update the existing record only
|
287
319
|
# if they include the record's <tt>:id</tt> value. Otherwise a new
|
288
320
|
# record will be instantiated and used to replace the existing one.
|
289
|
-
# However if the
|
321
|
+
# However if the +:update_only+ option is +true+, the nested attributes
|
290
322
|
# are used to update the record's attributes always, regardless of
|
291
323
|
# whether the <tt>:id</tt> is present. The option is ignored for collection
|
292
324
|
# associations.
|
@@ -299,7 +331,7 @@ module ActiveRecord
|
|
299
331
|
# # creates avatar_attributes= and posts_attributes=
|
300
332
|
# accepts_nested_attributes_for :avatar, :posts, allow_destroy: true
|
301
333
|
def accepts_nested_attributes_for(*attr_names)
|
302
|
-
options = { :
|
334
|
+
options = { allow_destroy: false, update_only: false }
|
303
335
|
options.update(attr_names.extract_options!)
|
304
336
|
options.assert_valid_keys(:allow_destroy, :reject_if, :limit, :update_only)
|
305
337
|
options[:reject_if] = REJECT_ALL_BLANK_PROC if options[:reject_if] == :all_blank
|
@@ -307,7 +339,7 @@ module ActiveRecord
|
|
307
339
|
attr_names.each do |association_name|
|
308
340
|
if reflection = _reflect_on_association(association_name)
|
309
341
|
reflection.autosave = true
|
310
|
-
|
342
|
+
define_autosave_validation_callbacks(reflection)
|
311
343
|
|
312
344
|
nested_attributes_options = self.nested_attributes_options.dup
|
313
345
|
nested_attributes_options[association_name.to_sym] = options
|
@@ -322,28 +354,25 @@ module ActiveRecord
|
|
322
354
|
end
|
323
355
|
|
324
356
|
private
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
end
|
345
|
-
eoruby
|
346
|
-
end
|
357
|
+
# Generates a writer method for this association. Serves as a point for
|
358
|
+
# accessing the objects in the association. For example, this method
|
359
|
+
# could generate the following:
|
360
|
+
#
|
361
|
+
# def pirate_attributes=(attributes)
|
362
|
+
# assign_nested_attributes_for_one_to_one_association(:pirate, attributes)
|
363
|
+
# end
|
364
|
+
#
|
365
|
+
# This redirects the attempts to write objects in an association through
|
366
|
+
# the helper methods defined below. Makes it seem like the nested
|
367
|
+
# associations are just regular associations.
|
368
|
+
def generate_association_writer(association_name, type)
|
369
|
+
generated_association_methods.module_eval <<-eoruby, __FILE__, __LINE__ + 1
|
370
|
+
silence_redefinition_of_method :#{association_name}_attributes=
|
371
|
+
def #{association_name}_attributes=(attributes)
|
372
|
+
assign_nested_attributes_for_#{type}_association(:#{association_name}, attributes)
|
373
|
+
end
|
374
|
+
eoruby
|
375
|
+
end
|
347
376
|
end
|
348
377
|
|
349
378
|
# Returns ActiveRecord::AutosaveAssociation::marked_for_destruction? It's
|
@@ -356,193 +385,214 @@ module ActiveRecord
|
|
356
385
|
end
|
357
386
|
|
358
387
|
private
|
388
|
+
# Attribute hash keys that should not be assigned as normal attributes.
|
389
|
+
# These hash keys are nested attributes implementation details.
|
390
|
+
UNASSIGNABLE_KEYS = %w( id _destroy )
|
359
391
|
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
(options[:
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
association(association_name).initialize_attributes(existing_record)
|
395
|
-
else
|
396
|
-
method = "build_#{association_name}"
|
397
|
-
if respond_to?(method)
|
398
|
-
send(method, assignable_attributes)
|
392
|
+
# Assigns the given attributes to the association.
|
393
|
+
#
|
394
|
+
# If an associated record does not yet exist, one will be instantiated. If
|
395
|
+
# an associated record already exists, the method's behavior depends on
|
396
|
+
# the value of the update_only option. If update_only is +false+ and the
|
397
|
+
# given attributes include an <tt>:id</tt> that matches the existing record's
|
398
|
+
# id, then the existing record will be modified. If no <tt>:id</tt> is provided
|
399
|
+
# it will be replaced with a new record. If update_only is +true+ the existing
|
400
|
+
# record will be modified regardless of whether an <tt>:id</tt> is provided.
|
401
|
+
#
|
402
|
+
# If the given attributes include a matching <tt>:id</tt> attribute, or
|
403
|
+
# update_only is true, and a <tt>:_destroy</tt> key set to a truthy value,
|
404
|
+
# then the existing record will be marked for destruction.
|
405
|
+
def assign_nested_attributes_for_one_to_one_association(association_name, attributes)
|
406
|
+
options = nested_attributes_options[association_name]
|
407
|
+
if attributes.respond_to?(:permitted?)
|
408
|
+
attributes = attributes.to_h
|
409
|
+
end
|
410
|
+
attributes = attributes.with_indifferent_access
|
411
|
+
existing_record = send(association_name)
|
412
|
+
|
413
|
+
if (options[:update_only] || !attributes["id"].blank?) && existing_record &&
|
414
|
+
(options[:update_only] || existing_record.id.to_s == attributes["id"].to_s)
|
415
|
+
assign_to_or_mark_for_destruction(existing_record, attributes, options[:allow_destroy]) unless call_reject_if(association_name, attributes)
|
416
|
+
|
417
|
+
elsif attributes["id"].present?
|
418
|
+
raise_nested_attributes_record_not_found!(association_name, attributes["id"])
|
419
|
+
|
420
|
+
elsif !reject_new_record?(association_name, attributes)
|
421
|
+
assignable_attributes = attributes.except(*UNASSIGNABLE_KEYS)
|
422
|
+
|
423
|
+
if existing_record && existing_record.new_record?
|
424
|
+
existing_record.assign_attributes(assignable_attributes)
|
425
|
+
association(association_name).initialize_attributes(existing_record)
|
399
426
|
else
|
400
|
-
|
427
|
+
method = :"build_#{association_name}"
|
428
|
+
if respond_to?(method)
|
429
|
+
send(method, assignable_attributes)
|
430
|
+
else
|
431
|
+
raise ArgumentError, "Cannot build association `#{association_name}'. Are you trying to build a polymorphic one-to-one association?"
|
432
|
+
end
|
401
433
|
end
|
402
434
|
end
|
403
435
|
end
|
404
|
-
end
|
405
436
|
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
437
|
+
# Assigns the given attributes to the collection association.
|
438
|
+
#
|
439
|
+
# Hashes with an <tt>:id</tt> value matching an existing associated record
|
440
|
+
# will update that record. Hashes without an <tt>:id</tt> value will build
|
441
|
+
# a new record for the association. Hashes with a matching <tt>:id</tt>
|
442
|
+
# value and a <tt>:_destroy</tt> key set to a truthy value will mark the
|
443
|
+
# matched record for destruction.
|
444
|
+
#
|
445
|
+
# For example:
|
446
|
+
#
|
447
|
+
# assign_nested_attributes_for_collection_association(:people, {
|
448
|
+
# '1' => { id: '1', name: 'Peter' },
|
449
|
+
# '2' => { name: 'John' },
|
450
|
+
# '3' => { id: '2', _destroy: true }
|
451
|
+
# })
|
452
|
+
#
|
453
|
+
# Will update the name of the Person with ID 1, build a new associated
|
454
|
+
# person with the name 'John', and mark the associated Person with ID 2
|
455
|
+
# for destruction.
|
456
|
+
#
|
457
|
+
# Also accepts an Array of attribute hashes:
|
458
|
+
#
|
459
|
+
# assign_nested_attributes_for_collection_association(:people, [
|
460
|
+
# { id: '1', name: 'Peter' },
|
461
|
+
# { name: 'John' },
|
462
|
+
# { id: '2', _destroy: true }
|
463
|
+
# ])
|
464
|
+
def assign_nested_attributes_for_collection_association(association_name, attributes_collection)
|
465
|
+
options = nested_attributes_options[association_name]
|
466
|
+
if attributes_collection.respond_to?(:permitted?)
|
467
|
+
attributes_collection = attributes_collection.to_h
|
468
|
+
end
|
435
469
|
|
436
|
-
|
437
|
-
|
438
|
-
|
470
|
+
unless attributes_collection.is_a?(Hash) || attributes_collection.is_a?(Array)
|
471
|
+
raise ArgumentError, "Hash or Array expected for attribute `#{association_name}`, got #{attributes_collection.class.name} (#{attributes_collection.inspect})"
|
472
|
+
end
|
439
473
|
|
440
|
-
|
474
|
+
check_record_limit!(options[:limit], attributes_collection)
|
441
475
|
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
476
|
+
if attributes_collection.is_a? Hash
|
477
|
+
keys = attributes_collection.keys
|
478
|
+
attributes_collection = if keys.include?("id") || keys.include?(:id)
|
479
|
+
[attributes_collection]
|
480
|
+
else
|
481
|
+
attributes_collection.values
|
482
|
+
end
|
448
483
|
end
|
449
|
-
end
|
450
484
|
|
451
|
-
|
485
|
+
association = association(association_name)
|
452
486
|
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
487
|
+
existing_records = if association.loaded?
|
488
|
+
association.target
|
489
|
+
else
|
490
|
+
attribute_ids = attributes_collection.map { |a| a["id"] || a[:id] }.compact
|
491
|
+
attribute_ids.empty? ? [] : association.scope.where(association.klass.primary_key => attribute_ids)
|
492
|
+
end
|
459
493
|
|
460
|
-
|
461
|
-
|
494
|
+
attributes_collection.each do |attributes|
|
495
|
+
if attributes.respond_to?(:permitted?)
|
496
|
+
attributes = attributes.to_h
|
497
|
+
end
|
498
|
+
attributes = attributes.with_indifferent_access
|
462
499
|
|
463
|
-
|
464
|
-
|
465
|
-
|
500
|
+
if attributes["id"].blank?
|
501
|
+
unless reject_new_record?(association_name, attributes)
|
502
|
+
association.reader.build(attributes.except(*UNASSIGNABLE_KEYS))
|
503
|
+
end
|
504
|
+
elsif existing_record = existing_records.detect { |record| record.id.to_s == attributes["id"].to_s }
|
505
|
+
unless call_reject_if(association_name, attributes)
|
506
|
+
# Make sure we are operating on the actual object which is in the association's
|
507
|
+
# proxy_target array (either by finding it, or adding it if not found)
|
508
|
+
# Take into account that the proxy_target may have changed due to callbacks
|
509
|
+
target_record = association.target.detect { |record| record.id.to_s == attributes["id"].to_s }
|
510
|
+
if target_record
|
511
|
+
existing_record = target_record
|
512
|
+
else
|
513
|
+
association.add_to_target(existing_record, :skip_callbacks)
|
514
|
+
end
|
515
|
+
|
516
|
+
assign_to_or_mark_for_destruction(existing_record, attributes, options[:allow_destroy])
|
517
|
+
end
|
518
|
+
else
|
519
|
+
raise_nested_attributes_record_not_found!(association_name, attributes["id"])
|
466
520
|
end
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
521
|
+
end
|
522
|
+
end
|
523
|
+
|
524
|
+
# Takes in a limit and checks if the attributes_collection has too many
|
525
|
+
# records. It accepts limit in the form of symbol, proc, or
|
526
|
+
# number-like object (anything that can be compared with an integer).
|
527
|
+
#
|
528
|
+
# Raises TooManyRecords error if the attributes_collection is
|
529
|
+
# larger than the limit.
|
530
|
+
def check_record_limit!(limit, attributes_collection)
|
531
|
+
if limit
|
532
|
+
limit = \
|
533
|
+
case limit
|
534
|
+
when Symbol
|
535
|
+
send(limit)
|
536
|
+
when Proc
|
537
|
+
limit.call
|
475
538
|
else
|
476
|
-
|
539
|
+
limit
|
477
540
|
end
|
478
541
|
|
479
|
-
|
542
|
+
if limit && attributes_collection.size > limit
|
543
|
+
raise TooManyRecords, "Maximum #{limit} records are allowed. Got #{attributes_collection.size} records instead."
|
480
544
|
end
|
481
|
-
else
|
482
|
-
raise_nested_attributes_record_not_found!(association_name, attributes['id'])
|
483
545
|
end
|
484
546
|
end
|
485
|
-
end
|
486
547
|
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
def check_record_limit!(limit, attributes_collection)
|
494
|
-
if limit
|
495
|
-
limit = case limit
|
496
|
-
when Symbol
|
497
|
-
send(limit)
|
498
|
-
when Proc
|
499
|
-
limit.call
|
500
|
-
else
|
501
|
-
limit
|
502
|
-
end
|
548
|
+
# Updates a record with the +attributes+ or marks it for destruction if
|
549
|
+
# +allow_destroy+ is +true+ and has_destroy_flag? returns +true+.
|
550
|
+
def assign_to_or_mark_for_destruction(record, attributes, allow_destroy)
|
551
|
+
record.assign_attributes(attributes.except(*UNASSIGNABLE_KEYS))
|
552
|
+
record.mark_for_destruction if has_destroy_flag?(attributes) && allow_destroy
|
553
|
+
end
|
503
554
|
|
504
|
-
|
505
|
-
|
506
|
-
|
555
|
+
# Determines if a hash contains a truthy _destroy key.
|
556
|
+
def has_destroy_flag?(hash)
|
557
|
+
Type::Boolean.new.cast(hash["_destroy"])
|
507
558
|
end
|
508
|
-
end
|
509
559
|
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
560
|
+
# Determines if a new record should be rejected by checking
|
561
|
+
# has_destroy_flag? or if a <tt>:reject_if</tt> proc exists for this
|
562
|
+
# association and evaluates to +true+.
|
563
|
+
def reject_new_record?(association_name, attributes)
|
564
|
+
will_be_destroyed?(association_name, attributes) || call_reject_if(association_name, attributes)
|
565
|
+
end
|
516
566
|
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
567
|
+
# Determines if a record with the particular +attributes+ should be
|
568
|
+
# rejected by calling the reject_if Symbol or Proc (if defined).
|
569
|
+
# The reject_if option is defined by +accepts_nested_attributes_for+.
|
570
|
+
#
|
571
|
+
# Returns false if there is a +destroy_flag+ on the attributes.
|
572
|
+
def call_reject_if(association_name, attributes)
|
573
|
+
return false if will_be_destroyed?(association_name, attributes)
|
521
574
|
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
575
|
+
case callback = nested_attributes_options[association_name][:reject_if]
|
576
|
+
when Symbol
|
577
|
+
method(callback).arity == 0 ? send(callback) : send(callback, attributes)
|
578
|
+
when Proc
|
579
|
+
callback.call(attributes)
|
580
|
+
end
|
581
|
+
end
|
528
582
|
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
#
|
533
|
-
# Returns false if there is a +destroy_flag+ on the attributes.
|
534
|
-
def call_reject_if(association_name, attributes)
|
535
|
-
return false if has_destroy_flag?(attributes)
|
536
|
-
case callback = self.nested_attributes_options[association_name][:reject_if]
|
537
|
-
when Symbol
|
538
|
-
method(callback).arity == 0 ? send(callback) : send(callback, attributes)
|
539
|
-
when Proc
|
540
|
-
callback.call(attributes)
|
583
|
+
# Only take into account the destroy flag if <tt>:allow_destroy</tt> is true
|
584
|
+
def will_be_destroyed?(association_name, attributes)
|
585
|
+
allow_destroy?(association_name) && has_destroy_flag?(attributes)
|
541
586
|
end
|
542
|
-
end
|
543
587
|
|
544
|
-
|
545
|
-
|
546
|
-
|
588
|
+
def allow_destroy?(association_name)
|
589
|
+
nested_attributes_options[association_name][:allow_destroy]
|
590
|
+
end
|
591
|
+
|
592
|
+
def raise_nested_attributes_record_not_found!(association_name, record_id)
|
593
|
+
model = self.class._reflect_on_association(association_name).klass.name
|
594
|
+
raise RecordNotFound.new("Couldn't find #{model} with ID=#{record_id} for #{self.class.name} with ID=#{id}",
|
595
|
+
model, "id", record_id)
|
596
|
+
end
|
547
597
|
end
|
548
598
|
end
|