Sha256: e642cce41242ece67b2585e4a8b88eb28d7321cd8ff05d9e4b6757ad954534b9

Contents?: true

Size: 1.29 KB

Versions: 4

Compression:

Stored size: 1.29 KB

Contents

module Fog
  module Parsers
    module Terremark
      class GetOrganization < Base
        def reset
          @response = { 'Links' => [] }
        end

        def start_element(name, attributes)
          super
          case name
            when 'Link'
              link = extract_attributes(attributes)
              until attributes.empty?
                if attributes.first.is_a?(Array)
                  attribute = attributes.shift
                  link[attribute.first] = attribute.last
                else
                  link[attributes.shift] = attributes.shift
                end
              end
              @response['Links'] << link
            when 'Org'
              org = extract_attributes(attributes)
              until attributes.empty?
                if attributes.first.is_a?(Array)
                  attribute = attributes.shift
                  org[attribute.first] = attribute.last
                else
                  org[attributes.shift] = attributes.shift
                end
              end
              @response['href'] = org['href']
              @response['name'] = org['name']
          end
        end

        def end_element(name)
          if name == 'Description'
            @response[name] = value
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-terremark-0.0.4 lib/fog/parsers/terremark/get_organization.rb
fog-terremark-0.0.3 lib/fog/parsers/terremark/get_organization.rb
fog-terremark-0.0.2 lib/fog/parsers/terremark/get_organization.rb
fog-terremark-0.0.1 lib/fog/parsers/terremark/get_organization.rb