module ActionMosaico::Attachable
Constants
- LOCATOR_NAME
Public Class Methods
from_attachable_sgid(sgid, options = {})
click to toggle source
# File lib/action_mosaico/attachable.rb, line 22 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)) record || raise(ActiveRecord::RecordNotFound) end
from_node(node)
click to toggle source
# File lib/action_mosaico/attachable.rb, line 10 def from_node(node) if attachable = attachable_from_sgid(node['sgid']) attachable elsif attachable = ActionMosaico::Attachables::ContentAttachment.from_node(node) attachable elsif attachable = ActionMosaico::Attachables::RemoteImage.from_node(node) attachable else ActionMosaico::Attachables::MissingAttachable end end
Private Class Methods
attachable_from_sgid(sgid)
click to toggle source
# File lib/action_mosaico/attachable.rb, line 30 def attachable_from_sgid(sgid) from_attachable_sgid(sgid) rescue ActiveRecord::RecordNotFound nil end
Public Instance Methods
as_json(*)
click to toggle source
Calls superclass method
# File lib/action_mosaico/attachable.rb, line 67 def as_json(*) super.merge(attachable_sgid: attachable_sgid) end
attachable_content_type()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 47 def attachable_content_type try(:content_type) || 'application/octet-stream' end
attachable_filename()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 51 def attachable_filename filename.to_s if respond_to?(:filename) end
attachable_filesize()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 55 def attachable_filesize try(:byte_size) || try(:filesize) end
attachable_metadata()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 59 def attachable_metadata try(:metadata) || {} end
attachable_sgid()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 43 def attachable_sgid to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s end
from_attachable_sgid(sgid)
click to toggle source
# File lib/action_mosaico/attachable.rb, line 38 def from_attachable_sgid(sgid) ActionMosaico::Attachable.from_attachable_sgid(sgid, only: self) end
previewable_attachable?()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 63 def previewable_attachable? false end
to_attachable_partial_path()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 75 def to_attachable_partial_path to_partial_path end
to_mosaico_content_attachment_partial_path()
click to toggle source
# File lib/action_mosaico/attachable.rb, line 71 def to_mosaico_content_attachment_partial_path to_partial_path end
to_rich_text_attributes(attributes = {})
click to toggle source
# File lib/action_mosaico/attachable.rb, line 79 def to_rich_text_attributes(attributes = {}) 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] end.compact end