Sha256: 6a108f17aee1a17beeab3f1dbb2fdf4980715ac037cf355ac2c0e602cf3f3bd2

Contents?: true

Size: 1.99 KB

Versions: 111

Compression:

Stored size: 1.99 KB

Contents

module Fog
  module Parsers
    module CDN
      module AWS

        class Distribution < Fog::Parsers::Base

          def reset
            @response = { 'DistributionConfig' => { 'CNAME' => [], 'Logging' => {}, 'TrustedSigners' => [] } }
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'CustomOrigin', 'S3Origin'
              @origin = name
              @response['DistributionConfig'][@origin] = {}
            end
          end

          def end_element(name)
            case name
            when 'AwsAccountNumber'
              @response['DistributionConfig']['TrustedSigners'] << value
            when 'Bucket', 'Prefix'
              @response['DistributionConfig']['Logging'][name] = value
            when 'CNAME'
              @response['DistributionConfig']['CNAME'] << value
            when 'DNSName', 'OriginAccessIdentity', 'OriginProtocolPolicy'
              @response['DistributionConfig'][@origin][name] = value
            when 'DomainName', 'Id', 'Status'
              @response[name] = value
            when 'CallerReference', 'Comment', 'DefaultRootObject', 'Origin', 'OriginAccessIdentity'
              @response['DistributionConfig'][name] = value
            when 'Enabled'
              if value == 'true'
                @response['DistributionConfig'][name] = true
              else
                @response['DistributionConfig'][name] = false
              end
            when 'HTTPPort', 'HTTPSPort'
              @response['DistributionConfig'][@origin][name] = value.to_i
            when 'InProgressInvalidationBatches'
              @response[name] = value.to_i
            when 'LastModifiedTime'
              @response[name] = Time.parse(value)
            when 'Protocol'
              @response['DistributionConfig']['RequireProtocols'] = value
            when 'Self'
              @response['DistributionConfig']['TrustedSigners'] << 'Self'
            end
          end

        end

      end
    end
  end
end

Version data entries

111 entries across 111 versions & 19 rubygems

Version Path
tag-fog-1.0.1 lib/fog/aws/parsers/cdn/distribution.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cdn/distribution.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cdn/distribution.rb
fog-1.0.0 lib/fog/aws/parsers/cdn/distribution.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/cdn/parsers/aws/distribution.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/cdn/parsers/aws/distribution.rb
fog-0.11.0 lib/fog/cdn/parsers/aws/distribution.rb
fog-0.10.0 lib/fog/cdn/parsers/aws/distribution.rb
fog4encbs-0.9.0.1 lib/fog/cdn/parsers/aws/distribution.rb
fog4encbs-0.9.0 lib/fog/cdn/parsers/aws/distribution.rb
fog-0.9.0 lib/fog/cdn/parsers/aws/distribution.rb