Sha256: ca179162a32cb35a800231bbbf942266aebc652f81988045cce66733ca2e5934

Contents?: true

Size: 1.45 KB

Versions: 54

Compression:

Stored size: 1.45 KB

Contents

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

module Fog
  module AWS
    module S3

      class Directory < Fog::Model
        extend Fog::Deprecation
        deprecate(:name, :key)
        deprecate(:name=, :key=)

        identity  :key,           ['Name', 'name']

        attribute :creation_date, 'CreationDate'

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

        def location
          requires :key
          data = connection.get_bucket_location(key)
          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 :key
          data = connection.get_request_payment(key)
          data.body['Payer']
        end

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

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

      end

    end
  end
end

Version data entries

54 entries across 54 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/aws/models/s3/directory.rb
fog-0.2.28 lib/fog/aws/models/s3/directory.rb
fog-0.2.27 lib/fog/aws/models/s3/directory.rb
fog-0.2.26 lib/fog/aws/models/s3/directory.rb
fog-0.2.25 lib/fog/aws/models/s3/directory.rb
fog-0.2.24 lib/fog/aws/models/s3/directory.rb
tecnh-fog-0.2.23.vpc lib/fog/aws/models/s3/directory.rb
fog-0.2.23 lib/fog/aws/models/s3/directory.rb
fog-0.2.22 lib/fog/aws/models/s3/directory.rb
fog-0.2.21 lib/fog/aws/models/s3/directory.rb
fog-0.2.20 lib/fog/aws/models/s3/directory.rb
fog-0.2.19 lib/fog/aws/models/s3/directory.rb
fog-0.2.18 lib/fog/aws/models/s3/directory.rb
fog-0.2.17 lib/fog/aws/models/s3/directory.rb
fog-0.2.16 lib/fog/aws/models/s3/directory.rb
fog-0.2.15 lib/fog/aws/models/s3/directory.rb
fog-0.2.14 lib/fog/aws/models/s3/directory.rb
fog-0.2.13 lib/fog/aws/models/s3/directory.rb
fog-0.2.12 lib/fog/aws/models/s3/directory.rb
fog-0.2.11 lib/fog/aws/models/s3/directory.rb