Sha256: dad5f8de8bd6f91ee85cee144c6988cd1a850a4a862fb4a8b0a6f0a21db9d122

Contents?: true

Size: 1.67 KB

Versions: 2

Compression:

Stored size: 1.67 KB

Contents

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
          Fog::AWS::S3.data[:buckets][bucket_name] = bucket
          response
        end

      end
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-0.0.4 lib/fog/aws/requests/s3/put_bucket.rb
fog-0.0.3 lib/fog/aws/requests/s3/put_bucket.rb