mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
f6d361b2e2
Logics have been centralised: * region to hostname * url generation * signature * chaning scheme also changes the port During the process a couple of inconsistencies have also been fixed. Known limitations: When using the @endpoint with a custom port you need to specify the port when using get_object_http_url or get_object_https_url. When using bucket names that contain dots outside of us-east-1 make sure to access it with the same region in your AWS::Storage.
46 lines
1.1 KiB
Ruby
46 lines
1.1 KiB
Ruby
module Fog
|
|
module Storage
|
|
class AWS
|
|
|
|
module GetObjectUrl
|
|
|
|
def get_object_url(bucket_name, object_name, expires, options = {})
|
|
unless bucket_name
|
|
raise ArgumentError.new('bucket_name is required')
|
|
end
|
|
unless object_name
|
|
raise ArgumentError.new('object_name is required')
|
|
end
|
|
signed_url(options.merge({
|
|
:bucket_name => bucket_name,
|
|
:object_name => object_name,
|
|
:method => 'GET'
|
|
}), expires)
|
|
end
|
|
end
|
|
|
|
class Real
|
|
|
|
# Get an expiring object url from S3
|
|
#
|
|
# @param bucket_name [String] Name of bucket containing object
|
|
# @param object_name [String] Name of object to get expiring url for
|
|
# @param expires [Time] An expiry time for this url
|
|
#
|
|
# @return [Excon::Response] response:
|
|
# * body [String] - url for object
|
|
#
|
|
# @see http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html
|
|
|
|
include GetObjectUrl
|
|
|
|
end
|
|
|
|
class Mock # :nodoc:all
|
|
|
|
include GetObjectUrl
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|