Class/Module Index [+]

Quicksearch

Fog::Parsers::DNS::Zerigo::GetZone

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/zerigo/parsers/dns/get_zone.rb, line 24
def end_element(name)
  if (@in_hosts)
    #in hosts part of response
    case name
    when 'id', 'zone-id'
      @host[name] = value.to_i
    when 'priority', 'ttl'
      @host[name] = value.to_i if value
    when 'data', 'fqdn', 'host-type', 'hostname', 'notes', 'zone-id', 'created-at', 'updated-at'
      @host[name] = value
    when 'host'
      @hosts << @host
      @host = {}
    when 'hosts'
      @response[name] = @hosts
      @in_hosts = false
    end
  else
    #in zone part of data
    case name
    when 'default-ttl', 'id', 'nx-ttl', 'hosts-count'
      @response[name] = value.to_i
    when 'created-at', 'custom-nameservers', 'custom-ns', 'domain', 'hostmaster', 'notes', 'ns1', 'ns-type', 'slave-nameservers', 'tag-list', 'updated-at', 'hosts', 'axfr-ips', 'restrict-axfr'
      @response[name] = value
    end
  end
  
end
reset() click to toggle source
# File lib/fog/zerigo/parsers/dns/get_zone.rb, line 8
def reset
  @host = {}
  @hosts = []
  @response = {}
  @in_hosts = false
end
start_element(name, attrs = []) click to toggle source
# File lib/fog/zerigo/parsers/dns/get_zone.rb, line 15
def start_element(name, attrs = [])
  super(name, attrs)
  #look out for start of <hosts> section
  #needed as some of the tags have the same name as the parent <zone> section
  if name == 'hosts'
    @in_hosts= true
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.