Module: Fog::Rackspace::Storage::Utils

Included in:
Mock, Real
Defined in:
lib/fog/storage/rackspace.rb

Instance Method Summary collapse

Instance Method Details

#cdnObject



45
46
47
48
49
50
51
# File 'lib/fog/storage/rackspace.rb', line 45

def cdn
  @cdn ||= Fog::CDN.new(
    :provider           => 'Rackspace',
    :rackspace_api_key  => @rackspace_api_key,
    :rackspace_username => @rackspace_username
  )
end

#parse_data(data) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/fog/storage/rackspace.rb', line 53

def parse_data(data)
   = {
    :body => nil,
    :headers => {}
  }

  if data.is_a?(String)
    [:body] = data
    [:headers]['Content-Length'] = [:body].size.to_s
  else
    filename = ::File.basename(data.path)
    unless (mime_types = MIME::Types.of(filename)).empty?
      [:headers]['Content-Type'] = mime_types.first.content_type
    end
    [:body] = data.read
    [:headers]['Content-Length'] = ::File.size(data.path).to_s
  end
  # metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip
  
end