Sha256: ece10eabc3d8f3d10493cb24e10202835a0978a3bb1a0e413d41a268a26b4b05

Contents?: true

Size: 1.19 KB

Versions: 5

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module Parsers
    module Terremark
      module Shared

        class Vapp < Fog::Parsers::Base

          def reset
            @response = { 'Links' => [] }
          end

          def start_element(name, attributes)
            @value = ''
            case name
              when 'Link'
                link = {}
                until attributes.empty?
                  link[attributes.shift] = attributes.shift
                end
                @response['Links'] << link
              when 'VApp'
                vapp = {}
                until attributes.empty?
                  if attributes.first.is_a?(Array)
                    attribute = attributes.shift
                    vapp[attribute.first] = attribute.last
                  else
                    vapp[attributes.shift] = attributes.shift
                  end
                end
                @response.merge!(vapp.reject {|key,value| !['href', 'name', 'size', 'status', 'type'].include?(key)})
            end
          end

          def end_element(name)
            case name
            when 'IpAddress'
              @response['IpAddress'] = @value
            end
          end

        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fog-0.0.89 lib/fog/terremark/parsers/shared/vapp.rb
fog-0.0.88 lib/fog/terremark/parsers/shared/vapp.rb
fog-0.0.87 lib/fog/terremark/parsers/shared/vapp.rb
fog-0.0.86 lib/fog/terremark/parsers/shared/vapp.rb
fog-0.0.85 lib/fog/terremark/parsers/shared/vapp.rb