aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/active_storage/attachment.rb
blob: 20c619aa5add6b7582b7c0e2ff0885cb8494bc23 (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
require "active_storage/blob"
require "global_id"
require "active_support/core_ext/module/delegation"

# Schema: id, record_gid, blob_id, created_at
class ActiveStorage::Attachment < ActiveRecord::Base
  self.table_name = "active_storage_attachments"

  belongs_to :blob, class_name: "ActiveStorage::Blob"

  delegate_missing_to :blob

  def record
    @record ||= GlobalID::Locator.locate(record_gid)
  end

  def record=(record)
    @record = record
    self.record_gid = record&.to_gid
  end

  def purge
    blob.purge
    destroy
  end

  def purge_later
    ActiveStorage::PurgeJob.perform_later(self)
  end
end