mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
597acf0363
closes #327
59 lines
1.6 KiB
Ruby
59 lines
1.6 KiB
Ruby
module Fog
|
|
class Storage
|
|
|
|
def self.new(attributes)
|
|
attributes = attributes.dup # prevent delete from having side effects
|
|
case provider = attributes[:provider] # attributes.delete(:provider)
|
|
when 'AWS'
|
|
require 'fog/storage/aws'
|
|
Fog::AWS::Storage.new(attributes)
|
|
when 'Google'
|
|
require 'fog/storage/google'
|
|
Fog::Google::Storage.new(attributes)
|
|
when 'Local'
|
|
require 'fog/storage/local'
|
|
Fog::Local::Storage.new(attributes)
|
|
when 'Rackspace'
|
|
require 'fog/storage/rackspace'
|
|
Fog::Rackspace::Storage.new(attributes)
|
|
else
|
|
raise ArgumentError.new("#{provider} is not a recognized storage provider")
|
|
end
|
|
end
|
|
|
|
def self.get_body_size(body)
|
|
if body.respond_to?(:force_encoding)
|
|
body.force_encoding('BINARY')
|
|
end
|
|
if body.respond_to?(:bytesize)
|
|
body.bytesize
|
|
elsif body.respond_to?(:size)
|
|
body.size
|
|
elsif body.respond_to?(:stat)
|
|
body.stat.size
|
|
else
|
|
0
|
|
end
|
|
end
|
|
|
|
def self.parse_data(data)
|
|
metadata = {
|
|
:body => nil,
|
|
:headers => {}
|
|
}
|
|
|
|
metadata[:body] = data
|
|
metadata[:headers]['Content-Length'] = get_body_size(data)
|
|
|
|
if data.respond_to?(:path)
|
|
filename = ::File.basename(data.path)
|
|
unless (mime_types = MIME::Types.of(filename)).empty?
|
|
metadata[:headers]['Content-Type'] = mime_types.first.content_type
|
|
end
|
|
end
|
|
# metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip
|
|
metadata
|
|
end
|
|
|
|
end
|
|
end
|