class ActiveRecord::DestroyAssociationAsyncJob
Job to destroy the records associated with a destroyed record in background.
Public Instance Methods
perform( owner_model_name: nil, owner_id: nil, association_class: nil, association_ids: nil, association_primary_key_column: nil, ensuring_owner_was_method: nil )
click to toggle source
# File lib/active_record/destroy_association_async_job.rb, line 13 def perform( owner_model_name: nil, owner_id: nil, association_class: nil, association_ids: nil, association_primary_key_column: nil, ensuring_owner_was_method: nil ) association_model = association_class.constantize owner_class = owner_model_name.constantize owner = owner_class.find_by(owner_class.primary_key.to_sym => owner_id) if !owner_destroyed?(owner, ensuring_owner_was_method) raise DestroyAssociationAsyncError, "owner record not destroyed" end association_model.where(association_primary_key_column => association_ids).find_each do |r| r.destroy end end
Private Instance Methods
owner_destroyed?(owner, ensuring_owner_was_method)
click to toggle source
# File lib/active_record/destroy_association_async_job.rb, line 32 def owner_destroyed?(owner, ensuring_owner_was_method) !owner || (ensuring_owner_was_method && owner.public_send(ensuring_owner_was_method)) end