Sha256: 15f11faf8c2e373b26f9a2839bc3b63df83a91f180ea709c74a2671b5d1ddff3

Contents?: true

Size: 1.26 KB

Versions: 27

Compression:

Stored size: 1.26 KB

Contents

unless Fog.mocking?

  module Fog
    module AWS
      class S3

        # Get location constraint for an S3 bucket
        #
        # ==== Parameters
        # * bucket_name<~String> - name of bucket to get location constraint for
        #
        # ==== Returns
        # * response<~Fog::AWS::Response>:
        #   * body<~Hash>:
        #     * 'LocationConstraint'<~String> - Location constraint of the bucket
        def get_bucket_location(bucket_name)
          request({
            :expects  => 200,
            :headers  => {},
            :host     => "#{bucket_name}.#{@host}",
            :method   => 'GET',
            :parser   => Fog::Parsers::AWS::S3::GetBucketLocation.new,
            :query    => 'location'
          })
        end

      end
    end
  end

else

  module Fog
    module AWS
      class S3

        def get_bucket_location(bucket_name)
          response = Fog::Response.new
          if bucket = Fog::AWS::S3.data[:buckets][bucket_name]
            response.status = 200
            response.body = {'LocationConstraint' => bucket['LocationConstraint'] }
          else
            response.status = 404
            raise(Fog::Errors.status_error(200, 404, response))
          end
          response
        end

      end
    end
  end

end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
fog-0.0.29 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.28 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.27 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.26 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.25 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.24 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.23 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.22 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.21 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.20 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.19 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.18 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.17 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.16 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.15 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.14 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.13 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.12 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.11 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.10 lib/fog/aws/requests/s3/get_bucket_location.rb