2009-08-09 01:40:42 -04:00
|
|
|
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({
|
2009-08-16 14:44:50 -04:00
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:method => 'GET',
|
|
|
|
:parser => Fog::Parsers::AWS::S3::GetBucketLocation.new,
|
|
|
|
:query => 'location'
|
2009-08-09 01:40:42 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-08-09 01:40:42 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
|
2009-08-09 01:40:42 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class S3
|
|
|
|
|
|
|
|
def get_bucket_location(bucket_name)
|
|
|
|
response = Fog::Response.new
|
2009-08-16 14:45:52 -04:00
|
|
|
if bucket = @data[:buckets][bucket_name]
|
2009-08-09 01:40:42 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {'LocationConstraint' => bucket['LocationConstraint'] }
|
|
|
|
else
|
2009-08-16 14:45:52 -04:00
|
|
|
response.status = 404
|
2009-08-09 01:40:42 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
2009-08-09 01:40:42 -04:00
|
|
|
|
|
|
|
end
|