Sha256: f98f2b1adb658cca3a2cbc2e279e8ceb7a81f59d7ffb522ed1413ea0f08a480b

Contents?: true

Size: 1.3 KB

Versions: 24

Compression:

Stored size: 1.3 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<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'LocationConstraint'<~String> - Location constraint of the bucket
        def get_bucket_location(bucket_name)
          request({
            :expects  => 200,
            :headers  => {},
            :host     => "#{bucket_name}.#{@host}",
            :idempotent => true,
            :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 = Excon::Response.new
          if bucket = Fog::AWS::S3.data[:buckets][bucket_name]
            response.status = 200
            response.body = {'LocationConstraint' => bucket['LocationConstraint'] }
          else
            response.status = 404
            raise(Excon::Errors.status_error({:expects => 200}, response))
          end
          response
        end

      end
    end
  end

end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
fog-0.0.56 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.55 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.54 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.53 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.52 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.51 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.50 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.49 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.48 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.47 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.46 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.45 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.44 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.43 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.42 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.41 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.40 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.39 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.38 lib/fog/aws/requests/s3/get_bucket_location.rb
fog-0.0.37 lib/fog/aws/requests/s3/get_bucket_location.rb