How can you do the equivalent of:

s3cmd setacl --acl-grant=read:82b82d14a8d011e09d86001cc029a3688cdd635ea8d011e0b499001cc029a3689052a4f4a8d011e0bd25001cc029a368 s3://somebucket/some/path/to/file

in Ruby? (preferably by using the 'aws-s3' gem)

=== Edit ===

As Soren suggests below, something similar to this should work:

grant = AWS::S3::ACL::Grant.new
grant.permission = 'READ'
grantee = AWS::S3::ACL::Grantee.new
grantee.id = '82b82d14a8d011e09d86001cc029a3688cdd635ea8d011e0b499001cc029a3689052a4f4a8d011e0bd25001cc029a368'
grant.grantee = grantee
acl = AWS::S3::S3Object.acl('some/path/to/file', 'somebucket')
acl.grants << grant
AWS::S3::S3Object.acl 'some/path/to/file', 'somebucket', acl 

However that does not work, I get the following error:

The XML you provided was not well-formed or did not validate against our published schema (AWS::S3::MalformedACLError)

Any ideas how to make this work?

link|improve this question

72% accept rate
aws-s3 docs: rubydoc.info/gems/aws-s3/0.6.2/frames – Erik Jul 7 '11 at 19:47
feedback

3 Answers

up vote 1 down vote accepted

I can't get it to work with the 'aws-s3' gem, but it does work with the 'rightscale_aws' gem:

require 'right_aws'

s3     = RightAws::S3.new(access_key, secret_key, {:logger => Logger.new('/dev/null')})
bucket =  s3.bucket('somebucket')

bucket.put 'some/path/to/file', open('/tmp/myfile')
access_id = '82b82d14a8d011e09d86001cc029a3688cdd635ea8d011e0b499001cc029a3689052a4f4a8d011e0bd25001cc029a368'
key = bucket.key('some/path/to/file')
RightAws::S3::Grantee.new(key, access_id, ['READ'], :apply)
link|improve this answer
feedback

I struggled exactly on the same error, the documentation is very poor on this point, you have to look at the Grantee class doc

In order to set a grantee id you need to specify :

grantee.type = "CanonicalUser"
grantee.name = "aName"
grantee.id = '82b82d14a8d011e09d86001cc029a3688cdd635ea8d011e0b499001cc029a3689052a4f4a8d011e0bd25001cc029a368'

This solves the malformed XML error that you have

Hope this helps, Vincent

link|improve this answer
feedback

The Ruby implementation (which you find here http://amazon.rubyforge.org/ http://amazon.rubyforge.org/doc/ ) should work for you.

link|improve this answer
` grant.permission = 'READ' grant.grantee = all_users_group_grantee grant ` – Soren Jul 7 '11 at 19:53
Could you be more specific? The example above does not correspond with my s3cmd example. – Erik Jul 7 '11 at 19:58
Have not tried, but I expect grantee would just have to be set to the ID string you have in the s3cmd. Eg. grant.permission = 'READ' grant.grantee = '82b82d14a8d011e09d86001cc029a3688cdd635ea8d011e0b499001cc029a3689052a4f4a8d011e‌​0bd25001cc029a368' grant – Soren Jul 7 '11 at 20:02
I tried it, but it doesn't work. Also see the edit of my original post for a variation on your suggestion, but that doesn't work either. – Erik Jul 7 '11 at 22:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.