Sha256: b9d8e49048053a7392d5344a433db803c46026ed03492e96f39d0df524175177

Contents?: true

Size: 1.5 KB

Versions: 61

Compression:

Stored size: 1.5 KB

Contents

module Fog
  module Storage
    class InternetArchive

      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,
            :port     => @port,
            :method   => 'GET',
            :path     => path,
            :query    => options[:query]
          }, expires)
        end

      end

      class Real

        # Get an expiring object http 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 GetObjectHttpUrl

      end

      class Mock # :nodoc:all

        include GetObjectHttpUrl

      end
    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.15.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
gapinc-fog-1.14.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.14.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.13.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
gapinc-fog-1.12.1.2 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
gapinc-fog-1.12.1.1 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
gapinc-fog-1.12.1a lib/fog/internet_archive/requests/storage/get_object_http_url.rb
gapinc-fog-1.12.1 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.12.1 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.12.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
hpfog-0.0.20 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/internet_archive/requests/storage/get_object_http_url.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.11.1 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.11.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-1.10.1 lib/fog/internet_archive/requests/storage/get_object_http_url.rb
fog-test-me-1.10.0 lib/fog/internet_archive/requests/storage/get_object_http_url.rb