2010-03-13 16:37:24 -05:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2010-03-13 16:37:24 -05:00
|
|
|
class Real
|
2009-08-09 01:40:42 -04:00
|
|
|
|
2011-08-24 14:50:42 -04:00
|
|
|
require 'fog/aws/parsers/storage/get_bucket_location'
|
2010-06-12 18:31:17 -04:00
|
|
|
|
2009-08-09 01:40:42 -04:00
|
|
|
# Get location constraint for an S3 bucket
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * bucket_name<~String> - name of bucket to get location constraint for
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-09 01:40:42 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'LocationConstraint'<~String> - Location constraint of the bucket
|
2010-10-29 21:05:59 -04:00
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html
|
|
|
|
|
2009-08-09 01:40:42 -04:00
|
|
|
def get_bucket_location(bucket_name)
|
|
|
|
request({
|
2009-08-16 14:44:50 -04:00
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
2009-12-08 14:22:46 -05:00
|
|
|
:idempotent => true,
|
2009-08-16 14:44:50 -04:00
|
|
|
:method => 'GET',
|
2011-06-15 17:26:43 -04:00
|
|
|
:parser => Fog::Parsers::Storage::AWS::GetBucketLocation.new,
|
2010-06-05 17:19:39 -04:00
|
|
|
:query => {'location' => nil}
|
2009-08-09 01:40:42 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
class Mock # :nodoc:all
|
2009-08-09 01:40:42 -04:00
|
|
|
|
|
|
|
def get_bucket_location(bucket_name)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2011-05-19 18:35:33 -04:00
|
|
|
if bucket = self.data[:buckets][bucket_name]
|
2011-08-15 17:10:02 -04:00
|
|
|
location_constraint = case bucket['LocationConstraint']
|
|
|
|
when 'us-east-1'
|
|
|
|
nil
|
|
|
|
when 'eu-east-1'
|
|
|
|
'EU'
|
|
|
|
else
|
|
|
|
bucket['LocationConstraint']
|
|
|
|
end
|
|
|
|
|
2009-08-09 01:40:42 -04:00
|
|
|
response.status = 200
|
2011-08-15 17:10:02 -04:00
|
|
|
response.body = {'LocationConstraint' => location_constraint }
|
2009-08-09 01:40:42 -04:00
|
|
|
else
|
2009-08-16 14:45:52 -04:00
|
|
|
response.status = 404
|
2009-11-20 14:08:08 -05:00
|
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
2009-08-09 01:40:42 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
2010-03-13 16:37:24 -05:00
|
|
|
end
|