Sha256: 0c9a6a46578e0829336914be0f8c7e23565f32233cb071e24c6ce6d7894ce935

Contents?: true

Size: 1.09 KB

Versions: 42

Compression:

Stored size: 1.09 KB

Contents

module Fog
  module Parsers
    module AWS
      module Storage

        class GetBucketLogging < Fog::Parsers::Base

          def reset
            @grant = { 'Grantee' => {} }
            @response = { 'BucketLoggingStatus' => {} }
          end

          def end_element(name)
            case name
            when 'DisplayName', 'ID'
              if @in_access_control_list
                @grant['Grantee'][name] = @value
              else
                @response['Owner'][name] = @value
              end
            when 'Grant'
              @response['BucketLoggingStatus']['LoggingEnabled']['TargetGrants'] << @grant
              @grant = { 'Grantee' => {} }
            when 'LoggingEnabled'
              @response['BucketLoggingStatus']['LoggingEnabled'] = { 'TargetGrants' => [] }
            when 'Permission'
              @grant[name] = @value
            when 'TargetBucket', 'TargetPrefix'
              @response['BucketLoggingStatus'][name] = @value
            when 'URI'
              @grant['Grantee'][name] = @value
            end
          end

        end

      end
    end
  end
end

Version data entries

42 entries across 42 versions & 3 rubygems

Version Path
fog-0.7.2 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.7.1 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.7.0 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.6.0 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.5.3 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.5.2 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.5.1 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.5.0 lib/fog/storage/parsers/aws/get_bucket_logging.rb
phpfog-fog-0.4.1.3 lib/fog/storage/parsers/aws/get_bucket_logging.rb
phpfog-fog-0.4.1.2 lib/fog/storage/parsers/aws/get_bucket_logging.rb
phpfog-fog-0.4.1.1 lib/fog/storage/parsers/aws/get_bucket_logging.rb
phpfog-fog-0.4.1 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.4.1 lib/fog/storage/parsers/aws/get_bucket_logging.rb
fog-0.4.0 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.34 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.33 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.32 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.31 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.30 lib/fog/aws/parsers/storage/get_bucket_logging.rb
fog-0.3.29 lib/fog/aws/parsers/storage/get_bucket_logging.rb