Sha256: 930750280140bd612b79b25653242d1d71d3d05fb49ef24cad5793097f1db0ff

Contents?: true

Size: 1.65 KB

Versions: 36

Compression:

Stored size: 1.65 KB

Contents

module Fog
  module Storage
    class InternetArchive
      class Real
        require 'fog/internet_archive/parsers/storage/get_bucket_location'

        # Get location constraint for an S3 bucket
        #
        # @param bucket_name [String] name of bucket to get location constraint for
        #
        # @return [Excon::Response] response:
        #   * body [Hash]:
        #     * LocationConstraint [String] - Location constraint of the bucket
        #
        # @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html

        def get_bucket_location(bucket_name)
          request({
            :expects  => 200,
            :headers  => {},
            :host     => "#{bucket_name}.#{@host}",
            :idempotent => true,
            :method   => 'GET',
            :parser   => Fog::Parsers::Storage::InternetArchive::GetBucketLocation.new,
            :query    => {'location' => nil}
          })
        end
      end

      class Mock # :nodoc:all
        def get_bucket_location(bucket_name)
          response = Excon::Response.new
          if bucket = self.data[:buckets][bucket_name]
            location_constraint = case bucket['LocationConstraint']
            when 'us-east-1'
              nil
            when 'eu-east-1'
              'EU'
            else
              bucket['LocationConstraint']
            end

            response.status = 200
            response.body = {'LocationConstraint' => location_constraint }
          else
            response.status = 404
            raise(Excon::Errors.status_error({:expects => 200}, response))
          end
          response
        end
      end
    end
  end
end

Version data entries

36 entries across 34 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-internet-archive-0.0.1/lib/fog/internet_archive/requests/storage/get_bucket_location.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-internet-archive-0.0.1/lib/fog/internet_archive/requests/storage/get_bucket_location.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-internet-archive-0.0.1/lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.40.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.39.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-internet-archive-0.0.1 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.38.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.37.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.36.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.35.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-2.0.0.pre.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.34.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.33.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.32.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.31.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.30.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.29.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.28.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb