Sha256: 2181b5aefff8b830ba50ff12a5ea900a9cffff7333089fb57e67e7b62fd996c8

Contents?: true

Size: 1.65 KB

Versions: 61

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

61 entries across 61 versions & 6 rubygems

Version Path
fog-1.22.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.21.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.20.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-1.19.0 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/internet_archive/requests/storage/get_bucket_location.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/internet_archive/requests/storage/get_bucket_location.rb