Sha256: 470e75c139eaf78b332b9a0a64576519913df7039b2dc6ab195281511a0a107f
Contents?: true
Size: 907 Bytes
Versions: 2
Compression:
Stored size: 907 Bytes
Contents
# Helper method to decode a base64 file and create a StringIO file module ActiveStorageSupport module Base64Attach module_function def attachment_from_data(attachment) if attachment.is_a?(Hash) attachment = attachment.symbolize_keys fill_attachment_data(attachment, attachment.delete(:data)) end attachment end def fill_attachment_data(attachment, base64_data) return unless base64_data.try(:is_a?, String) && base64_data.strip.start_with?('data') headers, data = base64_data.split(',') decoded_data = Base64.decode64(data) attachment[:io] = StringIO.new(decoded_data) attachment[:content_type] ||= content_type(headers) attachment[:filename] ||= Time.current.to_i.to_s end def content_type(headers) headers =~ /^data:(.*?)$/ Regexp.last_match(1).split(';base64').first end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_storage_base64-1.0.0 | lib/active_storage_support/base64_attach.rb |
active_storage_base64-0.1.4 | lib/active_storage_support/base64_attach.rb |