46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# File 'lib/fog/aws/requests/storage/put_bucket.rb', line 46
def put_bucket(bucket_name, options = {})
acl = options['x-amz-acl'] || 'private'
if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
else
self.data[:acls][:bucket][bucket_name] = self.class.acls(acl)
end
response = Excon::Response.new
response.status = 200
bucket = {
:objects => {},
'Name' => bucket_name,
'CreationDate' => Time.now,
'Owner' => { 'DisplayName' => 'owner', 'ID' => 'some_id'},
'Payer' => 'BucketOwner'
}
if options['LocationConstraint']
bucket['LocationConstraint'] = options['LocationConstraint']
else
bucket['LocationConstraint'] = nil
end
unless self.data[:buckets][bucket_name]
self.data[:buckets][bucket_name] = bucket
end
response
end
|