mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0b529294f0
Done with `rubocop --auto-correct --only AccessModifierIndentation`
58 lines
1.4 KiB
Ruby
58 lines
1.4 KiB
Ruby
module Fog
|
|
module Storage
|
|
class Google
|
|
class Mock
|
|
def put_bucket_acl(bucket_name, acl)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
# Change access control list for an Google Storage bucket
|
|
def put_bucket_acl(bucket_name, acl)
|
|
data = <<-DATA
|
|
<AccessControlList>
|
|
<Owner>
|
|
#{tag('ID', acl['Owner']['ID'])}
|
|
</Owner>
|
|
<Entries>
|
|
#{entries_list(acl['AccessControlList'])}
|
|
</Entries>
|
|
</AccessControlList>
|
|
DATA
|
|
|
|
request({
|
|
:body => data,
|
|
:expects => 200,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:method => 'PUT',
|
|
:query => {'acl' => nil}
|
|
})
|
|
end
|
|
|
|
private
|
|
|
|
def tag(name, value)
|
|
"<#{name}>#{value}</#{name}>"
|
|
end
|
|
|
|
def scope_tag(scope)
|
|
if %w(AllUsers AllAuthenticatedUsers).include?(scope['type'])
|
|
"<Scope type='#{scope['type']}'/>"
|
|
else
|
|
"<Scope type='#{scope['type']}'>" +
|
|
scope.to_a.select { |pair| pair[0] != 'type' }.map { |pair| tag(pair[0], pair[1]) }.join("\n") +
|
|
"</Scope>"
|
|
end
|
|
end
|
|
|
|
def entries_list(access_control_list)
|
|
access_control_list.map do |entry|
|
|
tag('Entry', scope_tag(entry['Scope']) + tag('Permission', entry['Permission']))
|
|
end.join("\n")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|