2010-11-22 02:44:44 -05:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2010-11-22 02:44:44 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Change access control list for an S3 object
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * bucket_name<~String> - name of bucket to modify
|
|
|
|
# * object_name<~String> - name of object to get access control list for
|
|
|
|
# * acl<~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]
|
2011-08-23 10:24:11 -04:00
|
|
|
# * acl<~String> - Permissions, must be in ['private', 'public-read', 'public-read-write', 'authenticated-read']
|
2010-11-22 02:44:44 -05:00
|
|
|
# * options<~Hash>:
|
|
|
|
# * 'versionId'<~String> - specify a particular version to retrieve
|
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUTacl.html
|
|
|
|
|
|
|
|
def put_object_acl(bucket_name, object_name, acl, options = {})
|
|
|
|
query = {'acl' => nil}
|
|
|
|
if version_id = options.delete('versionId')
|
|
|
|
query['versionId'] = version_id
|
|
|
|
end
|
2011-08-23 10:24:11 -04:00
|
|
|
|
|
|
|
data = ""
|
|
|
|
headers = {}
|
|
|
|
|
|
|
|
if acl.is_a?(Hash)
|
|
|
|
data =
|
2010-11-22 02:44:44 -05:00
|
|
|
<<-DATA
|
|
|
|
<AccessControlPolicy>
|
|
|
|
<Owner>
|
|
|
|
<ID>#{acl['Owner']['ID']}</ID>
|
|
|
|
<DisplayName>#{acl['Owner']['DisplayName']}</DisplayName>
|
|
|
|
</Owner>
|
|
|
|
<AccessControlList>
|
|
|
|
DATA
|
|
|
|
|
2011-08-23 10:24:11 -04:00
|
|
|
acl['AccessControlList'].each do |grant|
|
|
|
|
data << " <Grant>\n"
|
|
|
|
type = case grant['Grantee'].keys.sort
|
|
|
|
when ['DisplayName', 'ID']
|
|
|
|
'CanonicalUser'
|
|
|
|
when ['EmailAddress']
|
|
|
|
'AmazonCustomerByEmail'
|
|
|
|
when ['URI']
|
|
|
|
'Group'
|
|
|
|
end
|
|
|
|
data << " <Grantee xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"#{type}\">\n"
|
|
|
|
for key, value in grant['Grantee']
|
|
|
|
data << " <#{key}>#{value}</#{key}>\n"
|
|
|
|
end
|
|
|
|
data << " </Grantee>\n"
|
|
|
|
data << " <Permission>#{grant['Permission']}</Permission>\n"
|
|
|
|
data << " </Grant>\n"
|
2010-11-22 02:44:44 -05:00
|
|
|
end
|
|
|
|
|
2011-08-23 10:24:11 -04:00
|
|
|
data <<
|
2010-11-22 02:44:44 -05:00
|
|
|
<<-DATA
|
|
|
|
</AccessControlList>
|
|
|
|
</AccessControlPolicy>
|
|
|
|
DATA
|
2011-08-23 10:24:11 -04:00
|
|
|
else
|
|
|
|
if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
|
|
|
|
raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
|
|
|
|
end
|
|
|
|
headers['x-amz-acl'] = acl
|
|
|
|
end
|
2010-11-22 02:44:44 -05:00
|
|
|
|
2011-08-23 10:29:51 -04:00
|
|
|
headers['Content-MD5'] = Base64.encode64(Digest::MD5.digest(data)).strip
|
2011-08-23 10:24:11 -04:00
|
|
|
headers['Content-Type'] = 'application/json'
|
|
|
|
headers['Date'] = Fog::Time.now.to_date_header
|
|
|
|
|
2010-11-22 02:44:44 -05:00
|
|
|
request({
|
|
|
|
:body => data,
|
|
|
|
:expects => 200,
|
2011-08-23 10:24:11 -04:00
|
|
|
:headers => headers,
|
2010-11-22 02:44:44 -05:00
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:method => 'PUT',
|
|
|
|
:path => CGI.escape(object_name),
|
|
|
|
:query => query
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|