module Fog
module Storage
class AWS
class Real
# Change logging status for an S3 bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to modify
# * logging_status<~Hash>:
# * Owner<~Hash>:
# * ID<~String>: id of owner
# * DisplayName<~String>: display name of owner
# * AccessControlList<~Array>:
# * Grantee<~Hash>:
# * 'DisplayName'<~String> - Display name of grantee
# * 'ID'<~String> - Id of grantee
# or
# * 'EmailAddress'<~String> - Email address of grantee
# or
# * 'URI'<~String> - URI of group to grant access for
# * Permission<~String> - Permission, in [FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP]
#
# ==== See Also
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlogging.html
def put_bucket_logging(bucket_name, logging_status)
if logging_status['LoggingEnabled'].empty?
data =
<<-DATA
DATA
else
data =
<<-DATA
#{logging_status['LoggingEnabled']['TargetBucket']}
#{logging_status['LoggingEnabled']['TargetBucket']}
DATA
acl['AccessControlList'].each do |grant|
data << " "
type = case grant['Grantee'].keys.sort
when ['DisplayName', 'ID']
'CanonicalUser'
when ['EmailAddress']
'AmazonCustomerByEmail'
when ['URI']
'Group'
end
data << " "
for key, value in grant['Grantee']
data << " <#{key}>#{value}#{key}>"
end
data << " "
data << " #{grant['Permission']}"
data << " "
end
data <<
<<-DATA
DATA
end
request({
:body => data,
:expects => 200,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:method => 'PUT',
:query => {'logging' => nil}
})
end
end
end
end
end