omg-activerecord 8.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +355 -0
- data/MIT-LICENSE +22 -0
- data/README.rdoc +219 -0
- data/examples/performance.rb +185 -0
- data/examples/simple.rb +15 -0
- data/lib/active_record/aggregations.rb +287 -0
- data/lib/active_record/association_relation.rb +50 -0
- data/lib/active_record/associations/alias_tracker.rb +90 -0
- data/lib/active_record/associations/association.rb +417 -0
- data/lib/active_record/associations/association_scope.rb +175 -0
- data/lib/active_record/associations/belongs_to_association.rb +163 -0
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
- data/lib/active_record/associations/builder/association.rb +170 -0
- data/lib/active_record/associations/builder/belongs_to.rb +160 -0
- data/lib/active_record/associations/builder/collection_association.rb +80 -0
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +107 -0
- data/lib/active_record/associations/builder/has_many.rb +23 -0
- data/lib/active_record/associations/builder/has_one.rb +61 -0
- data/lib/active_record/associations/builder/singular_association.rb +48 -0
- data/lib/active_record/associations/collection_association.rb +535 -0
- data/lib/active_record/associations/collection_proxy.rb +1163 -0
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/errors.rb +265 -0
- data/lib/active_record/associations/foreign_association.rb +40 -0
- data/lib/active_record/associations/has_many_association.rb +167 -0
- data/lib/active_record/associations/has_many_through_association.rb +232 -0
- data/lib/active_record/associations/has_one_association.rb +142 -0
- data/lib/active_record/associations/has_one_through_association.rb +45 -0
- data/lib/active_record/associations/join_dependency/join_association.rb +106 -0
- data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
- data/lib/active_record/associations/join_dependency.rb +301 -0
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +316 -0
- data/lib/active_record/associations/preloader/batch.rb +48 -0
- data/lib/active_record/associations/preloader/branch.rb +153 -0
- data/lib/active_record/associations/preloader/through_association.rb +150 -0
- data/lib/active_record/associations/preloader.rb +135 -0
- data/lib/active_record/associations/singular_association.rb +76 -0
- data/lib/active_record/associations/through_association.rb +132 -0
- data/lib/active_record/associations.rb +1897 -0
- data/lib/active_record/asynchronous_queries_tracker.rb +64 -0
- data/lib/active_record/attribute_assignment.rb +82 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +106 -0
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/dirty.rb +262 -0
- data/lib/active_record/attribute_methods/primary_key.rb +158 -0
- data/lib/active_record/attribute_methods/query.rb +50 -0
- data/lib/active_record/attribute_methods/read.rb +46 -0
- data/lib/active_record/attribute_methods/serialization.rb +232 -0
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +94 -0
- data/lib/active_record/attribute_methods/write.rb +49 -0
- data/lib/active_record/attribute_methods.rb +542 -0
- data/lib/active_record/attributes.rb +307 -0
- data/lib/active_record/autosave_association.rb +586 -0
- data/lib/active_record/base.rb +338 -0
- data/lib/active_record/callbacks.rb +452 -0
- data/lib/active_record/coders/column_serializer.rb +61 -0
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +95 -0
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +290 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +210 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +78 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +923 -0
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +31 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +747 -0
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +319 -0
- data/lib/active_record/connection_adapters/abstract/quoting.rb +239 -0
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +24 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +190 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +961 -0
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +106 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1883 -0
- data/lib/active_record/connection_adapters/abstract/transaction.rb +676 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +1218 -0
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +1016 -0
- data/lib/active_record/connection_adapters/column.rb +122 -0
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +28 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +114 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +97 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +300 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +40 -0
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +96 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +196 -0
- data/lib/active_record/connection_adapters/pool_config.rb +83 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +57 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +82 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +231 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +91 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -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 +54 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +31 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +20 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +109 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +42 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +74 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +124 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +125 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +45 -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 +38 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +238 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +169 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +392 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +127 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +1162 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +79 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1182 -0
- data/lib/active_record/connection_adapters/schema_cache.rb +478 -0
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +45 -0
- data/lib/active_record/connection_adapters/sqlite3/column.rb +62 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +145 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +116 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +39 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +47 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +221 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +843 -0
- data/lib/active_record/connection_adapters/statement_pool.rb +67 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +69 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +212 -0
- data/lib/active_record/connection_adapters.rb +176 -0
- data/lib/active_record/connection_handling.rb +413 -0
- data/lib/active_record/core.rb +836 -0
- data/lib/active_record/counter_cache.rb +230 -0
- data/lib/active_record/database_configurations/connection_url_resolver.rb +105 -0
- data/lib/active_record/database_configurations/database_config.rb +104 -0
- data/lib/active_record/database_configurations/hash_config.rb +172 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +309 -0
- data/lib/active_record/delegated_type.rb +289 -0
- data/lib/active_record/deprecator.rb +7 -0
- data/lib/active_record/destroy_association_async_job.rb +38 -0
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +121 -0
- data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +101 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +70 -0
- data/lib/active_record/encryption/configurable.rb +60 -0
- data/lib/active_record/encryption/context.rb +42 -0
- data/lib/active_record/encryption/contexts.rb +76 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +18 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +230 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +184 -0
- data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
- data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
- data/lib/active_record/encryption/encryptor.rb +177 -0
- data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
- data/lib/active_record/encryption/errors.rb +15 -0
- data/lib/active_record/encryption/extended_deterministic_queries.rb +159 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +53 -0
- data/lib/active_record/encryption/key_provider.rb +46 -0
- data/lib/active_record/encryption/message.rb +33 -0
- data/lib/active_record/encryption/message_pack_message_serializer.rb +76 -0
- data/lib/active_record/encryption/message_serializer.rb +96 -0
- data/lib/active_record/encryption/null_encryptor.rb +25 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +28 -0
- data/lib/active_record/encryption/scheme.rb +107 -0
- data/lib/active_record/encryption.rb +58 -0
- data/lib/active_record/enum.rb +424 -0
- data/lib/active_record/errors.rb +614 -0
- data/lib/active_record/explain.rb +63 -0
- data/lib/active_record/explain_registry.rb +37 -0
- data/lib/active_record/explain_subscriber.rb +34 -0
- data/lib/active_record/fixture_set/file.rb +89 -0
- data/lib/active_record/fixture_set/model_metadata.rb +42 -0
- data/lib/active_record/fixture_set/render_context.rb +19 -0
- data/lib/active_record/fixture_set/table_row.rb +208 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +850 -0
- data/lib/active_record/future_result.rb +182 -0
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +366 -0
- data/lib/active_record/insert_all.rb +328 -0
- data/lib/active_record/integration.rb +209 -0
- data/lib/active_record/internal_metadata.rb +164 -0
- data/lib/active_record/legacy_yaml_adapter.rb +15 -0
- data/lib/active_record/locale/en.yml +48 -0
- data/lib/active_record/locking/optimistic.rb +228 -0
- data/lib/active_record/locking/pessimistic.rb +102 -0
- data/lib/active_record/log_subscriber.rb +149 -0
- data/lib/active_record/marshalling.rb +56 -0
- data/lib/active_record/message_pack.rb +124 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +48 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
- data/lib/active_record/middleware/database_selector.rb +87 -0
- data/lib/active_record/middleware/shard_selector.rb +62 -0
- data/lib/active_record/migration/command_recorder.rb +406 -0
- data/lib/active_record/migration/compatibility.rb +490 -0
- data/lib/active_record/migration/default_strategy.rb +22 -0
- data/lib/active_record/migration/execution_strategy.rb +19 -0
- data/lib/active_record/migration/join_table.rb +16 -0
- data/lib/active_record/migration/pending_migration_connection.rb +21 -0
- data/lib/active_record/migration.rb +1626 -0
- data/lib/active_record/model_schema.rb +635 -0
- data/lib/active_record/nested_attributes.rb +633 -0
- data/lib/active_record/no_touching.rb +65 -0
- data/lib/active_record/normalization.rb +163 -0
- data/lib/active_record/persistence.rb +968 -0
- data/lib/active_record/promise.rb +84 -0
- data/lib/active_record/query_cache.rb +56 -0
- data/lib/active_record/query_logs.rb +247 -0
- data/lib/active_record/query_logs_formatter.rb +30 -0
- data/lib/active_record/querying.rb +122 -0
- data/lib/active_record/railtie.rb +440 -0
- data/lib/active_record/railties/console_sandbox.rb +5 -0
- data/lib/active_record/railties/controller_runtime.rb +65 -0
- data/lib/active_record/railties/databases.rake +641 -0
- data/lib/active_record/railties/job_runtime.rb +23 -0
- data/lib/active_record/readonly_attributes.rb +66 -0
- data/lib/active_record/reflection.rb +1287 -0
- data/lib/active_record/relation/batches/batch_enumerator.rb +115 -0
- data/lib/active_record/relation/batches.rb +491 -0
- data/lib/active_record/relation/calculations.rb +679 -0
- data/lib/active_record/relation/delegation.rb +154 -0
- data/lib/active_record/relation/finder_methods.rb +661 -0
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +192 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +76 -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 +60 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +24 -0
- data/lib/active_record/relation/predicate_builder.rb +181 -0
- data/lib/active_record/relation/query_attribute.rb +68 -0
- data/lib/active_record/relation/query_methods.rb +2235 -0
- data/lib/active_record/relation/record_fetch_warning.rb +52 -0
- data/lib/active_record/relation/spawn_methods.rb +78 -0
- data/lib/active_record/relation/where_clause.rb +218 -0
- data/lib/active_record/relation.rb +1495 -0
- data/lib/active_record/result.rb +249 -0
- data/lib/active_record/runtime_registry.rb +82 -0
- data/lib/active_record/sanitization.rb +254 -0
- data/lib/active_record/schema.rb +77 -0
- data/lib/active_record/schema_dumper.rb +364 -0
- data/lib/active_record/schema_migration.rb +106 -0
- data/lib/active_record/scoping/default.rb +205 -0
- data/lib/active_record/scoping/named.rb +202 -0
- data/lib/active_record/scoping.rb +136 -0
- data/lib/active_record/secure_password.rb +60 -0
- data/lib/active_record/secure_token.rb +66 -0
- data/lib/active_record/serialization.rb +29 -0
- data/lib/active_record/signed_id.rb +137 -0
- data/lib/active_record/statement_cache.rb +164 -0
- data/lib/active_record/store.rb +299 -0
- data/lib/active_record/suppressor.rb +59 -0
- data/lib/active_record/table_metadata.rb +85 -0
- data/lib/active_record/tasks/database_tasks.rb +681 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +120 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +147 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +89 -0
- data/lib/active_record/test_databases.rb +24 -0
- data/lib/active_record/test_fixtures.rb +321 -0
- data/lib/active_record/testing/query_assertions.rb +121 -0
- data/lib/active_record/timestamp.rb +177 -0
- data/lib/active_record/token_for.rb +123 -0
- data/lib/active_record/touch_later.rb +70 -0
- data/lib/active_record/transaction.rb +132 -0
- data/lib/active_record/transactions.rb +523 -0
- data/lib/active_record/translation.rb +22 -0
- data/lib/active_record/type/adapter_specific_registry.rb +144 -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 +57 -0
- data/lib/active_record/type/internal/timezone.rb +22 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +76 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +35 -0
- data/lib/active_record/type/type_map.rb +58 -0
- data/lib/active_record/type/unsigned_integer.rb +16 -0
- data/lib/active_record/type.rb +83 -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 +65 -0
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/numericality.rb +36 -0
- data/lib/active_record/validations/presence.rb +45 -0
- data/lib/active_record/validations/uniqueness.rb +295 -0
- data/lib/active_record/validations.rb +101 -0
- data/lib/active_record/version.rb +10 -0
- data/lib/active_record.rb +616 -0
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +33 -0
- data/lib/arel/collectors/bind.rb +31 -0
- data/lib/arel/collectors/composite.rb +46 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +27 -0
- data/lib/arel/collectors/substitute_binds.rb +35 -0
- data/lib/arel/crud.rb +48 -0
- data/lib/arel/delete_manager.rb +32 -0
- data/lib/arel/errors.rb +19 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +53 -0
- data/lib/arel/filter_predications.rb +9 -0
- data/lib/arel/insert_manager.rb +48 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +125 -0
- data/lib/arel/nodes/bind_param.rb +44 -0
- data/lib/arel/nodes/bound_sql_literal.rb +65 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +62 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/cte.rb +36 -0
- data/lib/arel/nodes/delete_statement.rb +44 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +15 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/filter.rb +10 -0
- data/lib/arel/nodes/fragments.rb +35 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +45 -0
- data/lib/arel/nodes/grouping.rb +11 -0
- data/lib/arel/nodes/homogeneous_in.rb +68 -0
- data/lib/arel/nodes/in.rb +15 -0
- data/lib/arel/nodes/infix_operation.rb +92 -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/leading_join.rb +8 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/nary.rb +39 -0
- data/lib/arel/nodes/node.rb +161 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/ordering.rb +27 -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 +32 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +35 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +44 -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 +46 -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 +75 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +260 -0
- data/lib/arel/select_manager.rb +276 -0
- data/lib/arel/table.rb +121 -0
- data/lib/arel/tree_manager.rb +65 -0
- data/lib/arel/update_manager.rb +49 -0
- data/lib/arel/visitors/dot.rb +299 -0
- data/lib/arel/visitors/mysql.rb +111 -0
- data/lib/arel/visitors/postgresql.rb +99 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +1033 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors.rb +13 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +73 -0
- data/lib/rails/generators/active_record/application_record/USAGE +8 -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 +76 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +29 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
- data/lib/rails/generators/active_record/migration.rb +54 -0
- data/lib/rails/generators/active_record/model/USAGE +113 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +94 -0
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
- data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
- data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
- data/lib/rails/generators/active_record.rb +19 -0
- metadata +505 -0
@@ -0,0 +1,633 @@
|
|
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/hash/indifferent_access"
|
6
|
+
|
7
|
+
module ActiveRecord
|
8
|
+
module NestedAttributes # :nodoc:
|
9
|
+
class TooManyRecords < ActiveRecordError
|
10
|
+
end
|
11
|
+
|
12
|
+
extend ActiveSupport::Concern
|
13
|
+
|
14
|
+
included do
|
15
|
+
class_attribute :nested_attributes_options, instance_writer: false, default: {}
|
16
|
+
end
|
17
|
+
|
18
|
+
# = Active Record Nested \Attributes
|
19
|
+
#
|
20
|
+
# Nested attributes allow you to save attributes on associated records
|
21
|
+
# through the parent. By default nested attribute updating is turned off
|
22
|
+
# and you can enable it using the accepts_nested_attributes_for class
|
23
|
+
# method. When you enable nested attributes an attribute writer is
|
24
|
+
# defined on the model.
|
25
|
+
#
|
26
|
+
# The attribute writer is named after the association, which means that
|
27
|
+
# in the following example, two new methods are added to your model:
|
28
|
+
#
|
29
|
+
# <tt>author_attributes=(attributes)</tt> and
|
30
|
+
# <tt>pages_attributes=(attributes)</tt>.
|
31
|
+
#
|
32
|
+
# class Book < ActiveRecord::Base
|
33
|
+
# has_one :author
|
34
|
+
# has_many :pages
|
35
|
+
#
|
36
|
+
# accepts_nested_attributes_for :author, :pages
|
37
|
+
# end
|
38
|
+
#
|
39
|
+
# Note that the <tt>:autosave</tt> option is automatically enabled on every
|
40
|
+
# association that accepts_nested_attributes_for is used for.
|
41
|
+
#
|
42
|
+
# === One-to-one
|
43
|
+
#
|
44
|
+
# Consider a Member model that has one Avatar:
|
45
|
+
#
|
46
|
+
# class Member < ActiveRecord::Base
|
47
|
+
# has_one :avatar
|
48
|
+
# accepts_nested_attributes_for :avatar
|
49
|
+
# end
|
50
|
+
#
|
51
|
+
# Enabling nested attributes on a one-to-one association allows you to
|
52
|
+
# create the member and avatar in one go:
|
53
|
+
#
|
54
|
+
# params = { member: { name: 'Jack', avatar_attributes: { icon: 'smiling' } } }
|
55
|
+
# member = Member.create(params[:member])
|
56
|
+
# member.avatar.id # => 2
|
57
|
+
# member.avatar.icon # => 'smiling'
|
58
|
+
#
|
59
|
+
# It also allows you to update the avatar through the member:
|
60
|
+
#
|
61
|
+
# params = { member: { avatar_attributes: { id: '2', icon: 'sad' } } }
|
62
|
+
# member.update params[:member]
|
63
|
+
# member.avatar.icon # => 'sad'
|
64
|
+
#
|
65
|
+
# If you want to update the current avatar without providing the id, you must add <tt>:update_only</tt> option.
|
66
|
+
#
|
67
|
+
# class Member < ActiveRecord::Base
|
68
|
+
# has_one :avatar
|
69
|
+
# accepts_nested_attributes_for :avatar, update_only: true
|
70
|
+
# end
|
71
|
+
#
|
72
|
+
# params = { member: { avatar_attributes: { icon: 'sad' } } }
|
73
|
+
# member.update params[:member]
|
74
|
+
# member.avatar.id # => 2
|
75
|
+
# member.avatar.icon # => 'sad'
|
76
|
+
#
|
77
|
+
# By default you will only be able to set and update attributes on the
|
78
|
+
# associated model. If you want to destroy the associated model through the
|
79
|
+
# attributes hash, you have to enable it first using the
|
80
|
+
# <tt>:allow_destroy</tt> option.
|
81
|
+
#
|
82
|
+
# class Member < ActiveRecord::Base
|
83
|
+
# has_one :avatar
|
84
|
+
# accepts_nested_attributes_for :avatar, allow_destroy: true
|
85
|
+
# end
|
86
|
+
#
|
87
|
+
# Now, when you add the <tt>_destroy</tt> key to the attributes hash, with a
|
88
|
+
# value that evaluates to +true+, you will destroy the associated model:
|
89
|
+
#
|
90
|
+
# member.avatar_attributes = { id: '2', _destroy: '1' }
|
91
|
+
# member.avatar.marked_for_destruction? # => true
|
92
|
+
# member.save
|
93
|
+
# member.reload.avatar # => nil
|
94
|
+
#
|
95
|
+
# Note that the model will _not_ be destroyed until the parent is saved.
|
96
|
+
#
|
97
|
+
# Also note that the model will not be destroyed unless you also specify
|
98
|
+
# its id in the updated hash.
|
99
|
+
#
|
100
|
+
# === One-to-many
|
101
|
+
#
|
102
|
+
# Consider a member that has a number of posts:
|
103
|
+
#
|
104
|
+
# class Member < ActiveRecord::Base
|
105
|
+
# has_many :posts
|
106
|
+
# accepts_nested_attributes_for :posts
|
107
|
+
# end
|
108
|
+
#
|
109
|
+
# You can now set or update attributes on the associated posts through
|
110
|
+
# an attribute hash for a member: include the key +:posts_attributes+
|
111
|
+
# with an array of hashes of post attributes as a value.
|
112
|
+
#
|
113
|
+
# For each hash that does _not_ have an <tt>id</tt> key a new record will
|
114
|
+
# be instantiated, unless the hash also contains a <tt>_destroy</tt> key
|
115
|
+
# that evaluates to +true+.
|
116
|
+
#
|
117
|
+
# params = { member: {
|
118
|
+
# name: 'joe', posts_attributes: [
|
119
|
+
# { title: 'Kari, the awesome Ruby documentation browser!' },
|
120
|
+
# { title: 'The egalitarian assumption of the modern citizen' },
|
121
|
+
# { title: '', _destroy: '1' } # this will be ignored
|
122
|
+
# ]
|
123
|
+
# }}
|
124
|
+
#
|
125
|
+
# member = Member.create(params[:member])
|
126
|
+
# member.posts.length # => 2
|
127
|
+
# member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
|
128
|
+
# member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
|
129
|
+
#
|
130
|
+
# You may also set a +:reject_if+ proc to silently ignore any new record
|
131
|
+
# hashes if they fail to pass your criteria. For example, the previous
|
132
|
+
# example could be rewritten as:
|
133
|
+
#
|
134
|
+
# class Member < ActiveRecord::Base
|
135
|
+
# has_many :posts
|
136
|
+
# accepts_nested_attributes_for :posts, reject_if: proc { |attributes| attributes['title'].blank? }
|
137
|
+
# end
|
138
|
+
#
|
139
|
+
# params = { member: {
|
140
|
+
# name: 'joe', posts_attributes: [
|
141
|
+
# { title: 'Kari, the awesome Ruby documentation browser!' },
|
142
|
+
# { title: 'The egalitarian assumption of the modern citizen' },
|
143
|
+
# { title: '' } # this will be ignored because of the :reject_if proc
|
144
|
+
# ]
|
145
|
+
# }}
|
146
|
+
#
|
147
|
+
# member = Member.create(params[:member])
|
148
|
+
# member.posts.length # => 2
|
149
|
+
# member.posts.first.title # => 'Kari, the awesome Ruby documentation browser!'
|
150
|
+
# member.posts.second.title # => 'The egalitarian assumption of the modern citizen'
|
151
|
+
#
|
152
|
+
# Alternatively, +:reject_if+ also accepts a symbol for using methods:
|
153
|
+
#
|
154
|
+
# class Member < ActiveRecord::Base
|
155
|
+
# has_many :posts
|
156
|
+
# accepts_nested_attributes_for :posts, reject_if: :new_record?
|
157
|
+
# end
|
158
|
+
#
|
159
|
+
# class Member < ActiveRecord::Base
|
160
|
+
# has_many :posts
|
161
|
+
# accepts_nested_attributes_for :posts, reject_if: :reject_posts
|
162
|
+
#
|
163
|
+
# def reject_posts(attributes)
|
164
|
+
# attributes['title'].blank?
|
165
|
+
# end
|
166
|
+
# end
|
167
|
+
#
|
168
|
+
# If the hash contains an <tt>id</tt> key that matches an already
|
169
|
+
# associated record, the matching record will be modified:
|
170
|
+
#
|
171
|
+
# member.attributes = {
|
172
|
+
# name: 'Joe',
|
173
|
+
# posts_attributes: [
|
174
|
+
# { id: 1, title: '[UPDATED] An, as of yet, undisclosed awesome Ruby documentation browser!' },
|
175
|
+
# { id: 2, title: '[UPDATED] other post' }
|
176
|
+
# ]
|
177
|
+
# }
|
178
|
+
#
|
179
|
+
# member.posts.first.title # => '[UPDATED] An, as of yet, undisclosed awesome Ruby documentation browser!'
|
180
|
+
# member.posts.second.title # => '[UPDATED] other post'
|
181
|
+
#
|
182
|
+
# However, the above applies if the parent model is being updated as well.
|
183
|
+
# For example, if you wanted to create a +member+ named _joe_ and wanted to
|
184
|
+
# update the +posts+ at the same time, that would give an
|
185
|
+
# ActiveRecord::RecordNotFound error.
|
186
|
+
#
|
187
|
+
# By default the associated records are protected from being destroyed. If
|
188
|
+
# you want to destroy any of the associated records through the attributes
|
189
|
+
# hash, you have to enable it first using the <tt>:allow_destroy</tt>
|
190
|
+
# option. This will allow you to also use the <tt>_destroy</tt> key to
|
191
|
+
# destroy existing records:
|
192
|
+
#
|
193
|
+
# class Member < ActiveRecord::Base
|
194
|
+
# has_many :posts
|
195
|
+
# accepts_nested_attributes_for :posts, allow_destroy: true
|
196
|
+
# end
|
197
|
+
#
|
198
|
+
# params = { member: {
|
199
|
+
# posts_attributes: [{ id: '2', _destroy: '1' }]
|
200
|
+
# }}
|
201
|
+
#
|
202
|
+
# member.attributes = params[:member]
|
203
|
+
# member.posts.detect { |p| p.id == 2 }.marked_for_destruction? # => true
|
204
|
+
# member.posts.length # => 2
|
205
|
+
# member.save
|
206
|
+
# member.reload.posts.length # => 1
|
207
|
+
#
|
208
|
+
# Nested attributes for an associated collection can also be passed in
|
209
|
+
# the form of a hash of hashes instead of an array of hashes:
|
210
|
+
#
|
211
|
+
# Member.create(
|
212
|
+
# name: 'joe',
|
213
|
+
# posts_attributes: {
|
214
|
+
# first: { title: 'Foo' },
|
215
|
+
# second: { title: 'Bar' }
|
216
|
+
# }
|
217
|
+
# )
|
218
|
+
#
|
219
|
+
# has the same effect as
|
220
|
+
#
|
221
|
+
# Member.create(
|
222
|
+
# name: 'joe',
|
223
|
+
# posts_attributes: [
|
224
|
+
# { title: 'Foo' },
|
225
|
+
# { title: 'Bar' }
|
226
|
+
# ]
|
227
|
+
# )
|
228
|
+
#
|
229
|
+
# The keys of the hash which is the value for +:posts_attributes+ are
|
230
|
+
# ignored in this case.
|
231
|
+
# However, it is not allowed to use <tt>'id'</tt> or <tt>:id</tt> for one of
|
232
|
+
# such keys, otherwise the hash will be wrapped in an array and
|
233
|
+
# interpreted as an attribute hash for a single post.
|
234
|
+
#
|
235
|
+
# Passing attributes for an associated collection in the form of a hash
|
236
|
+
# of hashes can be used with hashes generated from HTTP/HTML parameters,
|
237
|
+
# where there may be no natural way to submit an array of hashes.
|
238
|
+
#
|
239
|
+
# === Saving
|
240
|
+
#
|
241
|
+
# All changes to models, including the destruction of those marked for
|
242
|
+
# destruction, are saved and destroyed automatically and atomically when
|
243
|
+
# the parent model is saved. This happens inside the transaction initiated
|
244
|
+
# by the parent's save method. See ActiveRecord::AutosaveAssociation.
|
245
|
+
#
|
246
|
+
# === Validating the presence of a parent model
|
247
|
+
#
|
248
|
+
# The +belongs_to+ association validates the presence of the parent model
|
249
|
+
# by default. You can disable this behavior by specifying <code>optional: true</code>.
|
250
|
+
# This can be used, for example, when conditionally validating the presence
|
251
|
+
# of the parent model:
|
252
|
+
#
|
253
|
+
# class Veterinarian < ActiveRecord::Base
|
254
|
+
# has_many :patients, inverse_of: :veterinarian
|
255
|
+
# accepts_nested_attributes_for :patients
|
256
|
+
# end
|
257
|
+
#
|
258
|
+
# class Patient < ActiveRecord::Base
|
259
|
+
# belongs_to :veterinarian, inverse_of: :patients, optional: true
|
260
|
+
# validates :veterinarian, presence: true, unless: -> { awaiting_intake }
|
261
|
+
# end
|
262
|
+
#
|
263
|
+
# Note that if you do not specify the +:inverse_of+ option, then
|
264
|
+
# Active Record will try to automatically guess the inverse association
|
265
|
+
# based on heuristics.
|
266
|
+
#
|
267
|
+
# For one-to-one nested associations, if you build the new (in-memory)
|
268
|
+
# child object yourself before assignment, then this module will not
|
269
|
+
# overwrite it, e.g.:
|
270
|
+
#
|
271
|
+
# class Member < ActiveRecord::Base
|
272
|
+
# has_one :avatar
|
273
|
+
# accepts_nested_attributes_for :avatar
|
274
|
+
#
|
275
|
+
# def avatar
|
276
|
+
# super || build_avatar(width: 200)
|
277
|
+
# end
|
278
|
+
# end
|
279
|
+
#
|
280
|
+
# member = Member.new
|
281
|
+
# member.avatar_attributes = {icon: 'sad'}
|
282
|
+
# member.avatar.width # => 200
|
283
|
+
#
|
284
|
+
# === Creating forms with nested attributes
|
285
|
+
#
|
286
|
+
# Use ActionView::Helpers::FormHelper#fields_for to create form elements for
|
287
|
+
# nested attributes.
|
288
|
+
#
|
289
|
+
# Integration test params should reflect the structure of the form. For
|
290
|
+
# example:
|
291
|
+
#
|
292
|
+
# post members_path, params: {
|
293
|
+
# member: {
|
294
|
+
# name: 'joe',
|
295
|
+
# posts_attributes: {
|
296
|
+
# '0' => { title: 'Foo' },
|
297
|
+
# '1' => { title: 'Bar' }
|
298
|
+
# }
|
299
|
+
# }
|
300
|
+
# }
|
301
|
+
module ClassMethods
|
302
|
+
REJECT_ALL_BLANK_PROC = proc { |attributes| attributes.all? { |key, value| key == "_destroy" || value.blank? } }
|
303
|
+
|
304
|
+
# Defines an attributes writer for the specified association(s).
|
305
|
+
#
|
306
|
+
# Supported options:
|
307
|
+
# [:allow_destroy]
|
308
|
+
# If true, destroys any members from the attributes hash with a
|
309
|
+
# <tt>_destroy</tt> key and a value that evaluates to +true+
|
310
|
+
# (e.g. 1, '1', true, or 'true'). This option is false by default.
|
311
|
+
# [:reject_if]
|
312
|
+
# Allows you to specify a Proc or a Symbol pointing to a method
|
313
|
+
# that checks whether a record should be built for a certain attribute
|
314
|
+
# hash. The hash is passed to the supplied Proc or the method
|
315
|
+
# and it should return either +true+ or +false+. When no +:reject_if+
|
316
|
+
# is specified, a record will be built for all attribute hashes that
|
317
|
+
# do not have a <tt>_destroy</tt> value that evaluates to true.
|
318
|
+
# Passing <tt>:all_blank</tt> instead of a Proc will create a proc
|
319
|
+
# that will reject a record where all the attributes are blank excluding
|
320
|
+
# any value for +_destroy+.
|
321
|
+
# [:limit]
|
322
|
+
# Allows you to specify the maximum number of associated records that
|
323
|
+
# can be processed with the nested attributes. Limit also can be specified
|
324
|
+
# as a Proc or a Symbol pointing to a method that should return a number.
|
325
|
+
# If the size of the nested attributes array exceeds the specified limit,
|
326
|
+
# NestedAttributes::TooManyRecords exception is raised. If omitted, any
|
327
|
+
# number of associations can be processed.
|
328
|
+
# Note that the +:limit+ option is only applicable to one-to-many
|
329
|
+
# associations.
|
330
|
+
# [:update_only]
|
331
|
+
# For a one-to-one association, this option allows you to specify how
|
332
|
+
# nested attributes are going to be used when an associated record already
|
333
|
+
# exists. In general, an existing record may either be updated with the
|
334
|
+
# new set of attribute values or be replaced by a wholly new record
|
335
|
+
# containing those values. By default the +:update_only+ option is false
|
336
|
+
# and the nested attributes are used to update the existing record only
|
337
|
+
# if they include the record's <tt>:id</tt> value. Otherwise a new
|
338
|
+
# record will be instantiated and used to replace the existing one.
|
339
|
+
# However if the +:update_only+ option is true, the nested attributes
|
340
|
+
# are used to update the record's attributes always, regardless of
|
341
|
+
# whether the <tt>:id</tt> is present. The option is ignored for collection
|
342
|
+
# associations.
|
343
|
+
#
|
344
|
+
# Examples:
|
345
|
+
# # creates avatar_attributes=
|
346
|
+
# accepts_nested_attributes_for :avatar, reject_if: proc { |attributes| attributes['name'].blank? }
|
347
|
+
# # creates avatar_attributes=
|
348
|
+
# accepts_nested_attributes_for :avatar, reject_if: :all_blank
|
349
|
+
# # creates avatar_attributes= and posts_attributes=
|
350
|
+
# accepts_nested_attributes_for :avatar, :posts, allow_destroy: true
|
351
|
+
def accepts_nested_attributes_for(*attr_names)
|
352
|
+
options = { allow_destroy: false, update_only: false }
|
353
|
+
options.update(attr_names.extract_options!)
|
354
|
+
options.assert_valid_keys(:allow_destroy, :reject_if, :limit, :update_only)
|
355
|
+
options[:reject_if] = REJECT_ALL_BLANK_PROC if options[:reject_if] == :all_blank
|
356
|
+
|
357
|
+
attr_names.each do |association_name|
|
358
|
+
if reflection = _reflect_on_association(association_name)
|
359
|
+
reflection.autosave = true
|
360
|
+
define_autosave_validation_callbacks(reflection)
|
361
|
+
|
362
|
+
nested_attributes_options = self.nested_attributes_options.dup
|
363
|
+
nested_attributes_options[association_name.to_sym] = options
|
364
|
+
self.nested_attributes_options = nested_attributes_options
|
365
|
+
|
366
|
+
type = (reflection.collection? ? :collection : :one_to_one)
|
367
|
+
generate_association_writer(association_name, type)
|
368
|
+
else
|
369
|
+
raise ArgumentError, "No association found for name `#{association_name}'. Has it been defined yet?"
|
370
|
+
end
|
371
|
+
end
|
372
|
+
end
|
373
|
+
|
374
|
+
private
|
375
|
+
# Generates a writer method for this association. Serves as a point for
|
376
|
+
# accessing the objects in the association. For example, this method
|
377
|
+
# could generate the following:
|
378
|
+
#
|
379
|
+
# def pirate_attributes=(attributes)
|
380
|
+
# assign_nested_attributes_for_one_to_one_association(:pirate, attributes)
|
381
|
+
# end
|
382
|
+
#
|
383
|
+
# This redirects the attempts to write objects in an association through
|
384
|
+
# the helper methods defined below. Makes it seem like the nested
|
385
|
+
# associations are just regular associations.
|
386
|
+
def generate_association_writer(association_name, type)
|
387
|
+
generated_association_methods.module_eval <<-eoruby, __FILE__, __LINE__ + 1
|
388
|
+
silence_redefinition_of_method :#{association_name}_attributes=
|
389
|
+
def #{association_name}_attributes=(attributes)
|
390
|
+
assign_nested_attributes_for_#{type}_association(:#{association_name}, attributes)
|
391
|
+
end
|
392
|
+
eoruby
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
# Returns ActiveRecord::AutosaveAssociation#marked_for_destruction? It's
|
397
|
+
# used in conjunction with fields_for to build a form element for the
|
398
|
+
# destruction of this association.
|
399
|
+
#
|
400
|
+
# See ActionView::Helpers::FormHelper#fields_for for more info.
|
401
|
+
def _destroy
|
402
|
+
marked_for_destruction?
|
403
|
+
end
|
404
|
+
|
405
|
+
private
|
406
|
+
# Attribute hash keys that should not be assigned as normal attributes.
|
407
|
+
# These hash keys are nested attributes implementation details.
|
408
|
+
UNASSIGNABLE_KEYS = %w( id _destroy )
|
409
|
+
|
410
|
+
# Assigns the given attributes to the association.
|
411
|
+
#
|
412
|
+
# If an associated record does not yet exist, one will be instantiated. If
|
413
|
+
# an associated record already exists, the method's behavior depends on
|
414
|
+
# the value of the update_only option. If update_only is +false+ and the
|
415
|
+
# given attributes include an <tt>:id</tt> that matches the existing record's
|
416
|
+
# id, then the existing record will be modified. If no <tt>:id</tt> is provided
|
417
|
+
# it will be replaced with a new record. If update_only is +true+ the existing
|
418
|
+
# record will be modified regardless of whether an <tt>:id</tt> is provided.
|
419
|
+
#
|
420
|
+
# If the given attributes include a matching <tt>:id</tt> attribute, or
|
421
|
+
# update_only is true, and a <tt>:_destroy</tt> key set to a truthy value,
|
422
|
+
# then the existing record will be marked for destruction.
|
423
|
+
def assign_nested_attributes_for_one_to_one_association(association_name, attributes)
|
424
|
+
if attributes.respond_to?(:permitted?)
|
425
|
+
attributes = attributes.to_h
|
426
|
+
end
|
427
|
+
|
428
|
+
unless attributes.is_a?(Hash)
|
429
|
+
raise ArgumentError, "Hash expected for `#{association_name}` attributes, got #{attributes.class.name}"
|
430
|
+
end
|
431
|
+
|
432
|
+
options = nested_attributes_options[association_name]
|
433
|
+
attributes = attributes.with_indifferent_access
|
434
|
+
existing_record = send(association_name)
|
435
|
+
|
436
|
+
if (options[:update_only] || !attributes["id"].blank?) && existing_record &&
|
437
|
+
(options[:update_only] || existing_record.id.to_s == attributes["id"].to_s)
|
438
|
+
assign_to_or_mark_for_destruction(existing_record, attributes, options[:allow_destroy]) unless call_reject_if(association_name, attributes)
|
439
|
+
|
440
|
+
elsif attributes["id"].present?
|
441
|
+
raise_nested_attributes_record_not_found!(association_name, attributes["id"])
|
442
|
+
|
443
|
+
elsif !reject_new_record?(association_name, attributes)
|
444
|
+
assignable_attributes = attributes.except(*UNASSIGNABLE_KEYS)
|
445
|
+
|
446
|
+
if existing_record && existing_record.new_record?
|
447
|
+
existing_record.assign_attributes(assignable_attributes)
|
448
|
+
association(association_name).initialize_attributes(existing_record)
|
449
|
+
else
|
450
|
+
method = :"build_#{association_name}"
|
451
|
+
if respond_to?(method)
|
452
|
+
send(method, assignable_attributes)
|
453
|
+
else
|
454
|
+
raise ArgumentError, "Cannot build association `#{association_name}'. Are you trying to build a polymorphic one-to-one association?"
|
455
|
+
end
|
456
|
+
end
|
457
|
+
end
|
458
|
+
end
|
459
|
+
|
460
|
+
# Assigns the given attributes to the collection association.
|
461
|
+
#
|
462
|
+
# Hashes with an <tt>:id</tt> value matching an existing associated record
|
463
|
+
# will update that record. Hashes without an <tt>:id</tt> value will build
|
464
|
+
# a new record for the association. Hashes with a matching <tt>:id</tt>
|
465
|
+
# value and a <tt>:_destroy</tt> key set to a truthy value will mark the
|
466
|
+
# matched record for destruction.
|
467
|
+
#
|
468
|
+
# For example:
|
469
|
+
#
|
470
|
+
# assign_nested_attributes_for_collection_association(:people, {
|
471
|
+
# '1' => { id: '1', name: 'Peter' },
|
472
|
+
# '2' => { name: 'John' },
|
473
|
+
# '3' => { id: '2', _destroy: true }
|
474
|
+
# })
|
475
|
+
#
|
476
|
+
# Will update the name of the Person with ID 1, build a new associated
|
477
|
+
# person with the name 'John', and mark the associated Person with ID 2
|
478
|
+
# for destruction.
|
479
|
+
#
|
480
|
+
# Also accepts an Array of attribute hashes:
|
481
|
+
#
|
482
|
+
# assign_nested_attributes_for_collection_association(:people, [
|
483
|
+
# { id: '1', name: 'Peter' },
|
484
|
+
# { name: 'John' },
|
485
|
+
# { id: '2', _destroy: true }
|
486
|
+
# ])
|
487
|
+
def assign_nested_attributes_for_collection_association(association_name, attributes_collection)
|
488
|
+
options = nested_attributes_options[association_name]
|
489
|
+
if attributes_collection.respond_to?(:permitted?)
|
490
|
+
attributes_collection = attributes_collection.to_h
|
491
|
+
end
|
492
|
+
|
493
|
+
unless attributes_collection.is_a?(Hash) || attributes_collection.is_a?(Array)
|
494
|
+
raise ArgumentError, "Hash or Array expected for `#{association_name}` attributes, got #{attributes_collection.class.name}"
|
495
|
+
end
|
496
|
+
|
497
|
+
check_record_limit!(options[:limit], attributes_collection)
|
498
|
+
|
499
|
+
if attributes_collection.is_a? Hash
|
500
|
+
keys = attributes_collection.keys
|
501
|
+
attributes_collection = if keys.include?("id") || keys.include?(:id)
|
502
|
+
[attributes_collection]
|
503
|
+
else
|
504
|
+
attributes_collection.values
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
508
|
+
association = association(association_name)
|
509
|
+
|
510
|
+
existing_records = if association.loaded?
|
511
|
+
association.target
|
512
|
+
else
|
513
|
+
attribute_ids = attributes_collection.filter_map { |a| a["id"] || a[:id] }
|
514
|
+
attribute_ids.empty? ? [] : association.scope.where(association.klass.primary_key => attribute_ids)
|
515
|
+
end
|
516
|
+
|
517
|
+
records = attributes_collection.map do |attributes|
|
518
|
+
if attributes.respond_to?(:permitted?)
|
519
|
+
attributes = attributes.to_h
|
520
|
+
end
|
521
|
+
attributes = attributes.with_indifferent_access
|
522
|
+
|
523
|
+
if attributes["id"].blank?
|
524
|
+
unless reject_new_record?(association_name, attributes)
|
525
|
+
association.reader.build(attributes.except(*UNASSIGNABLE_KEYS))
|
526
|
+
end
|
527
|
+
elsif existing_record = find_record_by_id(association.klass, existing_records, attributes["id"])
|
528
|
+
unless call_reject_if(association_name, attributes)
|
529
|
+
# Make sure we are operating on the actual object which is in the association's
|
530
|
+
# proxy_target array (either by finding it, or adding it if not found)
|
531
|
+
# Take into account that the proxy_target may have changed due to callbacks
|
532
|
+
target_record = find_record_by_id(association.klass, association.target, attributes["id"])
|
533
|
+
if target_record
|
534
|
+
existing_record = target_record
|
535
|
+
else
|
536
|
+
association.add_to_target(existing_record, skip_callbacks: true)
|
537
|
+
end
|
538
|
+
|
539
|
+
assign_to_or_mark_for_destruction(existing_record, attributes, options[:allow_destroy])
|
540
|
+
existing_record
|
541
|
+
end
|
542
|
+
else
|
543
|
+
raise_nested_attributes_record_not_found!(association_name, attributes["id"])
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
association.nested_attributes_target = records
|
548
|
+
end
|
549
|
+
|
550
|
+
# Takes in a limit and checks if the attributes_collection has too many
|
551
|
+
# records. It accepts limit in the form of symbol, proc, or
|
552
|
+
# number-like object (anything that can be compared with an integer).
|
553
|
+
#
|
554
|
+
# Raises TooManyRecords error if the attributes_collection is
|
555
|
+
# larger than the limit.
|
556
|
+
def check_record_limit!(limit, attributes_collection)
|
557
|
+
if limit
|
558
|
+
limit = \
|
559
|
+
case limit
|
560
|
+
when Symbol
|
561
|
+
send(limit)
|
562
|
+
when Proc
|
563
|
+
limit.call
|
564
|
+
else
|
565
|
+
limit
|
566
|
+
end
|
567
|
+
|
568
|
+
if limit && attributes_collection.size > limit
|
569
|
+
raise TooManyRecords, "Maximum #{limit} records are allowed. Got #{attributes_collection.size} records instead."
|
570
|
+
end
|
571
|
+
end
|
572
|
+
end
|
573
|
+
|
574
|
+
# Updates a record with the +attributes+ or marks it for destruction if
|
575
|
+
# +allow_destroy+ is +true+ and has_destroy_flag? returns +true+.
|
576
|
+
def assign_to_or_mark_for_destruction(record, attributes, allow_destroy)
|
577
|
+
record.assign_attributes(attributes.except(*UNASSIGNABLE_KEYS))
|
578
|
+
record.mark_for_destruction if has_destroy_flag?(attributes) && allow_destroy
|
579
|
+
end
|
580
|
+
|
581
|
+
# Determines if a hash contains a truthy _destroy key.
|
582
|
+
def has_destroy_flag?(hash)
|
583
|
+
Type::Boolean.new.cast(hash["_destroy"])
|
584
|
+
end
|
585
|
+
|
586
|
+
# Determines if a new record should be rejected by checking
|
587
|
+
# has_destroy_flag? or if a <tt>:reject_if</tt> proc exists for this
|
588
|
+
# association and evaluates to +true+.
|
589
|
+
def reject_new_record?(association_name, attributes)
|
590
|
+
will_be_destroyed?(association_name, attributes) || call_reject_if(association_name, attributes)
|
591
|
+
end
|
592
|
+
|
593
|
+
# Determines if a record with the particular +attributes+ should be
|
594
|
+
# rejected by calling the reject_if Symbol or Proc (if defined).
|
595
|
+
# The reject_if option is defined by +accepts_nested_attributes_for+.
|
596
|
+
#
|
597
|
+
# Returns false if there is a +destroy_flag+ on the attributes.
|
598
|
+
def call_reject_if(association_name, attributes)
|
599
|
+
return false if will_be_destroyed?(association_name, attributes)
|
600
|
+
|
601
|
+
case callback = nested_attributes_options[association_name][:reject_if]
|
602
|
+
when Symbol
|
603
|
+
method(callback).arity == 0 ? send(callback) : send(callback, attributes)
|
604
|
+
when Proc
|
605
|
+
callback.call(attributes)
|
606
|
+
end
|
607
|
+
end
|
608
|
+
|
609
|
+
# Only take into account the destroy flag if <tt>:allow_destroy</tt> is true
|
610
|
+
def will_be_destroyed?(association_name, attributes)
|
611
|
+
allow_destroy?(association_name) && has_destroy_flag?(attributes)
|
612
|
+
end
|
613
|
+
|
614
|
+
def allow_destroy?(association_name)
|
615
|
+
nested_attributes_options[association_name][:allow_destroy]
|
616
|
+
end
|
617
|
+
|
618
|
+
def raise_nested_attributes_record_not_found!(association_name, record_id)
|
619
|
+
model = self.class._reflect_on_association(association_name).klass.name
|
620
|
+
raise RecordNotFound.new("Couldn't find #{model} with ID=#{record_id} for #{self.class.name} with ID=#{id}",
|
621
|
+
model, "id", record_id)
|
622
|
+
end
|
623
|
+
|
624
|
+
def find_record_by_id(klass, records, id)
|
625
|
+
if klass.composite_primary_key?
|
626
|
+
id = Array(id).map(&:to_s)
|
627
|
+
records.find { |record| Array(record.id).map(&:to_s) == id }
|
628
|
+
else
|
629
|
+
records.find { |record| record.id.to_s == id.to_s }
|
630
|
+
end
|
631
|
+
end
|
632
|
+
end
|
633
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
# = Active Record No Touching
|
5
|
+
module NoTouching
|
6
|
+
extend ActiveSupport::Concern
|
7
|
+
|
8
|
+
module ClassMethods
|
9
|
+
# Lets you selectively disable calls to +touch+ for the
|
10
|
+
# duration of a block.
|
11
|
+
#
|
12
|
+
# ==== Examples
|
13
|
+
# ActiveRecord::Base.no_touching do
|
14
|
+
# Project.first.touch # does nothing
|
15
|
+
# Message.first.touch # does nothing
|
16
|
+
# end
|
17
|
+
#
|
18
|
+
# Project.no_touching do
|
19
|
+
# Project.first.touch # does nothing
|
20
|
+
# Message.first.touch # works, but does not touch the associated project
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
def no_touching(&block)
|
24
|
+
NoTouching.apply_to(self, &block)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
class << self
|
29
|
+
def apply_to(klass) # :nodoc:
|
30
|
+
klasses.push(klass)
|
31
|
+
yield
|
32
|
+
ensure
|
33
|
+
klasses.pop
|
34
|
+
end
|
35
|
+
|
36
|
+
def applied_to?(klass) # :nodoc:
|
37
|
+
klasses.any? { |k| k >= klass }
|
38
|
+
end
|
39
|
+
|
40
|
+
private
|
41
|
+
def klasses
|
42
|
+
ActiveSupport::IsolatedExecutionState[:active_record_no_touching_classes] ||= []
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# Returns +true+ if the class has +no_touching+ set, +false+ otherwise.
|
47
|
+
#
|
48
|
+
# Project.no_touching do
|
49
|
+
# Project.first.no_touching? # true
|
50
|
+
# Message.first.no_touching? # false
|
51
|
+
# end
|
52
|
+
#
|
53
|
+
def no_touching?
|
54
|
+
NoTouching.applied_to?(self.class)
|
55
|
+
end
|
56
|
+
|
57
|
+
def touch_later(*) # :nodoc:
|
58
|
+
super unless no_touching?
|
59
|
+
end
|
60
|
+
|
61
|
+
def touch(*, **) # :nodoc:
|
62
|
+
super unless no_touching?
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|