12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'app/services/forest_liana/has_many_dissociator.rb', line 12
def perform
@record = @resource.find(@params[:id])
associated_records = @resource.find(@params[:id]).send(@association.name)
remove_association = !@with_deletion || @association.macro == :has_and_belongs_to_many
if @data.is_a?(Array)
record_ids = @data.map { |record| record[:id] }
elsif @data.dig('attributes').present?
record_ids = ForestLiana::ResourcesGetter.get_ids_from_request(@params, @forest_user)
else
record_ids = Array.new
end
if !record_ids.nil? && record_ids.any?
if remove_association
record_ids.each do |id|
associated_records.delete(@association.klass.find(id))
end
end
if @with_deletion
record_ids = record_ids.select { |record_id| @association.klass.exists?(record_id) }
@resource.transaction do
record_ids.each do |id|
record = @association.klass.find(id)
record.destroy!
end
end
end
end
end
|