activerecord_csi 2.3.5.p6
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.
- data/CHANGELOG +5858 -0
- data/README +351 -0
- data/RUNNING_UNIT_TESTS +36 -0
- data/Rakefile +270 -0
- data/examples/associations.png +0 -0
- data/examples/performance.rb +162 -0
- data/install.rb +30 -0
- data/lib/active_record/aggregations.rb +261 -0
- data/lib/active_record/association_preload.rb +389 -0
- data/lib/active_record/associations/association_collection.rb +475 -0
- data/lib/active_record/associations/association_proxy.rb +278 -0
- data/lib/active_record/associations/belongs_to_association.rb +76 -0
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
- data/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
- data/lib/active_record/associations/has_many_association.rb +122 -0
- data/lib/active_record/associations/has_many_through_association.rb +266 -0
- data/lib/active_record/associations/has_one_association.rb +133 -0
- data/lib/active_record/associations/has_one_through_association.rb +37 -0
- data/lib/active_record/associations.rb +2241 -0
- data/lib/active_record/attribute_methods.rb +388 -0
- data/lib/active_record/autosave_association.rb +364 -0
- data/lib/active_record/base.rb +3171 -0
- data/lib/active_record/batches.rb +81 -0
- data/lib/active_record/calculations.rb +311 -0
- data/lib/active_record/callbacks.rb +360 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
- data/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
- data/lib/active_record/connection_adapters/mysql_adapter.rb +630 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
- data/lib/active_record/dirty.rb +183 -0
- data/lib/active_record/dynamic_finder_match.rb +41 -0
- data/lib/active_record/dynamic_scope_match.rb +25 -0
- data/lib/active_record/fixtures.rb +996 -0
- data/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/lib/active_record/locale/en.yml +58 -0
- data/lib/active_record/locking/optimistic.rb +148 -0
- data/lib/active_record/locking/pessimistic.rb +55 -0
- data/lib/active_record/migration.rb +566 -0
- data/lib/active_record/named_scope.rb +192 -0
- data/lib/active_record/nested_attributes.rb +392 -0
- data/lib/active_record/observer.rb +197 -0
- data/lib/active_record/query_cache.rb +33 -0
- data/lib/active_record/reflection.rb +320 -0
- data/lib/active_record/schema.rb +51 -0
- data/lib/active_record/schema_dumper.rb +182 -0
- data/lib/active_record/serialization.rb +101 -0
- data/lib/active_record/serializers/json_serializer.rb +91 -0
- data/lib/active_record/serializers/xml_serializer.rb +357 -0
- data/lib/active_record/session_store.rb +326 -0
- data/lib/active_record/test_case.rb +66 -0
- data/lib/active_record/timestamp.rb +71 -0
- data/lib/active_record/transactions.rb +235 -0
- data/lib/active_record/validations.rb +1135 -0
- data/lib/active_record/version.rb +9 -0
- data/lib/active_record.rb +84 -0
- data/lib/activerecord.rb +2 -0
- data/test/assets/example.log +1 -0
- data/test/assets/flowers.jpg +0 -0
- data/test/cases/aaa_create_tables_test.rb +24 -0
- data/test/cases/active_schema_test_mysql.rb +100 -0
- data/test/cases/active_schema_test_postgresql.rb +24 -0
- data/test/cases/adapter_test.rb +145 -0
- data/test/cases/aggregations_test.rb +167 -0
- data/test/cases/ar_schema_test.rb +32 -0
- data/test/cases/associations/belongs_to_associations_test.rb +425 -0
- data/test/cases/associations/callbacks_test.rb +161 -0
- data/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
- data/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/test/cases/associations/eager_load_nested_include_test.rb +130 -0
- data/test/cases/associations/eager_singularization_test.rb +145 -0
- data/test/cases/associations/eager_test.rb +834 -0
- data/test/cases/associations/extension_test.rb +62 -0
- data/test/cases/associations/habtm_join_table_test.rb +56 -0
- data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
- data/test/cases/associations/has_many_associations_test.rb +1134 -0
- data/test/cases/associations/has_many_through_associations_test.rb +346 -0
- data/test/cases/associations/has_one_associations_test.rb +330 -0
- data/test/cases/associations/has_one_through_associations_test.rb +209 -0
- data/test/cases/associations/inner_join_association_test.rb +93 -0
- data/test/cases/associations/join_model_test.rb +712 -0
- data/test/cases/associations_test.rb +262 -0
- data/test/cases/attribute_methods_test.rb +305 -0
- data/test/cases/autosave_association_test.rb +1142 -0
- data/test/cases/base_test.rb +2154 -0
- data/test/cases/batches_test.rb +61 -0
- data/test/cases/binary_test.rb +30 -0
- data/test/cases/calculations_test.rb +348 -0
- data/test/cases/callbacks_observers_test.rb +38 -0
- data/test/cases/callbacks_test.rb +438 -0
- data/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/test/cases/column_alias_test.rb +17 -0
- data/test/cases/column_definition_test.rb +70 -0
- data/test/cases/connection_pool_test.rb +25 -0
- data/test/cases/connection_test_firebird.rb +8 -0
- data/test/cases/connection_test_mysql.rb +64 -0
- data/test/cases/copy_table_test_sqlite.rb +80 -0
- data/test/cases/database_statements_test.rb +12 -0
- data/test/cases/datatype_test_postgresql.rb +204 -0
- data/test/cases/date_time_test.rb +37 -0
- data/test/cases/default_test_firebird.rb +16 -0
- data/test/cases/defaults_test.rb +111 -0
- data/test/cases/deprecated_finder_test.rb +30 -0
- data/test/cases/dirty_test.rb +316 -0
- data/test/cases/finder_respond_to_test.rb +76 -0
- data/test/cases/finder_test.rb +1066 -0
- data/test/cases/fixtures_test.rb +656 -0
- data/test/cases/helper.rb +68 -0
- data/test/cases/i18n_test.rb +46 -0
- data/test/cases/inheritance_test.rb +262 -0
- data/test/cases/invalid_date_test.rb +24 -0
- data/test/cases/json_serialization_test.rb +205 -0
- data/test/cases/lifecycle_test.rb +193 -0
- data/test/cases/locking_test.rb +304 -0
- data/test/cases/method_scoping_test.rb +704 -0
- data/test/cases/migration_test.rb +1523 -0
- data/test/cases/migration_test_firebird.rb +124 -0
- data/test/cases/mixin_test.rb +96 -0
- data/test/cases/modules_test.rb +81 -0
- data/test/cases/multiple_db_test.rb +85 -0
- data/test/cases/named_scope_test.rb +361 -0
- data/test/cases/nested_attributes_test.rb +581 -0
- data/test/cases/pk_test.rb +119 -0
- data/test/cases/pooled_connections_test.rb +103 -0
- data/test/cases/query_cache_test.rb +123 -0
- data/test/cases/readonly_test.rb +107 -0
- data/test/cases/reflection_test.rb +194 -0
- data/test/cases/reload_models_test.rb +22 -0
- data/test/cases/repair_helper.rb +50 -0
- data/test/cases/reserved_word_test_mysql.rb +176 -0
- data/test/cases/sanitize_test.rb +25 -0
- data/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/test/cases/schema_dumper_test.rb +211 -0
- data/test/cases/schema_test_postgresql.rb +178 -0
- data/test/cases/serialization_test.rb +47 -0
- data/test/cases/synonym_test_oracle.rb +17 -0
- data/test/cases/timestamp_test.rb +75 -0
- data/test/cases/transactions_test.rb +522 -0
- data/test/cases/unconnected_test.rb +32 -0
- data/test/cases/validations_i18n_test.rb +955 -0
- data/test/cases/validations_test.rb +1640 -0
- data/test/cases/xml_serialization_test.rb +240 -0
- data/test/config.rb +5 -0
- data/test/connections/jdbc_jdbcderby/connection.rb +18 -0
- data/test/connections/jdbc_jdbch2/connection.rb +18 -0
- data/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
- data/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
- data/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
- data/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
- data/test/connections/native_db2/connection.rb +25 -0
- data/test/connections/native_firebird/connection.rb +26 -0
- data/test/connections/native_frontbase/connection.rb +27 -0
- data/test/connections/native_mysql/connection.rb +25 -0
- data/test/connections/native_openbase/connection.rb +21 -0
- data/test/connections/native_oracle/connection.rb +27 -0
- data/test/connections/native_postgresql/connection.rb +25 -0
- data/test/connections/native_sqlite/connection.rb +25 -0
- data/test/connections/native_sqlite3/connection.rb +25 -0
- data/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/test/connections/native_sybase/connection.rb +23 -0
- data/test/fixtures/accounts.yml +29 -0
- data/test/fixtures/all/developers.yml +0 -0
- data/test/fixtures/all/people.csv +0 -0
- data/test/fixtures/all/tasks.yml +0 -0
- data/test/fixtures/author_addresses.yml +5 -0
- data/test/fixtures/author_favorites.yml +4 -0
- data/test/fixtures/authors.yml +9 -0
- data/test/fixtures/binaries.yml +132 -0
- data/test/fixtures/books.yml +7 -0
- data/test/fixtures/categories/special_categories.yml +9 -0
- data/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/test/fixtures/categories.yml +14 -0
- data/test/fixtures/categories_ordered.yml +7 -0
- data/test/fixtures/categories_posts.yml +23 -0
- data/test/fixtures/categorizations.yml +17 -0
- data/test/fixtures/clubs.yml +6 -0
- data/test/fixtures/comments.yml +59 -0
- data/test/fixtures/companies.yml +56 -0
- data/test/fixtures/computers.yml +4 -0
- data/test/fixtures/courses.yml +7 -0
- data/test/fixtures/customers.yml +26 -0
- data/test/fixtures/developers.yml +21 -0
- data/test/fixtures/developers_projects.yml +17 -0
- data/test/fixtures/edges.yml +6 -0
- data/test/fixtures/entrants.yml +14 -0
- data/test/fixtures/fixture_database.sqlite3 +0 -0
- data/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/test/fixtures/fk_test_has_fk.yml +3 -0
- data/test/fixtures/fk_test_has_pk.yml +2 -0
- data/test/fixtures/funny_jokes.yml +10 -0
- data/test/fixtures/items.yml +4 -0
- data/test/fixtures/jobs.yml +7 -0
- data/test/fixtures/legacy_things.yml +3 -0
- data/test/fixtures/mateys.yml +4 -0
- data/test/fixtures/member_types.yml +6 -0
- data/test/fixtures/members.yml +6 -0
- data/test/fixtures/memberships.yml +20 -0
- data/test/fixtures/minimalistics.yml +2 -0
- data/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/test/fixtures/mixins.yml +29 -0
- data/test/fixtures/movies.yml +7 -0
- data/test/fixtures/naked/csv/accounts.csv +1 -0
- data/test/fixtures/naked/yml/accounts.yml +1 -0
- data/test/fixtures/naked/yml/companies.yml +1 -0
- data/test/fixtures/naked/yml/courses.yml +1 -0
- data/test/fixtures/organizations.yml +5 -0
- data/test/fixtures/owners.yml +7 -0
- data/test/fixtures/parrots.yml +27 -0
- data/test/fixtures/parrots_pirates.yml +7 -0
- data/test/fixtures/people.yml +15 -0
- data/test/fixtures/pets.yml +14 -0
- data/test/fixtures/pirates.yml +9 -0
- data/test/fixtures/posts.yml +52 -0
- data/test/fixtures/price_estimates.yml +7 -0
- data/test/fixtures/projects.yml +7 -0
- data/test/fixtures/readers.yml +9 -0
- data/test/fixtures/references.yml +17 -0
- data/test/fixtures/reserved_words/distinct.yml +5 -0
- data/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/test/fixtures/reserved_words/group.yml +14 -0
- data/test/fixtures/reserved_words/select.yml +8 -0
- data/test/fixtures/reserved_words/values.yml +7 -0
- data/test/fixtures/ships.yml +5 -0
- data/test/fixtures/sponsors.yml +9 -0
- data/test/fixtures/subscribers.yml +7 -0
- data/test/fixtures/subscriptions.yml +12 -0
- data/test/fixtures/taggings.yml +28 -0
- data/test/fixtures/tags.yml +7 -0
- data/test/fixtures/tasks.yml +7 -0
- data/test/fixtures/topics.yml +42 -0
- data/test/fixtures/toys.yml +4 -0
- data/test/fixtures/treasures.yml +10 -0
- data/test/fixtures/vertices.yml +4 -0
- data/test/fixtures/warehouse-things.yml +3 -0
- data/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/test/migrations/duplicate/3_foo.rb +7 -0
- data/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/test/models/author.rb +146 -0
- data/test/models/auto_id.rb +4 -0
- data/test/models/binary.rb +2 -0
- data/test/models/bird.rb +3 -0
- data/test/models/book.rb +4 -0
- data/test/models/categorization.rb +5 -0
- data/test/models/category.rb +34 -0
- data/test/models/citation.rb +6 -0
- data/test/models/club.rb +13 -0
- data/test/models/column_name.rb +3 -0
- data/test/models/comment.rb +29 -0
- data/test/models/company.rb +171 -0
- data/test/models/company_in_module.rb +61 -0
- data/test/models/computer.rb +3 -0
- data/test/models/contact.rb +16 -0
- data/test/models/contract.rb +5 -0
- data/test/models/course.rb +3 -0
- data/test/models/customer.rb +73 -0
- data/test/models/default.rb +2 -0
- data/test/models/developer.rb +101 -0
- data/test/models/edge.rb +5 -0
- data/test/models/entrant.rb +3 -0
- data/test/models/essay.rb +3 -0
- data/test/models/event.rb +3 -0
- data/test/models/guid.rb +2 -0
- data/test/models/item.rb +7 -0
- data/test/models/job.rb +5 -0
- data/test/models/joke.rb +3 -0
- data/test/models/keyboard.rb +3 -0
- data/test/models/legacy_thing.rb +3 -0
- data/test/models/matey.rb +4 -0
- data/test/models/member.rb +12 -0
- data/test/models/member_detail.rb +5 -0
- data/test/models/member_type.rb +3 -0
- data/test/models/membership.rb +9 -0
- data/test/models/minimalistic.rb +2 -0
- data/test/models/mixed_case_monkey.rb +3 -0
- data/test/models/movie.rb +5 -0
- data/test/models/order.rb +4 -0
- data/test/models/organization.rb +6 -0
- data/test/models/owner.rb +5 -0
- data/test/models/parrot.rb +16 -0
- data/test/models/person.rb +16 -0
- data/test/models/pet.rb +5 -0
- data/test/models/pirate.rb +70 -0
- data/test/models/post.rb +100 -0
- data/test/models/price_estimate.rb +3 -0
- data/test/models/project.rb +30 -0
- data/test/models/reader.rb +4 -0
- data/test/models/reference.rb +4 -0
- data/test/models/reply.rb +46 -0
- data/test/models/ship.rb +10 -0
- data/test/models/ship_part.rb +5 -0
- data/test/models/sponsor.rb +4 -0
- data/test/models/subject.rb +4 -0
- data/test/models/subscriber.rb +8 -0
- data/test/models/subscription.rb +4 -0
- data/test/models/tag.rb +7 -0
- data/test/models/tagging.rb +10 -0
- data/test/models/task.rb +3 -0
- data/test/models/topic.rb +80 -0
- data/test/models/toy.rb +6 -0
- data/test/models/treasure.rb +8 -0
- data/test/models/vertex.rb +9 -0
- data/test/models/warehouse_thing.rb +5 -0
- data/test/schema/mysql_specific_schema.rb +24 -0
- data/test/schema/postgresql_specific_schema.rb +114 -0
- data/test/schema/schema.rb +493 -0
- data/test/schema/schema2.rb +6 -0
- data/test/schema/sqlite_specific_schema.rb +25 -0
- metadata +420 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
module ActiveRecord
|
|
2
|
+
# AutosaveAssociation is a module that takes care of automatically saving
|
|
3
|
+
# your associations when the parent is saved. In addition to saving, it
|
|
4
|
+
# also destroys any associations that were marked for destruction.
|
|
5
|
+
# (See mark_for_destruction and marked_for_destruction?)
|
|
6
|
+
#
|
|
7
|
+
# Saving of the parent, its associations, and the destruction of marked
|
|
8
|
+
# associations, all happen inside 1 transaction. This should never leave the
|
|
9
|
+
# database in an inconsistent state after, for instance, mass assigning
|
|
10
|
+
# attributes and saving them.
|
|
11
|
+
#
|
|
12
|
+
# If validations for any of the associations fail, their error messages will
|
|
13
|
+
# be applied to the parent.
|
|
14
|
+
#
|
|
15
|
+
# Note that it also means that associations marked for destruction won't
|
|
16
|
+
# be destroyed directly. They will however still be marked for destruction.
|
|
17
|
+
#
|
|
18
|
+
# === One-to-one Example
|
|
19
|
+
#
|
|
20
|
+
# Consider a Post model with one Author:
|
|
21
|
+
#
|
|
22
|
+
# class Post
|
|
23
|
+
# has_one :author, :autosave => true
|
|
24
|
+
# end
|
|
25
|
+
#
|
|
26
|
+
# Saving changes to the parent and its associated model can now be performed
|
|
27
|
+
# automatically _and_ atomically:
|
|
28
|
+
#
|
|
29
|
+
# post = Post.find(1)
|
|
30
|
+
# post.title # => "The current global position of migrating ducks"
|
|
31
|
+
# post.author.name # => "alloy"
|
|
32
|
+
#
|
|
33
|
+
# post.title = "On the migration of ducks"
|
|
34
|
+
# post.author.name = "Eloy Duran"
|
|
35
|
+
#
|
|
36
|
+
# post.save
|
|
37
|
+
# post.reload
|
|
38
|
+
# post.title # => "On the migration of ducks"
|
|
39
|
+
# post.author.name # => "Eloy Duran"
|
|
40
|
+
#
|
|
41
|
+
# Destroying an associated model, as part of the parent's save action, is as
|
|
42
|
+
# simple as marking it for destruction:
|
|
43
|
+
#
|
|
44
|
+
# post.author.mark_for_destruction
|
|
45
|
+
# post.author.marked_for_destruction? # => true
|
|
46
|
+
#
|
|
47
|
+
# Note that the model is _not_ yet removed from the database:
|
|
48
|
+
# id = post.author.id
|
|
49
|
+
# Author.find_by_id(id).nil? # => false
|
|
50
|
+
#
|
|
51
|
+
# post.save
|
|
52
|
+
# post.reload.author # => nil
|
|
53
|
+
#
|
|
54
|
+
# Now it _is_ removed from the database:
|
|
55
|
+
# Author.find_by_id(id).nil? # => true
|
|
56
|
+
#
|
|
57
|
+
# === One-to-many Example
|
|
58
|
+
#
|
|
59
|
+
# Consider a Post model with many Comments:
|
|
60
|
+
#
|
|
61
|
+
# class Post
|
|
62
|
+
# has_many :comments, :autosave => true
|
|
63
|
+
# end
|
|
64
|
+
#
|
|
65
|
+
# Saving changes to the parent and its associated model can now be performed
|
|
66
|
+
# automatically _and_ atomically:
|
|
67
|
+
#
|
|
68
|
+
# post = Post.find(1)
|
|
69
|
+
# post.title # => "The current global position of migrating ducks"
|
|
70
|
+
# post.comments.first.body # => "Wow, awesome info thanks!"
|
|
71
|
+
# post.comments.last.body # => "Actually, your article should be named differently."
|
|
72
|
+
#
|
|
73
|
+
# post.title = "On the migration of ducks"
|
|
74
|
+
# post.comments.last.body = "Actually, your article should be named differently. [UPDATED]: You are right, thanks."
|
|
75
|
+
#
|
|
76
|
+
# post.save
|
|
77
|
+
# post.reload
|
|
78
|
+
# post.title # => "On the migration of ducks"
|
|
79
|
+
# post.comments.last.body # => "Actually, your article should be named differently. [UPDATED]: You are right, thanks."
|
|
80
|
+
#
|
|
81
|
+
# Destroying one of the associated models members, as part of the parent's
|
|
82
|
+
# save action, is as simple as marking it for destruction:
|
|
83
|
+
#
|
|
84
|
+
# post.comments.last.mark_for_destruction
|
|
85
|
+
# post.comments.last.marked_for_destruction? # => true
|
|
86
|
+
# post.comments.length # => 2
|
|
87
|
+
#
|
|
88
|
+
# Note that the model is _not_ yet removed from the database:
|
|
89
|
+
# id = post.comments.last.id
|
|
90
|
+
# Comment.find_by_id(id).nil? # => false
|
|
91
|
+
#
|
|
92
|
+
# post.save
|
|
93
|
+
# post.reload.comments.length # => 1
|
|
94
|
+
#
|
|
95
|
+
# Now it _is_ removed from the database:
|
|
96
|
+
# Comment.find_by_id(id).nil? # => true
|
|
97
|
+
#
|
|
98
|
+
# === Validation
|
|
99
|
+
#
|
|
100
|
+
# Validation is performed on the parent as usual, but also on all autosave
|
|
101
|
+
# enabled associations. If any of the associations fail validation, its
|
|
102
|
+
# error messages will be applied on the parents errors object and validation
|
|
103
|
+
# of the parent will fail.
|
|
104
|
+
#
|
|
105
|
+
# Consider a Post model with Author which validates the presence of its name
|
|
106
|
+
# attribute:
|
|
107
|
+
#
|
|
108
|
+
# class Post
|
|
109
|
+
# has_one :author, :autosave => true
|
|
110
|
+
# end
|
|
111
|
+
#
|
|
112
|
+
# class Author
|
|
113
|
+
# validates_presence_of :name
|
|
114
|
+
# end
|
|
115
|
+
#
|
|
116
|
+
# post = Post.find(1)
|
|
117
|
+
# post.author.name = ''
|
|
118
|
+
# post.save # => false
|
|
119
|
+
# post.errors # => #<ActiveRecord::Errors:0x174498c @errors={"author_name"=>["can't be blank"]}, @base=#<Post ...>>
|
|
120
|
+
#
|
|
121
|
+
# No validations will be performed on the associated models when validations
|
|
122
|
+
# are skipped for the parent:
|
|
123
|
+
#
|
|
124
|
+
# post = Post.find(1)
|
|
125
|
+
# post.author.name = ''
|
|
126
|
+
# post.save(false) # => true
|
|
127
|
+
module AutosaveAssociation
|
|
128
|
+
ASSOCIATION_TYPES = %w{ has_one belongs_to has_many has_and_belongs_to_many }
|
|
129
|
+
|
|
130
|
+
def self.included(base)
|
|
131
|
+
base.class_eval do
|
|
132
|
+
base.extend(ClassMethods)
|
|
133
|
+
alias_method_chain :reload, :autosave_associations
|
|
134
|
+
|
|
135
|
+
ASSOCIATION_TYPES.each do |type|
|
|
136
|
+
base.send("valid_keys_for_#{type}_association") << :autosave
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
module ClassMethods
|
|
142
|
+
private
|
|
143
|
+
|
|
144
|
+
# def belongs_to(name, options = {})
|
|
145
|
+
# super
|
|
146
|
+
# add_autosave_association_callbacks(reflect_on_association(name))
|
|
147
|
+
# end
|
|
148
|
+
ASSOCIATION_TYPES.each do |type|
|
|
149
|
+
module_eval %{
|
|
150
|
+
def #{type}(name, options = {})
|
|
151
|
+
super
|
|
152
|
+
add_autosave_association_callbacks(reflect_on_association(name))
|
|
153
|
+
end
|
|
154
|
+
}
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
# Adds a validate and save callback for the association as specified by
|
|
158
|
+
# the +reflection+.
|
|
159
|
+
def add_autosave_association_callbacks(reflection)
|
|
160
|
+
save_method = "autosave_associated_records_for_#{reflection.name}"
|
|
161
|
+
validation_method = "validate_associated_records_for_#{reflection.name}"
|
|
162
|
+
force_validation = (reflection.options[:validate] == true || reflection.options[:autosave] == true)
|
|
163
|
+
|
|
164
|
+
case reflection.macro
|
|
165
|
+
when :has_many, :has_and_belongs_to_many
|
|
166
|
+
before_save :before_save_collection_association
|
|
167
|
+
|
|
168
|
+
define_method(save_method) { save_collection_association(reflection) }
|
|
169
|
+
# Doesn't use after_save as that would save associations added in after_create/after_update twice
|
|
170
|
+
after_create save_method
|
|
171
|
+
after_update save_method
|
|
172
|
+
|
|
173
|
+
if force_validation || (reflection.macro == :has_many && reflection.options[:validate] != false)
|
|
174
|
+
define_method(validation_method) { validate_collection_association(reflection) }
|
|
175
|
+
validate validation_method
|
|
176
|
+
end
|
|
177
|
+
else
|
|
178
|
+
case reflection.macro
|
|
179
|
+
when :has_one
|
|
180
|
+
define_method(save_method) { save_has_one_association(reflection) }
|
|
181
|
+
after_save save_method
|
|
182
|
+
when :belongs_to
|
|
183
|
+
define_method(save_method) { save_belongs_to_association(reflection) }
|
|
184
|
+
before_save save_method
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
if force_validation
|
|
188
|
+
define_method(validation_method) { validate_single_association(reflection) }
|
|
189
|
+
validate validation_method
|
|
190
|
+
end
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# Reloads the attributes of the object as usual and removes a mark for destruction.
|
|
196
|
+
def reload_with_autosave_associations(options = nil)
|
|
197
|
+
@marked_for_destruction = false
|
|
198
|
+
reload_without_autosave_associations(options)
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
# Marks this record to be destroyed as part of the parents save transaction.
|
|
202
|
+
# This does _not_ actually destroy the record yet, rather it will be destroyed when <tt>parent.save</tt> is called.
|
|
203
|
+
#
|
|
204
|
+
# Only useful if the <tt>:autosave</tt> option on the parent is enabled for this associated model.
|
|
205
|
+
def mark_for_destruction
|
|
206
|
+
@marked_for_destruction = true
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
# Returns whether or not this record will be destroyed as part of the parents save transaction.
|
|
210
|
+
#
|
|
211
|
+
# Only useful if the <tt>:autosave</tt> option on the parent is enabled for this associated model.
|
|
212
|
+
def marked_for_destruction?
|
|
213
|
+
@marked_for_destruction
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
private
|
|
217
|
+
|
|
218
|
+
# Returns the record for an association collection that should be validated
|
|
219
|
+
# or saved. If +autosave+ is +false+ only new records will be returned,
|
|
220
|
+
# unless the parent is/was a new record itself.
|
|
221
|
+
def associated_records_to_validate_or_save(association, new_record, autosave)
|
|
222
|
+
if new_record
|
|
223
|
+
association
|
|
224
|
+
elsif association.loaded?
|
|
225
|
+
autosave ? association : association.select { |record| record.new_record? }
|
|
226
|
+
else
|
|
227
|
+
autosave ? association.target : association.target.select { |record| record.new_record? }
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
# Validate the association if <tt>:validate</tt> or <tt>:autosave</tt> is
|
|
232
|
+
# turned on for the association specified by +reflection+.
|
|
233
|
+
def validate_single_association(reflection)
|
|
234
|
+
if (association = association_instance_get(reflection.name)) && !association.target.nil?
|
|
235
|
+
association_valid?(reflection, association)
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
# Validate the associated records if <tt>:validate</tt> or
|
|
240
|
+
# <tt>:autosave</tt> is turned on for the association specified by
|
|
241
|
+
# +reflection+.
|
|
242
|
+
def validate_collection_association(reflection)
|
|
243
|
+
if association = association_instance_get(reflection.name)
|
|
244
|
+
if records = associated_records_to_validate_or_save(association, new_record?, reflection.options[:autosave])
|
|
245
|
+
records.each { |record| association_valid?(reflection, record) }
|
|
246
|
+
end
|
|
247
|
+
end
|
|
248
|
+
end
|
|
249
|
+
|
|
250
|
+
# Returns whether or not the association is valid and applies any errors to
|
|
251
|
+
# the parent, <tt>self</tt>, if it wasn't. Skips any <tt>:autosave</tt>
|
|
252
|
+
# enabled records if they're marked_for_destruction? or destroyed.
|
|
253
|
+
def association_valid?(reflection, association)
|
|
254
|
+
return true if association.destroyed? || association.marked_for_destruction?
|
|
255
|
+
|
|
256
|
+
unless valid = association.valid?
|
|
257
|
+
if reflection.options[:autosave]
|
|
258
|
+
association.errors.each_error do |attribute, error|
|
|
259
|
+
attribute = "#{reflection.name}.#{attribute}"
|
|
260
|
+
errors.add(attribute, error.dup) unless errors.on(attribute)
|
|
261
|
+
end
|
|
262
|
+
else
|
|
263
|
+
errors.add(reflection.name)
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
valid
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
# Is used as a before_save callback to check while saving a collection
|
|
270
|
+
# association whether or not the parent was a new record before saving.
|
|
271
|
+
def before_save_collection_association
|
|
272
|
+
@new_record_before_save = new_record?
|
|
273
|
+
true
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
# Saves any new associated records, or all loaded autosave associations if
|
|
277
|
+
# <tt>:autosave</tt> is enabled on the association.
|
|
278
|
+
#
|
|
279
|
+
# In addition, it destroys all children that were marked for destruction
|
|
280
|
+
# with mark_for_destruction.
|
|
281
|
+
#
|
|
282
|
+
# This all happens inside a transaction, _if_ the Transactions module is included into
|
|
283
|
+
# ActiveRecord::Base after the AutosaveAssociation module, which it does by default.
|
|
284
|
+
def save_collection_association(reflection)
|
|
285
|
+
if association = association_instance_get(reflection.name)
|
|
286
|
+
autosave = reflection.options[:autosave]
|
|
287
|
+
|
|
288
|
+
if records = associated_records_to_validate_or_save(association, @new_record_before_save, autosave)
|
|
289
|
+
records.each do |record|
|
|
290
|
+
next if record.destroyed?
|
|
291
|
+
|
|
292
|
+
if autosave && record.marked_for_destruction?
|
|
293
|
+
association.destroy(record)
|
|
294
|
+
elsif autosave != false && (@new_record_before_save || record.new_record?)
|
|
295
|
+
if autosave
|
|
296
|
+
association.send(:insert_record, record, false, false)
|
|
297
|
+
else
|
|
298
|
+
association.send(:insert_record, record)
|
|
299
|
+
end
|
|
300
|
+
elsif autosave
|
|
301
|
+
record.save(false)
|
|
302
|
+
end
|
|
303
|
+
end
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
# reconstruct the SQL queries now that we know the owner's id
|
|
307
|
+
association.send(:construct_sql) if association.respond_to?(:construct_sql)
|
|
308
|
+
end
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
# Saves the associated record if it's new or <tt>:autosave</tt> is enabled
|
|
312
|
+
# on the association.
|
|
313
|
+
#
|
|
314
|
+
# In addition, it will destroy the association if it was marked for
|
|
315
|
+
# destruction with mark_for_destruction.
|
|
316
|
+
#
|
|
317
|
+
# This all happens inside a transaction, _if_ the Transactions module is included into
|
|
318
|
+
# ActiveRecord::Base after the AutosaveAssociation module, which it does by default.
|
|
319
|
+
def save_has_one_association(reflection)
|
|
320
|
+
if (association = association_instance_get(reflection.name)) && !association.target.nil? && !association.destroyed?
|
|
321
|
+
autosave = reflection.options[:autosave]
|
|
322
|
+
|
|
323
|
+
if autosave && association.marked_for_destruction?
|
|
324
|
+
association.destroy
|
|
325
|
+
else
|
|
326
|
+
key = reflection.options[:primary_key] ? send(reflection.options[:primary_key]) : id
|
|
327
|
+
if autosave != false && (new_record? || association.new_record? || association[reflection.primary_key_name] != key || autosave)
|
|
328
|
+
association[reflection.primary_key_name] = key
|
|
329
|
+
association.save(!autosave)
|
|
330
|
+
end
|
|
331
|
+
end
|
|
332
|
+
end
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
# Saves the associated record if it's new or <tt>:autosave</tt> is enabled
|
|
336
|
+
# on the association.
|
|
337
|
+
#
|
|
338
|
+
# In addition, it will destroy the association if it was marked for
|
|
339
|
+
# destruction with mark_for_destruction.
|
|
340
|
+
#
|
|
341
|
+
# This all happens inside a transaction, _if_ the Transactions module is included into
|
|
342
|
+
# ActiveRecord::Base after the AutosaveAssociation module, which it does by default.
|
|
343
|
+
def save_belongs_to_association(reflection)
|
|
344
|
+
if (association = association_instance_get(reflection.name)) && !association.destroyed?
|
|
345
|
+
autosave = reflection.options[:autosave]
|
|
346
|
+
|
|
347
|
+
if autosave && association.marked_for_destruction?
|
|
348
|
+
association.destroy
|
|
349
|
+
elsif autosave != false
|
|
350
|
+
association.save(!autosave) if association.new_record? || autosave
|
|
351
|
+
|
|
352
|
+
if association.updated?
|
|
353
|
+
association_id = association.send(reflection.options[:primary_key] || :id)
|
|
354
|
+
self[reflection.primary_key_name] = association_id
|
|
355
|
+
# TODO: Removing this code doesn't seem to matter…
|
|
356
|
+
if reflection.options[:polymorphic]
|
|
357
|
+
self[reflection.options[:foreign_type]] = association.class.base_class.name.to_s
|
|
358
|
+
end
|
|
359
|
+
end
|
|
360
|
+
end
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
end
|