mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
71 lines
No EOL
1.7 KiB
Ruby
71 lines
No EOL
1.7 KiB
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
# Create an S3 bucket
|
|
#
|
|
# ==== Parameters
|
|
# * bucket_name<~String> - name of bucket to create
|
|
# * options<~Hash> - config arguments for bucket. Defaults to {}.
|
|
# * :location_constraint<~Symbol> - sets the location for the bucket
|
|
#
|
|
# ==== Returns
|
|
# * response<~Fog::AWS::Response>:
|
|
# * status<~Integer> - 200
|
|
def put_bucket(bucket_name, options = {})
|
|
if options['LocationConstraint']
|
|
data =
|
|
<<-DATA
|
|
<CreateBucketConfiguration>
|
|
<LocationConstraint>#{options['LocationConstraint']}</LocationConstraint>
|
|
</CreateBucketConfiguration>
|
|
DATA
|
|
else
|
|
data = nil
|
|
end
|
|
request({
|
|
:expects => 200,
|
|
:body => data,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:method => 'PUT'
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
def put_bucket(bucket_name, options = {})
|
|
response = Fog::Response.new
|
|
response.status = 200
|
|
bucket = {
|
|
:objects => {},
|
|
'Name' => bucket_name,
|
|
'CreationDate' => Time.now,
|
|
'Payer' => 'BucketOwner'
|
|
}
|
|
if options['LocationConstraint']
|
|
bucket['LocationConstraint'] = options['LocationConstraint']
|
|
else
|
|
bucket['LocationConstraint'] = ''
|
|
end
|
|
unless Fog::AWS::S3.data[:buckets][bucket_name]
|
|
Fog::AWS::S3.data[:buckets][bucket_name] = bucket
|
|
end
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end |