Class: Fog::Parsers::Terremark::Shared::InternetService

Inherits:
TerremarkParser
  • Object
show all
Defined in:
lib/fog/terremark/parsers/shared/internet_service.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from TerremarkParser

#extract_attributes

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



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
# File 'lib/fog/terremark/parsers/shared/internet_service.rb', line 28

def end_element(name)
  case name
  when 'Description', 'Protocol'
    @response[name] = value
  when 'Enabled'
    if value == 'false'
      @response[name] = false
    else
      @response[name] = true
    end
  when 'Id'
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = value.to_i
    else
      @response[name] = value.to_i
    end
  when 'Name'
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = value
    else
      @response[name] = value
    end
  when 'Port', 'Timeout'
    @response[name] = value.to_i
  when 'PublicIpAddress'
    @in_public_ip_address = false
  end
end

#resetObject



8
9
10
11
# File 'lib/fog/terremark/parsers/shared/internet_service.rb', line 8

def reset
  @in_public_ip_address = false
  @response = { 'PublicIpAddress' => {} }
end

#start_element(name, attributes) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/fog/terremark/parsers/shared/internet_service.rb', line 13

def start_element(name, attributes)
  super
  case name
  when 'Href'
    data = extract_attributes(attributes)
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = data
    else
      @response[name] = data
    end
  when 'PublicIpAddress'
    @in_public_ip_address = true
  end
end