Sha256: c5a4df84d667f120c9d8afef00c302e03ea6039d7a42b168f2df47dede335725

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

module Fog
  module Storage
    class AWS

      module GetObjectHttpsUrl

        def get_object_https_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
          https_url({
            :headers  => {},
            :host     => @host,
            :method   => 'GET',
            :path     => "#{bucket_name}/#{object_name}",
            :query    => options[:query]
          }, expires)
        end

      end

      class Real

        # Get an expiring object https 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 GetObjectHttpsUrl

      end

      class Mock # :nodoc:all

        include GetObjectHttpsUrl

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
fog-1.1.2 lib/fog/aws/requests/storage/get_object_https_url.rb