2010-05-09 21:50:10 -04:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2010-05-09 21:50:10 -04:00
|
|
|
class Real
|
|
|
|
|
2011-08-24 14:50:42 -04:00
|
|
|
require 'fog/aws/parsers/storage/access_control_list'
|
2010-06-12 18:31:17 -04:00
|
|
|
|
2010-05-09 21:50:10 -04:00
|
|
|
# Get access control list for an S3 object
|
|
|
|
#
|
2013-01-04 00:56:21 -05:00
|
|
|
# @param bucket_name [String] name of bucket containing object
|
|
|
|
# @param object_name [String] name of object to get access control list for
|
|
|
|
# @param options [Hash]
|
|
|
|
# @option options versionId [String] specify a particular version to retrieve
|
2010-05-09 21:50:10 -04:00
|
|
|
#
|
2013-01-04 00:56:21 -05:00
|
|
|
# @return [Excon::Response] response:
|
|
|
|
# * body [Hash]:
|
|
|
|
# * [AccessControlPolicy [Hash]:
|
|
|
|
# * Owner [Hash]:
|
|
|
|
# * DisplayName [String] - Display name of object owner
|
|
|
|
# * ID [String] - Id of object owner
|
|
|
|
# * AccessControlList [Array]:
|
|
|
|
# * Grant [Hash]:
|
|
|
|
# * Grantee [Hash]:
|
|
|
|
# * DisplayName [String] - Display name of grantee
|
|
|
|
# * ID [String] - Id of grantee
|
2010-05-09 21:50:10 -04:00
|
|
|
# or
|
2013-01-04 00:56:21 -05:00
|
|
|
# * URI [String] - URI of group to grant access for
|
|
|
|
# * Permission [String] - Permission, in [FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP]
|
2010-05-09 21:50:10 -04:00
|
|
|
#
|
2013-01-04 00:56:21 -05:00
|
|
|
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html
|
2010-10-29 21:05:59 -04:00
|
|
|
|
2010-05-10 23:28:27 -04:00
|
|
|
def get_object_acl(bucket_name, object_name, options = {})
|
2010-05-09 21:50:10 -04:00
|
|
|
unless bucket_name
|
|
|
|
raise ArgumentError.new('bucket_name is required')
|
|
|
|
end
|
|
|
|
unless object_name
|
|
|
|
raise ArgumentError.new('object_name is required')
|
|
|
|
end
|
2010-06-05 17:19:39 -04:00
|
|
|
query = {'acl' => nil}
|
2010-05-10 23:28:27 -04:00
|
|
|
if version_id = options.delete('versionId')
|
2010-06-05 17:19:39 -04:00
|
|
|
query['versionId'] = version_id
|
2010-05-10 23:28:27 -04:00
|
|
|
end
|
2010-05-09 21:50:10 -04:00
|
|
|
request({
|
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:idempotent => true,
|
|
|
|
:method => 'GET',
|
2011-06-15 17:26:43 -04:00
|
|
|
:parser => Fog::Parsers::Storage::AWS::AccessControlList.new,
|
2010-05-09 21:50:10 -04:00
|
|
|
:path => CGI.escape(object_name),
|
2010-05-10 23:28:27 -04:00
|
|
|
:query => query
|
2010-05-09 21:50:10 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
class Mock # :nodoc:all
|
2010-05-09 21:50:10 -04:00
|
|
|
|
2011-11-14 04:44:25 -05:00
|
|
|
require 'fog/aws/requests/storage/acl_utils'
|
|
|
|
|
2011-09-23 11:53:53 -04:00
|
|
|
def get_object_acl(bucket_name, object_name, options = {})
|
2010-11-18 17:17:11 -05:00
|
|
|
response = Excon::Response.new
|
2011-05-19 18:35:33 -04:00
|
|
|
if acl = self.data[:acls][:object][bucket_name] && self.data[:acls][:object][bucket_name][object_name]
|
2010-11-18 17:17:11 -05:00
|
|
|
response.status = 200
|
2011-11-14 04:44:25 -05:00
|
|
|
if acl.is_a?(String)
|
|
|
|
response.body = Fog::Storage::AWS.acl_to_hash(acl)
|
|
|
|
else
|
|
|
|
response.body = acl
|
|
|
|
end
|
2010-11-18 17:17:11 -05:00
|
|
|
else
|
|
|
|
response.status = 404
|
|
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
|
|
|
end
|
|
|
|
response
|
2010-05-09 21:50:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|