Sha256: feeca64e8f2984c7838fe682e8978d4fafb3481aafdb6549931ac9fb9d7a1f66

Contents?: true

Size: 1.6 KB

Versions: 35

Compression:

Stored size: 1.6 KB

Contents

module Fog
  module AWS
    class Storage
      class Real
        require 'fog/aws/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 https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETlocation.html

        def get_bucket_location(bucket_name)
          request({
            :expects  => 200,
            :headers  => {},
            :bucket_name => bucket_name,
            :idempotent => true,
            :method   => 'GET',
            :parser   => Fog::Parsers::AWS::Storage::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

35 entries across 35 versions & 1 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.29.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.28.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.27.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.26.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.25.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.24.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.23.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.22.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.21.1 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.21.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.20.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.19.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.18.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.17.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.16.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.15.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.14.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.13.0 lib/fog/aws/requests/storage/get_bucket_location.rb
fog-aws-3.12.0 lib/fog/aws/requests/storage/get_bucket_location.rb