Module: Fog::AWS::Storage::Utils
Instance Method Summary collapse
Instance Method Details
#cdn ⇒ Object
54 55 56 57 58 59 |
# File 'lib/fog/storage/aws.rb', line 54 def cdn @cdn ||= Fog::AWS::CDN.new( :aws_access_key_id => @aws_access_key_id, :aws_secret_access_key => @aws_secret_access_key ) end |
#parse_data(data) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/fog/storage/aws.rb', line 61 def parse_data(data) = { :body => nil, :headers => {} } if data.is_a?(String) [:body] = data [:headers]['Content-Length'] = [:body].size 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 [:headers]['Content-Length'] = ::File.size(data.path) end # metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip end |
#url(params, expires) ⇒ Object
82 83 84 85 86 87 88 89 90 |
# File 'lib/fog/storage/aws.rb', line 82 def url(params, expires) params[:headers]['Date'] = expires.to_i params[:path] = CGI.escape(params[:path]).gsub('%2F', '/') query = [params[:query]].compact query << "AWSAccessKeyId=#{@aws_access_key_id}" query << "Signature=#{CGI.escape(signature(params))}" query << "Expires=#{params[:headers]['Date']}" "https://#{@host}/#{params[:path]}?#{query.join('&')}" end |