aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_storage/attached/many.rb
blob: 704369ba892cf82baaf3465e67c11aa28ab35ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
43
44
45
46
47
# Representation of multiple attachments to a model.
class ActiveStorage::Attached::Many < ActiveStorage::Attached
  delegate_missing_to :attachments

  # Returns all the associated attachment records.
  #
  # You don't have to call this method to access the attachments' methods as
  # they are all available at the model level.
  def attachments
    record.public_send("#{name}_attachments")
  end

  # Associates one or several attachments with the current record, saving
  # them to the database.
  def attach(*attachables)
    record.public_send("#{name}_attachments=", attachments | Array(attachables).flat_map do |attachable|
      ActiveStorage::Attachment.create!(record: record, name: name, blob: create_blob_from(attachable))
    end)
  end

  # Checks the presence of attachments.
  #
  #   class Gallery < ActiveRecord::Base
  #     has_many_attached :photos
  #   end
  #
  #   Gallery.new.photos.attached? # => false
  def attached?
    attachments.any?
  end

  # Directly purges each associated attachment (i.e. destroys the blobs and
  # attachments and deletes the files on the service).
  def purge
    if attached?
      attachments.each(&:purge)
      attachments.reload
    end
  end

  # Purges each associated attachment through the queuing system.
  def purge_later
    if attached?
      attachments.each(&:purge_later)
    end
  end
end