Sha256: bcb057385535d9ca8ed70df4829771fe8b49504dea19286478d50b7de64008f7

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 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
          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}.s3.amazonaws.com", object_name]
          else
            ['s3.amazonaws.com', "#{bucket_name}/#{object_name}"]
          end
          https_url({
            :headers  => {},
            :host     => host,
            :method   => 'GET',
            :path     => path,
            :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

5 entries across 5 versions & 3 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_https_url.rb
fog-1.2.0 lib/fog/aws/requests/storage/get_object_https_url.rb
ktheory-fog-1.1.2 lib/fog/aws/requests/storage/get_object_https_url.rb