Sha256: 081c1f04768443c7db779fe63b6e41a14b538fcc8151e3e877249d81975039e7

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module AWS
    class Storage
      class Real

        # Change website configuration for an S3 bucket
        #
        # ==== Parameters
        # * bucket_name<~String> - name of bucket to modify
        # * suffix<~String> - suffix to append to requests for the bucket
        # * options<~Hash>
        #   * key<~String> - key to use for 4XX class errors
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTwebsite.html

        def put_bucket_website(bucket_name, suffix, options = {})
          data =
<<-DATA
<WebsiteConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
    <IndexDocument>
        <Suffix>#{suffix}</Suffix>
    </IndexDocument>
DATA

          if options[:key]
            data <<
<<-DATA
<ErrorDocument>
    <Key>#{options[:key]}</Key>
</ErrorDocument>
DATA
          end

          data << '</WebsiteConfiguration>'
          request({
            :body     => data,
            :expects  => 200,
            :headers  => {},
            :host     => "#{bucket_name}.#{@host}",
            :method   => 'PUT',
            :query    => {'website' => nil}
          })
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.8.2 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.8.1 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.8.0 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.7.2 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.7.1 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.7.0 lib/fog/storage/requests/aws/put_bucket_website.rb
fog-0.6.0 lib/fog/storage/requests/aws/put_bucket_website.rb