Module: Fog::Storage::AWS::Utils

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#regionObject

Returns the value of attribute region.



113
114
115
# File 'lib/fog/aws/storage.rb', line 113

def region
  @region
end

Instance Method Details

#cdnObject



115
116
117
118
119
120
121
# File 'lib/fog/aws/storage.rb', line 115

def cdn
  @cdn ||= Fog::AWS::CDN.new(
    :aws_access_key_id => @aws_access_key_id,
    :aws_secret_access_key => @aws_secret_access_key,
    :use_iam_profile => @use_iam_profile
  )
end

#http_url(params, expires) ⇒ Object



123
124
125
# File 'lib/fog/aws/storage.rb', line 123

def http_url(params, expires)
  signed_url(params.merge(:scheme => 'http'), expires)
end

#https_url(params, expires) ⇒ Object



127
128
129
# File 'lib/fog/aws/storage.rb', line 127

def https_url(params, expires)
  signed_url(params.merge(:scheme => 'https'), expires)
end

#request_url(params) ⇒ Object



150
151
152
153
# File 'lib/fog/aws/storage.rb', line 150

def request_url(params)
  params = request_params(params)
  params_to_url(params)
end

#require_mime_typesObject



136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/fog/aws/storage.rb', line 136

def require_mime_types
  begin
    # Use mime/types/columnar if available, for reduced memory usage
    require 'mime/types/columnar'
  rescue LoadError
    begin
      require 'mime/types'
    rescue LoadError
      Fog::Logger.warning("'mime-types' missing, please install and try again.")
      exit(1)
    end
  end
end

#signed_url(params, expires) ⇒ Object



155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/fog/aws/storage.rb', line 155

def signed_url(params, expires)
  refresh_credentials_if_expired

  #convert expires from a point in time to a delta to now
  expires = expires.to_i
  if @signature_version == 4
    params = v4_signed_params_for_url(params, expires)
  else
    params = v2_signed_params_for_url(params, expires)
  end

  params_to_url(params)
end

#url(params, expires) ⇒ Object



131
132
133
134
# File 'lib/fog/aws/storage.rb', line 131

def url(params, expires)
  Fog::Logger.deprecation("Fog::Storage::AWS => #url is deprecated, use #https_url instead [light_black](#{caller.first})[/]")
  https_url(params, expires)
end