2018-10-08 17:44:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-13 19:23:04 -04:00
|
|
|
module ActionText
|
2018-02-07 19:26:19 -05:00
|
|
|
module Attachable
|
2018-02-12 18:21:49 -05:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
LOCATOR_NAME = "attachable"
|
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
class << self
|
|
|
|
def from_node(node)
|
|
|
|
if attachable = attachable_from_sgid(node["sgid"])
|
|
|
|
attachable
|
2018-04-13 19:23:04 -04:00
|
|
|
elsif attachable = ActionText::Attachables::ContentAttachment.from_node(node)
|
2018-02-07 19:26:19 -05:00
|
|
|
attachable
|
2018-04-13 19:23:04 -04:00
|
|
|
elsif attachable = ActionText::Attachables::RemoteImage.from_node(node)
|
2018-02-07 19:26:19 -05:00
|
|
|
attachable
|
|
|
|
else
|
2018-04-13 19:23:04 -04:00
|
|
|
ActionText::Attachables::MissingAttachable
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-12 18:21:49 -05:00
|
|
|
def from_attachable_sgid(sgid, options = {})
|
|
|
|
method = sgid.is_a?(Array) ? :locate_many_signed : :locate_signed
|
|
|
|
record = GlobalID::Locator.public_send(method, sgid, options.merge(for: LOCATOR_NAME))
|
2019-01-04 19:43:11 -05:00
|
|
|
record || raise(ActiveRecord::RecordNotFound)
|
2018-02-12 18:21:49 -05:00
|
|
|
end
|
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
private
|
|
|
|
def attachable_from_sgid(sgid)
|
2018-02-12 18:21:49 -05:00
|
|
|
from_attachable_sgid(sgid)
|
2018-02-07 19:26:19 -05:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2018-02-12 18:21:49 -05:00
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def from_attachable_sgid(sgid)
|
2018-04-13 19:23:04 -04:00
|
|
|
ActionText::Attachable.from_attachable_sgid(sgid, only: self)
|
2018-02-12 18:21:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachable_sgid
|
|
|
|
to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachable_content_type
|
|
|
|
try(:content_type) || "application/octet-stream"
|
|
|
|
end
|
|
|
|
|
2018-10-03 12:10:09 -04:00
|
|
|
def attachable_filename
|
|
|
|
filename.to_s if respond_to?(:filename)
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachable_filesize
|
|
|
|
try(:byte_size) || try(:filesize)
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachable_metadata
|
|
|
|
try(:metadata) || {}
|
|
|
|
end
|
|
|
|
|
2018-02-12 18:21:49 -05:00
|
|
|
def previewable_attachable?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def as_json(*)
|
|
|
|
super.merge(attachable_sgid: attachable_sgid)
|
|
|
|
end
|
|
|
|
|
2019-03-05 12:29:32 -05:00
|
|
|
def to_trix_content_attachment_partial_path
|
|
|
|
to_partial_path
|
|
|
|
end
|
|
|
|
|
2018-04-13 17:10:18 -04:00
|
|
|
def to_rich_text_attributes(attributes = {})
|
2018-10-13 11:05:13 -04:00
|
|
|
attributes.dup.tap do |attrs|
|
|
|
|
attrs[:sgid] = attachable_sgid
|
|
|
|
attrs[:content_type] = attachable_content_type
|
|
|
|
attrs[:previewable] = true if previewable_attachable?
|
|
|
|
attrs[:filename] = attachable_filename
|
|
|
|
attrs[:filesize] = attachable_filesize
|
|
|
|
attrs[:width] = attachable_metadata[:width]
|
|
|
|
attrs[:height] = attachable_metadata[:height]
|
2018-10-03 12:10:09 -04:00
|
|
|
end.compact
|
2018-02-12 18:21:49 -05:00
|
|
|
end
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
end
|