1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/storage/put_bucket.rb

74 lines
2.5 KiB
Ruby
Raw Normal View History

module Fog
module Storage
2015-01-02 12:34:40 -05:00
class AWS
class Real
# Create an S3 bucket
#
# @param bucket_name [String] name of bucket to create
# @option options [Hash] config arguments for bucket. Defaults to {}.
# @option options LocationConstraint [Symbol] sets the location for the bucket
# @option options x-amz-acl [String] Permissions, must be in ['private', 'public-read', 'public-read-write', 'authenticated-read']
#
# @return [Excon::Response] response:
# * status [Integer] 200
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html
#
def put_bucket(bucket_name, options = {})
if location_constraint = options.delete('LocationConstraint')
data =
<<-DATA
<CreateBucketConfiguration>
<LocationConstraint>#{location_constraint}</LocationConstraint>
</CreateBucketConfiguration>
DATA
else
data = nil
end
request({
:expects => 200,
:body => data,
:headers => options,
:idempotent => true,
:bucket_name => bucket_name,
:method => 'PUT'
})
end
end
class Mock # :nodoc:all
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
if !self.data[:buckets][bucket_name] || self.region == 'us-east-1'
self.data[:buckets][bucket_name] = bucket
else
response.status = 409
raise(Excon::Errors.status_error({:expects => 200}, response))
end
response
end
end
end
end
end