combrw_parser.rb
1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
49
50
51
52
53
54
55
# frozen_string_literal: true
module Syspro
module BusinessObjects
module Parsers
class ComBrwParser
attr_reader :doc
def initialize(doc)
@doc = doc
end
def parse
next_prev_key = doc.first_element_child.xpath('NextPrevKey')
next_prev_key_obj = next_prev_key.children.map do |el|
next if el.name == 'text'
{
name: el.name,
text: el.text
}
end.compact
header_details = doc.first_element_child.xpath('HeaderDetails')
header_details_obj = header_details.children.map do |el|
next if el.name == 'text'
{
name: el.name,
text: el.text
}
end.compact
rows = doc.first_element_child.xpath('Row')
rows_obj = rows.flat_map do |el|
el.elements.map do |inner|
{
name: inner.name,
value: inner.xpath('Value').text,
data_type: inner.xpath('DataType').text
}
end
end.compact
BrowseObject.new(
doc.first_element_child.xpath('Title').text,
rows_obj,
next_prev_key_obj,
header_details_obj
)
end
BrowseObject = Struct.new(:title, :rows, :next_prev_key, :header_details)
end
end
end
end