2010-05-09 21:50:10 -04:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2012-04-22 22:16:19 -04:00
|
|
|
|
|
|
|
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
|
2012-12-05 15:12:25 -05:00
|
|
|
host, path = if bucket_name =~ Fog::AWS::COMPLIANT_BUCKET_NAMES
|
2012-04-22 22:16:19 -04:00
|
|
|
["#{bucket_name}.#{@host}", object_name]
|
|
|
|
else
|
|
|
|
[@host, "#{bucket_name}/#{object_name}"]
|
|
|
|
end
|
|
|
|
scheme_host_path_query({
|
|
|
|
:scheme => options[:scheme],
|
|
|
|
:headers => {},
|
|
|
|
:host => host,
|
|
|
|
:port => @port,
|
|
|
|
:method => 'GET',
|
|
|
|
:path => path,
|
|
|
|
:query => options[:query]
|
|
|
|
}, expires)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-05-09 21:50:10 -04:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Get an expiring object url from S3
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * bucket_name<~String> - Name of bucket containing object
|
|
|
|
# * object_name<~String> - Name of object to get expiring url for
|
|
|
|
# * expires<~Time> - An expiry time for this url
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~String> - url for object
|
|
|
|
#
|
2010-10-29 21:05:59 -04:00
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html
|
|
|
|
|
2012-04-22 22:16:19 -04:00
|
|
|
include GetObjectUrl
|
2010-05-09 21:50:10 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
class Mock # :nodoc:all
|
2010-05-09 21:50:10 -04:00
|
|
|
|
2012-04-22 22:16:19 -04:00
|
|
|
include GetObjectUrl
|
2010-05-09 21:50:10 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|