File: distribution.rb

package info (click to toggle)
ruby-fog-aws 3.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,816 kB
  • sloc: ruby: 68,587; makefile: 6
file content (55 lines) | stat: -rw-r--r-- 2,035 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module Fog
  module Parsers
    module AWS
      module CDN
        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