1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/active_storage/attached.rb

35 lines
876 B
Ruby
Raw Normal View History

require "active_storage/blob"
require "active_storage/attachment"
2017-07-05 10:09:41 -04:00
require "action_dispatch/http/upload"
require "active_support/core_ext/module/delegation"
class ActiveStorage::Attached
2017-07-05 10:09:41 -04:00
attr_reader :name, :record
def initialize(name, record)
@name, @record = name, record
end
private
def create_blob_from(attachable)
case attachable
when ActiveStorage::Blob
2017-07-05 10:09:41 -04:00
attachable
when ActionDispatch::Http::UploadedFile
ActiveStorage::Blob.create_after_upload! \
2017-07-05 10:09:41 -04:00
io: attachable.open,
filename: attachable.original_filename,
content_type: attachable.content_type
when Hash
ActiveStorage::Blob.create_after_upload!(attachable)
2017-07-05 10:09:41 -04:00
else
nil
end
end
end
require "active_storage/attached/one"
require "active_storage/attached/many"
require "active_storage/attached/macros"