mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
983 B
Ruby
38 lines
983 B
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class Storage
|
||
|
class Real
|
||
|
|
||
|
# Get bucket policy for an S3 bucket
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * bucket_name<~String> - name of bucket to get policy for
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash> - policy document
|
||
|
#
|
||
|
# ==== See Also
|
||
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETpolicy.html
|
||
|
|
||
|
def get_bucket_policy(bucket_name)
|
||
|
unless bucket_name
|
||
|
raise ArgumentError.new('bucket_name is required')
|
||
|
end
|
||
|
response = request({
|
||
|
:expects => 200,
|
||
|
:headers => {},
|
||
|
:host => "#{bucket_name}.#{@host}",
|
||
|
:idempotent => true,
|
||
|
:method => 'GET',
|
||
|
:query => {'policy' => nil}
|
||
|
})
|
||
|
response.body = JSON.parse(response.body) unless response.body.nil?
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|