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
fog-1.27.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.26.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.25.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
nsidc-fog-1.24.1 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.24.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.11 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.10 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.9 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.8 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.7 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.6 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.23.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.4 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.3 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
ns-fog-1.22.2 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.22.1 lib/fog/internet_archive/requests/storage/get_bucket_location.rb