Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/geo_certs/hash_extension.rb

Overview

:nodoc:

Class Method Summary collapse

Class Method Details

.from_libxml(xml, strict = true) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/geo_certs/hash_extension.rb', line 5

def from_libxml(xml, strict=true)
  begin
    LibXML::XML.default_load_external_dtd = false
    LibXML::XML.default_pedantic_parser = strict
    result = LibXML::XML::Parser.string(xml).parse 
    return { result.root.name.to_s => xml_node_to_hash(result.root)} 
  rescue
    raise $!
    # raise your custom exception here
  end
end

.xml_node_to_hash(node) ⇒ Object



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
# File 'lib/geo_certs/hash_extension.rb', line 17

def xml_node_to_hash(node) 
  # If we are at the root of the document, start the hash 
  if node.element? 
   if node.children? 
      result_hash = {} 

      node.each_child do |child| 
        result = xml_node_to_hash(child) 

        if child.name == "text"
          if !child.next? and !child.prev?
            return result
          end
        elsif result_hash[child.name]
            if result_hash[child.name].is_a?(Object::Array)
              result_hash[child.name] << result
            else
              result_hash[child.name] = [result_hash[child.name]] << result
            end
          else 
            result_hash[child.name] = result
          end
        end

      return result_hash 
    else 
      return nil 
   end 
   else 
    return node.content.to_s 
  end 
end