Sha256: a76e9446bbc83adc7877463d5468ee5902f2662601d042903ed9af701aa0d063

Contents?: true

Size: 1.36 KB

Versions: 28

Compression:

Stored size: 1.36 KB

Contents

require 'fog/model'
require 'fog/aws/models/s3/files'

module Fog
  module AWS
    module S3

      class Directory < Fog::Model

        identity  :name,          'Name'

        attribute :creation_date, 'CreationDate'

        def destroy
          requires :name
          connection.delete_bucket(@name)
          true
        rescue Excon::Errors::NotFound
          false
        end

        def location
          requires :name
          data = connection.get_bucket_location(@name)
          data.body['LocationConstraint']
        end

        def location=(new_location)
          @location = new_location
        end

        def files
          @files ||= begin
            Fog::AWS::S3::Files.new(
              :directory    => self,
              :connection   => connection
            )
          end
        end

        def payer
          requires :name
          data = connection.get_request_payment(@name)
          data.body['Payer']
        end

        def payer=(new_payer)
          requires :name
          connection.put_request_payment(@name, new_payer)
          @payer = new_payer
        end

        def save
          requires :name
          options = {}
          if @location
            options['LocationConstraint'] = @location
          end
          connection.put_bucket(@name, options)
          true
        end

      end

    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
fog-0.0.84 lib/fog/aws/models/s3/directory.rb
fog-0.0.83 lib/fog/aws/models/s3/directory.rb
fog-0.0.82 lib/fog/aws/models/s3/directory.rb
fog-0.0.81 lib/fog/aws/models/s3/directory.rb
fog-0.0.80 lib/fog/aws/models/s3/directory.rb
fog-0.0.79 lib/fog/aws/models/s3/directory.rb
fog-0.0.78 lib/fog/aws/models/s3/directory.rb
fog-0.0.77 lib/fog/aws/models/s3/directory.rb
fog-0.0.76 lib/fog/aws/models/s3/directory.rb
fog-0.0.75 lib/fog/aws/models/s3/directory.rb
fog-0.0.74 lib/fog/aws/models/s3/directory.rb
fog-0.0.73 lib/fog/aws/models/s3/directory.rb
fog-0.0.72 lib/fog/aws/models/s3/directory.rb
fog-0.0.71 lib/fog/aws/models/s3/directory.rb
fog-0.0.70 lib/fog/aws/models/s3/directory.rb
fog-0.0.69 lib/fog/aws/models/s3/directory.rb
fog-0.0.68 lib/fog/aws/models/s3/directory.rb
fog-0.0.67 lib/fog/aws/models/s3/directory.rb
fog-0.0.66 lib/fog/aws/models/s3/directory.rb
fog-0.0.65 lib/fog/aws/models/s3/directory.rb