Sha256: 776d727fb613b45d7e4da5f4866530e3681ccca08adf30e8ddd0c494f7c94158
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
module Fog module Storage class AWS module GetObjectHttpUrl def get_object_http_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 host, path = if bucket_name =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/ ["#{bucket_name}.#{@host}", object_name] else [@host, "#{bucket_name}/#{object_name}"] end http_url({ :headers => {}, :host => host, :method => 'GET', :path => path, :query => options[:query] }, expires) end end class Real # Get an expiring object http 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 # # ==== See Also # http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html include GetObjectHttpUrl end class Mock # :nodoc:all include GetObjectHttpUrl end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
michiels-fog-1.3.1 | lib/fog/aws/requests/storage/get_object_http_url.rb |