omg-activerecord 8.0.0.alpha1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +355 -0
  3. data/MIT-LICENSE +22 -0
  4. data/README.rdoc +219 -0
  5. data/examples/performance.rb +185 -0
  6. data/examples/simple.rb +15 -0
  7. data/lib/active_record/aggregations.rb +287 -0
  8. data/lib/active_record/association_relation.rb +50 -0
  9. data/lib/active_record/associations/alias_tracker.rb +90 -0
  10. data/lib/active_record/associations/association.rb +417 -0
  11. data/lib/active_record/associations/association_scope.rb +175 -0
  12. data/lib/active_record/associations/belongs_to_association.rb +163 -0
  13. data/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
  14. data/lib/active_record/associations/builder/association.rb +170 -0
  15. data/lib/active_record/associations/builder/belongs_to.rb +160 -0
  16. data/lib/active_record/associations/builder/collection_association.rb +80 -0
  17. data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +107 -0
  18. data/lib/active_record/associations/builder/has_many.rb +23 -0
  19. data/lib/active_record/associations/builder/has_one.rb +61 -0
  20. data/lib/active_record/associations/builder/singular_association.rb +48 -0
  21. data/lib/active_record/associations/collection_association.rb +535 -0
  22. data/lib/active_record/associations/collection_proxy.rb +1163 -0
  23. data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
  24. data/lib/active_record/associations/errors.rb +265 -0
  25. data/lib/active_record/associations/foreign_association.rb +40 -0
  26. data/lib/active_record/associations/has_many_association.rb +167 -0
  27. data/lib/active_record/associations/has_many_through_association.rb +232 -0
  28. data/lib/active_record/associations/has_one_association.rb +142 -0
  29. data/lib/active_record/associations/has_one_through_association.rb +45 -0
  30. data/lib/active_record/associations/join_dependency/join_association.rb +106 -0
  31. data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
  32. data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
  33. data/lib/active_record/associations/join_dependency.rb +301 -0
  34. data/lib/active_record/associations/nested_error.rb +47 -0
  35. data/lib/active_record/associations/preloader/association.rb +316 -0
  36. data/lib/active_record/associations/preloader/batch.rb +48 -0
  37. data/lib/active_record/associations/preloader/branch.rb +153 -0
  38. data/lib/active_record/associations/preloader/through_association.rb +150 -0
  39. data/lib/active_record/associations/preloader.rb +135 -0
  40. data/lib/active_record/associations/singular_association.rb +76 -0
  41. data/lib/active_record/associations/through_association.rb +132 -0
  42. data/lib/active_record/associations.rb +1897 -0
  43. data/lib/active_record/asynchronous_queries_tracker.rb +64 -0
  44. data/lib/active_record/attribute_assignment.rb +82 -0
  45. data/lib/active_record/attribute_methods/before_type_cast.rb +106 -0
  46. data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
  47. data/lib/active_record/attribute_methods/dirty.rb +262 -0
  48. data/lib/active_record/attribute_methods/primary_key.rb +158 -0
  49. data/lib/active_record/attribute_methods/query.rb +50 -0
  50. data/lib/active_record/attribute_methods/read.rb +46 -0
  51. data/lib/active_record/attribute_methods/serialization.rb +232 -0
  52. data/lib/active_record/attribute_methods/time_zone_conversion.rb +94 -0
  53. data/lib/active_record/attribute_methods/write.rb +49 -0
  54. data/lib/active_record/attribute_methods.rb +542 -0
  55. data/lib/active_record/attributes.rb +307 -0
  56. data/lib/active_record/autosave_association.rb +586 -0
  57. data/lib/active_record/base.rb +338 -0
  58. data/lib/active_record/callbacks.rb +452 -0
  59. data/lib/active_record/coders/column_serializer.rb +61 -0
  60. data/lib/active_record/coders/json.rb +15 -0
  61. data/lib/active_record/coders/yaml_column.rb +95 -0
  62. data/lib/active_record/connection_adapters/abstract/connection_handler.rb +290 -0
  63. data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +210 -0
  64. data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +78 -0
  65. data/lib/active_record/connection_adapters/abstract/connection_pool.rb +923 -0
  66. data/lib/active_record/connection_adapters/abstract/database_limits.rb +31 -0
  67. data/lib/active_record/connection_adapters/abstract/database_statements.rb +747 -0
  68. data/lib/active_record/connection_adapters/abstract/query_cache.rb +319 -0
  69. data/lib/active_record/connection_adapters/abstract/quoting.rb +239 -0
  70. data/lib/active_record/connection_adapters/abstract/savepoints.rb +24 -0
  71. data/lib/active_record/connection_adapters/abstract/schema_creation.rb +190 -0
  72. data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +961 -0
  73. data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +106 -0
  74. data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1883 -0
  75. data/lib/active_record/connection_adapters/abstract/transaction.rb +676 -0
  76. data/lib/active_record/connection_adapters/abstract_adapter.rb +1218 -0
  77. data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +1016 -0
  78. data/lib/active_record/connection_adapters/column.rb +122 -0
  79. data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
  80. data/lib/active_record/connection_adapters/mysql/column.rb +28 -0
  81. data/lib/active_record/connection_adapters/mysql/database_statements.rb +95 -0
  82. data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
  83. data/lib/active_record/connection_adapters/mysql/quoting.rb +114 -0
  84. data/lib/active_record/connection_adapters/mysql/schema_creation.rb +106 -0
  85. data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +106 -0
  86. data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +97 -0
  87. data/lib/active_record/connection_adapters/mysql/schema_statements.rb +300 -0
  88. data/lib/active_record/connection_adapters/mysql/type_metadata.rb +40 -0
  89. data/lib/active_record/connection_adapters/mysql2/database_statements.rb +96 -0
  90. data/lib/active_record/connection_adapters/mysql2_adapter.rb +196 -0
  91. data/lib/active_record/connection_adapters/pool_config.rb +83 -0
  92. data/lib/active_record/connection_adapters/pool_manager.rb +57 -0
  93. data/lib/active_record/connection_adapters/postgresql/column.rb +82 -0
  94. data/lib/active_record/connection_adapters/postgresql/database_statements.rb +231 -0
  95. data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
  96. data/lib/active_record/connection_adapters/postgresql/oid/array.rb +91 -0
  97. data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -0
  98. data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
  99. data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
  100. data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +54 -0
  101. data/lib/active_record/connection_adapters/postgresql/oid/date.rb +31 -0
  102. data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +36 -0
  103. data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
  104. data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +20 -0
  105. data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +109 -0
  106. data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
  107. data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
  108. data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
  109. data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
  110. data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
  111. data/lib/active_record/connection_adapters/postgresql/oid/money.rb +42 -0
  112. data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
  113. data/lib/active_record/connection_adapters/postgresql/oid/point.rb +74 -0
  114. data/lib/active_record/connection_adapters/postgresql/oid/range.rb +124 -0
  115. data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
  116. data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
  117. data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +30 -0
  118. data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +125 -0
  119. data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +45 -0
  120. data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
  121. data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
  122. data/lib/active_record/connection_adapters/postgresql/oid.rb +38 -0
  123. data/lib/active_record/connection_adapters/postgresql/quoting.rb +238 -0
  124. data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +71 -0
  125. data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +169 -0
  126. data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +392 -0
  127. data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +127 -0
  128. data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +1162 -0
  129. data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +44 -0
  130. data/lib/active_record/connection_adapters/postgresql/utils.rb +79 -0
  131. data/lib/active_record/connection_adapters/postgresql_adapter.rb +1182 -0
  132. data/lib/active_record/connection_adapters/schema_cache.rb +478 -0
  133. data/lib/active_record/connection_adapters/sql_type_metadata.rb +45 -0
  134. data/lib/active_record/connection_adapters/sqlite3/column.rb +62 -0
  135. data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +145 -0
  136. data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
  137. data/lib/active_record/connection_adapters/sqlite3/quoting.rb +116 -0
  138. data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +37 -0
  139. data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +39 -0
  140. data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +47 -0
  141. data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +221 -0
  142. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +843 -0
  143. data/lib/active_record/connection_adapters/statement_pool.rb +67 -0
  144. data/lib/active_record/connection_adapters/trilogy/database_statements.rb +69 -0
  145. data/lib/active_record/connection_adapters/trilogy_adapter.rb +212 -0
  146. data/lib/active_record/connection_adapters.rb +176 -0
  147. data/lib/active_record/connection_handling.rb +413 -0
  148. data/lib/active_record/core.rb +836 -0
  149. data/lib/active_record/counter_cache.rb +230 -0
  150. data/lib/active_record/database_configurations/connection_url_resolver.rb +105 -0
  151. data/lib/active_record/database_configurations/database_config.rb +104 -0
  152. data/lib/active_record/database_configurations/hash_config.rb +172 -0
  153. data/lib/active_record/database_configurations/url_config.rb +78 -0
  154. data/lib/active_record/database_configurations.rb +309 -0
  155. data/lib/active_record/delegated_type.rb +289 -0
  156. data/lib/active_record/deprecator.rb +7 -0
  157. data/lib/active_record/destroy_association_async_job.rb +38 -0
  158. data/lib/active_record/disable_joins_association_relation.rb +39 -0
  159. data/lib/active_record/dynamic_matchers.rb +121 -0
  160. data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
  161. data/lib/active_record/encryption/cipher/aes256_gcm.rb +101 -0
  162. data/lib/active_record/encryption/cipher.rb +53 -0
  163. data/lib/active_record/encryption/config.rb +70 -0
  164. data/lib/active_record/encryption/configurable.rb +60 -0
  165. data/lib/active_record/encryption/context.rb +42 -0
  166. data/lib/active_record/encryption/contexts.rb +76 -0
  167. data/lib/active_record/encryption/derived_secret_key_provider.rb +18 -0
  168. data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
  169. data/lib/active_record/encryption/encryptable_record.rb +230 -0
  170. data/lib/active_record/encryption/encrypted_attribute_type.rb +184 -0
  171. data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
  172. data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
  173. data/lib/active_record/encryption/encryptor.rb +177 -0
  174. data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
  175. data/lib/active_record/encryption/errors.rb +15 -0
  176. data/lib/active_record/encryption/extended_deterministic_queries.rb +159 -0
  177. data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
  178. data/lib/active_record/encryption/key.rb +28 -0
  179. data/lib/active_record/encryption/key_generator.rb +53 -0
  180. data/lib/active_record/encryption/key_provider.rb +46 -0
  181. data/lib/active_record/encryption/message.rb +33 -0
  182. data/lib/active_record/encryption/message_pack_message_serializer.rb +76 -0
  183. data/lib/active_record/encryption/message_serializer.rb +96 -0
  184. data/lib/active_record/encryption/null_encryptor.rb +25 -0
  185. data/lib/active_record/encryption/properties.rb +76 -0
  186. data/lib/active_record/encryption/read_only_null_encryptor.rb +28 -0
  187. data/lib/active_record/encryption/scheme.rb +107 -0
  188. data/lib/active_record/encryption.rb +58 -0
  189. data/lib/active_record/enum.rb +424 -0
  190. data/lib/active_record/errors.rb +614 -0
  191. data/lib/active_record/explain.rb +63 -0
  192. data/lib/active_record/explain_registry.rb +37 -0
  193. data/lib/active_record/explain_subscriber.rb +34 -0
  194. data/lib/active_record/fixture_set/file.rb +89 -0
  195. data/lib/active_record/fixture_set/model_metadata.rb +42 -0
  196. data/lib/active_record/fixture_set/render_context.rb +19 -0
  197. data/lib/active_record/fixture_set/table_row.rb +208 -0
  198. data/lib/active_record/fixture_set/table_rows.rb +46 -0
  199. data/lib/active_record/fixtures.rb +850 -0
  200. data/lib/active_record/future_result.rb +182 -0
  201. data/lib/active_record/gem_version.rb +17 -0
  202. data/lib/active_record/inheritance.rb +366 -0
  203. data/lib/active_record/insert_all.rb +328 -0
  204. data/lib/active_record/integration.rb +209 -0
  205. data/lib/active_record/internal_metadata.rb +164 -0
  206. data/lib/active_record/legacy_yaml_adapter.rb +15 -0
  207. data/lib/active_record/locale/en.yml +48 -0
  208. data/lib/active_record/locking/optimistic.rb +228 -0
  209. data/lib/active_record/locking/pessimistic.rb +102 -0
  210. data/lib/active_record/log_subscriber.rb +149 -0
  211. data/lib/active_record/marshalling.rb +56 -0
  212. data/lib/active_record/message_pack.rb +124 -0
  213. data/lib/active_record/middleware/database_selector/resolver/session.rb +48 -0
  214. data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
  215. data/lib/active_record/middleware/database_selector.rb +87 -0
  216. data/lib/active_record/middleware/shard_selector.rb +62 -0
  217. data/lib/active_record/migration/command_recorder.rb +406 -0
  218. data/lib/active_record/migration/compatibility.rb +490 -0
  219. data/lib/active_record/migration/default_strategy.rb +22 -0
  220. data/lib/active_record/migration/execution_strategy.rb +19 -0
  221. data/lib/active_record/migration/join_table.rb +16 -0
  222. data/lib/active_record/migration/pending_migration_connection.rb +21 -0
  223. data/lib/active_record/migration.rb +1626 -0
  224. data/lib/active_record/model_schema.rb +635 -0
  225. data/lib/active_record/nested_attributes.rb +633 -0
  226. data/lib/active_record/no_touching.rb +65 -0
  227. data/lib/active_record/normalization.rb +163 -0
  228. data/lib/active_record/persistence.rb +968 -0
  229. data/lib/active_record/promise.rb +84 -0
  230. data/lib/active_record/query_cache.rb +56 -0
  231. data/lib/active_record/query_logs.rb +247 -0
  232. data/lib/active_record/query_logs_formatter.rb +30 -0
  233. data/lib/active_record/querying.rb +122 -0
  234. data/lib/active_record/railtie.rb +440 -0
  235. data/lib/active_record/railties/console_sandbox.rb +5 -0
  236. data/lib/active_record/railties/controller_runtime.rb +65 -0
  237. data/lib/active_record/railties/databases.rake +641 -0
  238. data/lib/active_record/railties/job_runtime.rb +23 -0
  239. data/lib/active_record/readonly_attributes.rb +66 -0
  240. data/lib/active_record/reflection.rb +1287 -0
  241. data/lib/active_record/relation/batches/batch_enumerator.rb +115 -0
  242. data/lib/active_record/relation/batches.rb +491 -0
  243. data/lib/active_record/relation/calculations.rb +679 -0
  244. data/lib/active_record/relation/delegation.rb +154 -0
  245. data/lib/active_record/relation/finder_methods.rb +661 -0
  246. data/lib/active_record/relation/from_clause.rb +30 -0
  247. data/lib/active_record/relation/merger.rb +192 -0
  248. data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
  249. data/lib/active_record/relation/predicate_builder/association_query_value.rb +76 -0
  250. data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
  251. data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +60 -0
  252. data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
  253. data/lib/active_record/relation/predicate_builder/relation_handler.rb +24 -0
  254. data/lib/active_record/relation/predicate_builder.rb +181 -0
  255. data/lib/active_record/relation/query_attribute.rb +68 -0
  256. data/lib/active_record/relation/query_methods.rb +2235 -0
  257. data/lib/active_record/relation/record_fetch_warning.rb +52 -0
  258. data/lib/active_record/relation/spawn_methods.rb +78 -0
  259. data/lib/active_record/relation/where_clause.rb +218 -0
  260. data/lib/active_record/relation.rb +1495 -0
  261. data/lib/active_record/result.rb +249 -0
  262. data/lib/active_record/runtime_registry.rb +82 -0
  263. data/lib/active_record/sanitization.rb +254 -0
  264. data/lib/active_record/schema.rb +77 -0
  265. data/lib/active_record/schema_dumper.rb +364 -0
  266. data/lib/active_record/schema_migration.rb +106 -0
  267. data/lib/active_record/scoping/default.rb +205 -0
  268. data/lib/active_record/scoping/named.rb +202 -0
  269. data/lib/active_record/scoping.rb +136 -0
  270. data/lib/active_record/secure_password.rb +60 -0
  271. data/lib/active_record/secure_token.rb +66 -0
  272. data/lib/active_record/serialization.rb +29 -0
  273. data/lib/active_record/signed_id.rb +137 -0
  274. data/lib/active_record/statement_cache.rb +164 -0
  275. data/lib/active_record/store.rb +299 -0
  276. data/lib/active_record/suppressor.rb +59 -0
  277. data/lib/active_record/table_metadata.rb +85 -0
  278. data/lib/active_record/tasks/database_tasks.rb +681 -0
  279. data/lib/active_record/tasks/mysql_database_tasks.rb +120 -0
  280. data/lib/active_record/tasks/postgresql_database_tasks.rb +147 -0
  281. data/lib/active_record/tasks/sqlite_database_tasks.rb +89 -0
  282. data/lib/active_record/test_databases.rb +24 -0
  283. data/lib/active_record/test_fixtures.rb +321 -0
  284. data/lib/active_record/testing/query_assertions.rb +121 -0
  285. data/lib/active_record/timestamp.rb +177 -0
  286. data/lib/active_record/token_for.rb +123 -0
  287. data/lib/active_record/touch_later.rb +70 -0
  288. data/lib/active_record/transaction.rb +132 -0
  289. data/lib/active_record/transactions.rb +523 -0
  290. data/lib/active_record/translation.rb +22 -0
  291. data/lib/active_record/type/adapter_specific_registry.rb +144 -0
  292. data/lib/active_record/type/date.rb +9 -0
  293. data/lib/active_record/type/date_time.rb +9 -0
  294. data/lib/active_record/type/decimal_without_scale.rb +15 -0
  295. data/lib/active_record/type/hash_lookup_type_map.rb +57 -0
  296. data/lib/active_record/type/internal/timezone.rb +22 -0
  297. data/lib/active_record/type/json.rb +30 -0
  298. data/lib/active_record/type/serialized.rb +76 -0
  299. data/lib/active_record/type/text.rb +11 -0
  300. data/lib/active_record/type/time.rb +35 -0
  301. data/lib/active_record/type/type_map.rb +58 -0
  302. data/lib/active_record/type/unsigned_integer.rb +16 -0
  303. data/lib/active_record/type.rb +83 -0
  304. data/lib/active_record/type_caster/connection.rb +33 -0
  305. data/lib/active_record/type_caster/map.rb +23 -0
  306. data/lib/active_record/type_caster.rb +9 -0
  307. data/lib/active_record/validations/absence.rb +25 -0
  308. data/lib/active_record/validations/associated.rb +65 -0
  309. data/lib/active_record/validations/length.rb +26 -0
  310. data/lib/active_record/validations/numericality.rb +36 -0
  311. data/lib/active_record/validations/presence.rb +45 -0
  312. data/lib/active_record/validations/uniqueness.rb +295 -0
  313. data/lib/active_record/validations.rb +101 -0
  314. data/lib/active_record/version.rb +10 -0
  315. data/lib/active_record.rb +616 -0
  316. data/lib/arel/alias_predication.rb +9 -0
  317. data/lib/arel/attributes/attribute.rb +33 -0
  318. data/lib/arel/collectors/bind.rb +31 -0
  319. data/lib/arel/collectors/composite.rb +46 -0
  320. data/lib/arel/collectors/plain_string.rb +20 -0
  321. data/lib/arel/collectors/sql_string.rb +27 -0
  322. data/lib/arel/collectors/substitute_binds.rb +35 -0
  323. data/lib/arel/crud.rb +48 -0
  324. data/lib/arel/delete_manager.rb +32 -0
  325. data/lib/arel/errors.rb +19 -0
  326. data/lib/arel/expressions.rb +29 -0
  327. data/lib/arel/factory_methods.rb +53 -0
  328. data/lib/arel/filter_predications.rb +9 -0
  329. data/lib/arel/insert_manager.rb +48 -0
  330. data/lib/arel/math.rb +45 -0
  331. data/lib/arel/nodes/ascending.rb +23 -0
  332. data/lib/arel/nodes/binary.rb +125 -0
  333. data/lib/arel/nodes/bind_param.rb +44 -0
  334. data/lib/arel/nodes/bound_sql_literal.rb +65 -0
  335. data/lib/arel/nodes/case.rb +55 -0
  336. data/lib/arel/nodes/casted.rb +62 -0
  337. data/lib/arel/nodes/comment.rb +29 -0
  338. data/lib/arel/nodes/count.rb +12 -0
  339. data/lib/arel/nodes/cte.rb +36 -0
  340. data/lib/arel/nodes/delete_statement.rb +44 -0
  341. data/lib/arel/nodes/descending.rb +23 -0
  342. data/lib/arel/nodes/equality.rb +15 -0
  343. data/lib/arel/nodes/extract.rb +24 -0
  344. data/lib/arel/nodes/false.rb +16 -0
  345. data/lib/arel/nodes/filter.rb +10 -0
  346. data/lib/arel/nodes/fragments.rb +35 -0
  347. data/lib/arel/nodes/full_outer_join.rb +8 -0
  348. data/lib/arel/nodes/function.rb +45 -0
  349. data/lib/arel/nodes/grouping.rb +11 -0
  350. data/lib/arel/nodes/homogeneous_in.rb +68 -0
  351. data/lib/arel/nodes/in.rb +15 -0
  352. data/lib/arel/nodes/infix_operation.rb +92 -0
  353. data/lib/arel/nodes/inner_join.rb +8 -0
  354. data/lib/arel/nodes/insert_statement.rb +37 -0
  355. data/lib/arel/nodes/join_source.rb +20 -0
  356. data/lib/arel/nodes/leading_join.rb +8 -0
  357. data/lib/arel/nodes/matches.rb +18 -0
  358. data/lib/arel/nodes/named_function.rb +23 -0
  359. data/lib/arel/nodes/nary.rb +39 -0
  360. data/lib/arel/nodes/node.rb +161 -0
  361. data/lib/arel/nodes/node_expression.rb +13 -0
  362. data/lib/arel/nodes/ordering.rb +27 -0
  363. data/lib/arel/nodes/outer_join.rb +8 -0
  364. data/lib/arel/nodes/over.rb +15 -0
  365. data/lib/arel/nodes/regexp.rb +16 -0
  366. data/lib/arel/nodes/right_outer_join.rb +8 -0
  367. data/lib/arel/nodes/select_core.rb +67 -0
  368. data/lib/arel/nodes/select_statement.rb +41 -0
  369. data/lib/arel/nodes/sql_literal.rb +32 -0
  370. data/lib/arel/nodes/string_join.rb +11 -0
  371. data/lib/arel/nodes/table_alias.rb +35 -0
  372. data/lib/arel/nodes/terminal.rb +16 -0
  373. data/lib/arel/nodes/true.rb +16 -0
  374. data/lib/arel/nodes/unary.rb +44 -0
  375. data/lib/arel/nodes/unary_operation.rb +20 -0
  376. data/lib/arel/nodes/unqualified_column.rb +22 -0
  377. data/lib/arel/nodes/update_statement.rb +46 -0
  378. data/lib/arel/nodes/values_list.rb +9 -0
  379. data/lib/arel/nodes/window.rb +126 -0
  380. data/lib/arel/nodes/with.rb +11 -0
  381. data/lib/arel/nodes.rb +75 -0
  382. data/lib/arel/order_predications.rb +13 -0
  383. data/lib/arel/predications.rb +260 -0
  384. data/lib/arel/select_manager.rb +276 -0
  385. data/lib/arel/table.rb +121 -0
  386. data/lib/arel/tree_manager.rb +65 -0
  387. data/lib/arel/update_manager.rb +49 -0
  388. data/lib/arel/visitors/dot.rb +299 -0
  389. data/lib/arel/visitors/mysql.rb +111 -0
  390. data/lib/arel/visitors/postgresql.rb +99 -0
  391. data/lib/arel/visitors/sqlite.rb +38 -0
  392. data/lib/arel/visitors/to_sql.rb +1033 -0
  393. data/lib/arel/visitors/visitor.rb +45 -0
  394. data/lib/arel/visitors.rb +13 -0
  395. data/lib/arel/window_predications.rb +9 -0
  396. data/lib/arel.rb +73 -0
  397. data/lib/rails/generators/active_record/application_record/USAGE +8 -0
  398. data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -0
  399. data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
  400. data/lib/rails/generators/active_record/migration/migration_generator.rb +76 -0
  401. data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +29 -0
  402. data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
  403. data/lib/rails/generators/active_record/migration.rb +54 -0
  404. data/lib/rails/generators/active_record/model/USAGE +113 -0
  405. data/lib/rails/generators/active_record/model/model_generator.rb +94 -0
  406. data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
  407. data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
  408. data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
  409. data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
  410. data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
  411. data/lib/rails/generators/active_record.rb +19 -0
  412. 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