提交 87a8c611 编写于 作者: R Ryuta Kamizono

Merge pull request #35799 from leboshi/master

Fix callbacks on has_many :through associations
上级 724e1f4e
* Assign all attributes before calling `build` to ensure the child record is visible in
`before_add` and `after_add` callbacks for `has_many :through` associations.
Fixes #33249.
*Ryan H. Kerr*
## Rails 5.2.3 (March 27, 2019) ##
* Fix different `count` calculation when using `size` with manual `select` with DISTINCT.
......
......@@ -57,21 +57,14 @@ def build_through_record(record)
@through_records[record.object_id] ||= begin
ensure_mutable
through_record = through_association.build(*options_for_through_record)
through_record.send("#{source_reflection.name}=", record)
attributes = through_scope_attributes
attributes[source_reflection.name] = record
attributes[source_reflection.foreign_type] = options[:source_type] if options[:source_type]
if options[:source_type]
through_record.send("#{source_reflection.foreign_type}=", options[:source_type])
end
through_record
through_association.build(attributes)
end
end
def options_for_through_record
[through_scope_attributes]
end
def through_scope_attributes
scope.where_values_hash(through_association.reflection.name.to_s).
except!(through_association.reflection.foreign_key,
......
......@@ -1447,6 +1447,24 @@ def self.name; "PostWithNestedHasManyThrough"; end
assert_equal [subscription2], post.subscriptions.to_a
end
def test_child_is_visible_to_join_model_in_add_association_callbacks
[:before_add, :after_add].each do |callback_name|
sentient_treasure = Class.new(Treasure) do
def self.name; "SentientTreasure"; end
has_many :pet_treasures, foreign_key: :treasure_id, callback_name => :check_pet!
has_many :pets, through: :pet_treasures
def check_pet!(added)
raise "No pet!" if added.pet.nil?
end
end
treasure = sentient_treasure.new
assert_nothing_raised { treasure.pets << pets(:mochi) }
end
end
private
def make_model(name)
Class.new(ActiveRecord::Base) { define_singleton_method(:name) { name } }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册