ooxml_parser 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ooxml_parser/common_parser/common_data/content_types.rb +7 -0
- data/lib/ooxml_parser/common_parser/common_data/coordinates.rb +2 -2
- data/lib/ooxml_parser/common_parser/common_data/hyperlink.rb +1 -1
- data/lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_paragraph_run/shape.rb +1 -1
- data/lib/ooxml_parser/version.rb +1 -1
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook.rb +13 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition.rb +6 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields.rb +43 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields/cache_field.rb +37 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields/cache_field/shared_items.rb +42 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition.rb +114 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/column_row_items.rb +43 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/column_row_items/column_row_item.rb +22 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/location.rb +34 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields.rb +43 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field.rb +37 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field/items.rb +43 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field/items/item.rb +26 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_table_style_info.rb +42 -0
- data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet/fills/fill.rb +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 152de470eb7ecac05ca2d886b7c7113edb6a2c388fe29491b5b0c4341e771237
|
4
|
+
data.tar.gz: cf0aa14cc429393d88a2e3a39961242ab740c96a878d149ec74cdaade6fd2587
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34869710a5435a3d26c6b70dd42b1290cd80a1b7dff16582f3d4abaaa765877b69c58a9af5543b86cdbad78c27dd3849daf14f09e8bf0c8e5c4c5bfd3fdb0b8f
|
7
|
+
data.tar.gz: 538f12d23be8b548ef8bbcfd476f93f4c0926cfbe9c71d7101a97ccf040e8c238dece97f7c04d49bef6dd524e296795c3f1ada9b368016bf6864f9262cfd1dcc
|
@@ -34,5 +34,12 @@ module OoxmlParser
|
|
34
34
|
end
|
35
35
|
self
|
36
36
|
end
|
37
|
+
|
38
|
+
# Get content definition by type
|
39
|
+
# @param [String] type of definition
|
40
|
+
# @return [Object] resulting objects
|
41
|
+
def by_type(type)
|
42
|
+
@content_types_list.select { |item| item.content_type == type }
|
43
|
+
end
|
37
44
|
end
|
38
45
|
end
|
@@ -23,8 +23,8 @@ module OoxmlParser
|
|
23
23
|
end
|
24
24
|
string = string.split('!').last
|
25
25
|
if coordinates?(string)
|
26
|
-
coordinates.row = string.scan(/[0-9]/).join
|
27
|
-
coordinates.column = string.scan(/[A-Z]/).join
|
26
|
+
coordinates.row = string.scan(/[0-9]/).join.to_i
|
27
|
+
coordinates.column = string.scan(/[A-Z]/).join
|
28
28
|
end
|
29
29
|
coordinates
|
30
30
|
end
|
@@ -76,7 +76,7 @@ module OoxmlParser
|
|
76
76
|
@action = :last_slide
|
77
77
|
when 'ppaction://hlinksldjump'
|
78
78
|
@action = :slide
|
79
|
-
@url = OOXMLDocumentObject.get_link_from_rels(@id).scan(/\d+/).join
|
79
|
+
@url = OOXMLDocumentObject.get_link_from_rels(@id).scan(/\d+/).join.to_i
|
80
80
|
else
|
81
81
|
if @id && !@id.empty?
|
82
82
|
@action = :external_link
|
data/lib/ooxml_parser/version.rb
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require_relative 'workbook/chartsheet'
|
4
4
|
require_relative 'workbook/pivot_cache'
|
5
|
+
require_relative 'workbook/pivot_table_definition'
|
5
6
|
require_relative 'workbook/shared_string_table'
|
6
7
|
require_relative 'workbook/style_sheet'
|
7
8
|
require_relative 'workbook/worksheet'
|
@@ -21,10 +22,13 @@ module OoxmlParser
|
|
21
22
|
attr_accessor :shared_strings_table
|
22
23
|
# @return [Array<PivotCache>] list of pivot caches
|
23
24
|
attr_accessor :pivot_caches
|
25
|
+
# @return [Array<PivotTableDefintion>] list of pivot table defitions
|
26
|
+
attr_accessor :pivot_table_definitions
|
24
27
|
|
25
28
|
def initialize(params = {})
|
26
29
|
@worksheets = []
|
27
30
|
@pivot_caches = []
|
31
|
+
@pivot_table_definitions = []
|
28
32
|
super
|
29
33
|
end
|
30
34
|
|
@@ -120,6 +124,7 @@ module OoxmlParser
|
|
120
124
|
end
|
121
125
|
end
|
122
126
|
parse_pivot_cache
|
127
|
+
parse_pivot_table
|
123
128
|
OOXMLDocumentObject.xmls_stack.pop
|
124
129
|
self
|
125
130
|
end
|
@@ -136,5 +141,13 @@ module OoxmlParser
|
|
136
141
|
@pivot_caches << PivotCache.new(parent: self).parse(pivot_cache)
|
137
142
|
end
|
138
143
|
end
|
144
|
+
|
145
|
+
# Perform parsing of pivot table
|
146
|
+
def parse_pivot_table
|
147
|
+
files = @content_types.by_type('application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml')
|
148
|
+
files.each do |file|
|
149
|
+
@pivot_table_definitions << PivotTableDefinition.new(parent: self).parse(file.part_name)
|
150
|
+
end
|
151
|
+
end
|
139
152
|
end
|
140
153
|
end
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative 'pivot_cache_definition/cache_source'
|
4
|
+
require_relative 'pivot_cache_definition/cache_fields'
|
5
|
+
|
4
6
|
module OoxmlParser
|
5
7
|
# Class for parsing <pivotCacheDefinition> file
|
6
8
|
class PivotCacheDefinition < OOXMLDocumentObject
|
@@ -8,6 +10,8 @@ module OoxmlParser
|
|
8
10
|
attr_reader :id
|
9
11
|
# @return [CacheSource] source of pivot cache
|
10
12
|
attr_reader :cache_source
|
13
|
+
# @return [CacheFields] fields of pivot cache
|
14
|
+
attr_reader :cache_fields
|
11
15
|
|
12
16
|
# Parse PivotCacheDefinition file
|
13
17
|
# @param file [String] path to file
|
@@ -29,6 +33,8 @@ module OoxmlParser
|
|
29
33
|
case node_child.name
|
30
34
|
when 'cacheSource'
|
31
35
|
@cache_source = CacheSource.new(parent: self).parse(node_child)
|
36
|
+
when 'cacheFields'
|
37
|
+
@cache_fields = CacheFields.new(parent: self).parse(node_child)
|
32
38
|
end
|
33
39
|
end
|
34
40
|
self
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'cache_fields/cache_field'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <cacheFields> tag
|
7
|
+
class CacheFields < OOXMLDocumentObject
|
8
|
+
# @return [Integer] count
|
9
|
+
attr_reader :count
|
10
|
+
# @return [Array<CacheField>] list of CacheField object
|
11
|
+
attr_reader :cache_field
|
12
|
+
|
13
|
+
def initialize(parent: nil)
|
14
|
+
@cache_field = []
|
15
|
+
super
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [CacheField] accessor
|
19
|
+
def [](key)
|
20
|
+
@cache_field[key]
|
21
|
+
end
|
22
|
+
|
23
|
+
# Parse `<cacheFields>` tag
|
24
|
+
# @param [Nokogiri::XML:Element] node with cacheFields data
|
25
|
+
# @return [cacheFields]
|
26
|
+
def parse(node)
|
27
|
+
node.attributes.each do |key, value|
|
28
|
+
case key
|
29
|
+
when 'count'
|
30
|
+
@count = value.value.to_i
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
node.xpath('*').each do |node_child|
|
35
|
+
case node_child.name
|
36
|
+
when 'cacheField'
|
37
|
+
@cache_field << CacheField.new(parent: self).parse(node_child)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
self
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'cache_field/shared_items'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <cacheField> tag
|
7
|
+
class CacheField < OOXMLDocumentObject
|
8
|
+
# @return [String] name of field
|
9
|
+
attr_reader :name
|
10
|
+
# @return [Integer] number format id
|
11
|
+
attr_reader :number_format_id
|
12
|
+
# @return [SharedItems] shared items
|
13
|
+
attr_reader :shared_items
|
14
|
+
|
15
|
+
# Parse `<cacheField>` tag
|
16
|
+
# # @param [Nokogiri::XML:Element] node with WorksheetSource data
|
17
|
+
# @return [CacheField]
|
18
|
+
def parse(node)
|
19
|
+
node.attributes.each do |key, value|
|
20
|
+
case key
|
21
|
+
when 'name'
|
22
|
+
@name = value.value.to_s
|
23
|
+
when 'numFmtId'
|
24
|
+
@number_format_id = value.value.to_i
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
node.xpath('*').each do |node_child|
|
29
|
+
case node_child.name
|
30
|
+
when 'sharedItems'
|
31
|
+
@shared_items = SharedItems.new(parent: self).parse(node_child)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
self
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OoxmlParser
|
4
|
+
# Class for parsing <sharedItems> tag
|
5
|
+
class SharedItems < OOXMLDocumentObject
|
6
|
+
# @return [True, False] is contains_semi_mixed_types
|
7
|
+
attr_reader :contains_semi_mixed_types
|
8
|
+
# @return [True, False] is contains_string
|
9
|
+
attr_reader :contains_string
|
10
|
+
# @return [True, False] is contains_number
|
11
|
+
attr_reader :contains_number
|
12
|
+
# @return [True, False] is contains_integer
|
13
|
+
attr_reader :contains_integer
|
14
|
+
# @return [Integer] min value
|
15
|
+
attr_reader :min_value
|
16
|
+
# @return [Integer] max value
|
17
|
+
attr_reader :max_value
|
18
|
+
|
19
|
+
# Parse `<sharedItems>` tag
|
20
|
+
# # @param [Nokogiri::XML:Element] node with WorksheetSource data
|
21
|
+
# @return [sharedItems]
|
22
|
+
def parse(node)
|
23
|
+
node.attributes.each do |key, value|
|
24
|
+
case key
|
25
|
+
when 'containsSemiMixedTypes'
|
26
|
+
@contains_semi_mixed_types = attribute_enabled?(value)
|
27
|
+
when 'containsString'
|
28
|
+
@contains_string = attribute_enabled?(value)
|
29
|
+
when 'containsNumber'
|
30
|
+
@contains_number = attribute_enabled?(value)
|
31
|
+
when 'containsInteger'
|
32
|
+
@contains_integer = attribute_enabled?(value)
|
33
|
+
when 'minValue'
|
34
|
+
@min_value = value.value.to_i
|
35
|
+
when 'maxValue'
|
36
|
+
@max_value = value.value.to_i
|
37
|
+
end
|
38
|
+
end
|
39
|
+
self
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,114 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'pivot_table_definition/column_row_items'
|
4
|
+
require_relative 'pivot_table_definition/location'
|
5
|
+
require_relative 'pivot_table_definition/pivot_fields'
|
6
|
+
require_relative 'pivot_table_definition/pivot_table_style_info'
|
7
|
+
|
8
|
+
module OoxmlParser
|
9
|
+
# Class for parsing <PivotTableDefinition> tag
|
10
|
+
class PivotTableDefinition < OOXMLDocumentObject
|
11
|
+
# @return [String] name of table
|
12
|
+
attr_reader :name
|
13
|
+
# @return [Integer] id of cache
|
14
|
+
attr_reader :cache_id
|
15
|
+
# @return [True, False] should number formats be applied
|
16
|
+
attr_reader :apply_number_formats
|
17
|
+
# @return [True, False] should border formats be applied
|
18
|
+
attr_reader :apply_border_formats
|
19
|
+
# @return [True, False] should font formats be applied
|
20
|
+
attr_reader :apply_font_formats
|
21
|
+
# @return [True, False] should pattern formats be applied
|
22
|
+
attr_reader :apply_pattern_formats
|
23
|
+
# @return [True, False] should alignment formats be applied
|
24
|
+
attr_reader :apply_alignment_formats
|
25
|
+
# @return [True, False] should width height formats be applied
|
26
|
+
attr_reader :apply_width_height_formats
|
27
|
+
# @return [True, False] should auto formatting be used
|
28
|
+
attr_reader :use_auto_formatting
|
29
|
+
# @return [True, False] should item print titles
|
30
|
+
attr_reader :item_print_titles
|
31
|
+
# @return [String] data caption
|
32
|
+
attr_reader :data_caption
|
33
|
+
# @return [Integer] creation version
|
34
|
+
attr_reader :created_version
|
35
|
+
# @return [Integer] indent
|
36
|
+
attr_reader :indent
|
37
|
+
# @return [True, False] outline
|
38
|
+
attr_reader :outline
|
39
|
+
# @return [True, False] outline data
|
40
|
+
attr_reader :outline_data
|
41
|
+
# @return [True, False] is there multiple fields filters
|
42
|
+
attr_reader :multiple_field_filters
|
43
|
+
# @return [Location] location data
|
44
|
+
attr_reader :location
|
45
|
+
# @return [PivotFields] pivot fields
|
46
|
+
attr_reader :pivot_fields
|
47
|
+
# @return [ColumnRowItems] column items
|
48
|
+
attr_reader :column_items
|
49
|
+
# @return [ColumnRowItems] row items
|
50
|
+
attr_reader :row_items
|
51
|
+
# @return [PivotTableStyleInfo] style info
|
52
|
+
attr_reader :style_info
|
53
|
+
|
54
|
+
# Parse PivotTableDefinition object
|
55
|
+
# @param [String] file path
|
56
|
+
# @return [PivotTableDefinition] result of parsing
|
57
|
+
def parse(file)
|
58
|
+
doc = Nokogiri::XML.parse(File.open("#{OOXMLDocumentObject.path_to_folder}/#{file}"))
|
59
|
+
node = doc.xpath('//xmlns:pivotTableDefinition').first
|
60
|
+
node.attributes.each do |key, value|
|
61
|
+
case key
|
62
|
+
when 'name'
|
63
|
+
@name = value.value.to_s
|
64
|
+
when 'cacheId'
|
65
|
+
@cache_id = value.value.to_i
|
66
|
+
when 'applyNumberFormats'
|
67
|
+
@apply_number_formats = attribute_enabled?(value)
|
68
|
+
when 'applyBorderFormats'
|
69
|
+
@apply_border_formats = attribute_enabled?(value)
|
70
|
+
when 'applyFontFormats'
|
71
|
+
@apply_font_formats = attribute_enabled?(value)
|
72
|
+
when 'applyPatternFormats'
|
73
|
+
@apply_pattern_formats = attribute_enabled?(value)
|
74
|
+
when 'applyAlignmentFormats'
|
75
|
+
@apply_alignment_formats = attribute_enabled?(value)
|
76
|
+
when 'applyWidthHeightFormats'
|
77
|
+
@apply_width_height_formats = attribute_enabled?(value)
|
78
|
+
when 'useAutoFormatting'
|
79
|
+
@use_auto_formatting = attribute_enabled?(value)
|
80
|
+
when 'itemPrintTitles'
|
81
|
+
@item_print_titles = attribute_enabled?(value)
|
82
|
+
when 'dataCaption'
|
83
|
+
@data_caption = value.value.to_s
|
84
|
+
when 'createdVersion'
|
85
|
+
@created_version = value.value.to_i
|
86
|
+
when 'indent'
|
87
|
+
@indent = value.value.to_i
|
88
|
+
when 'outline'
|
89
|
+
@outline = attribute_enabled?(value)
|
90
|
+
when 'outlineData'
|
91
|
+
@outline_data = attribute_enabled?(value)
|
92
|
+
when 'multipleFieldFilters'
|
93
|
+
@multiple_field_filters = attribute_enabled?(value)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
node.xpath('*').each do |node_child|
|
98
|
+
case node_child.name
|
99
|
+
when 'location'
|
100
|
+
@location = Location.new(parent: self).parse(node_child)
|
101
|
+
when 'pivotFields'
|
102
|
+
@pivot_fields = PivotFields.new(parent: self).parse(node_child)
|
103
|
+
when 'rowItems'
|
104
|
+
@row_items = ColumnRowItems.new(parent: self).parse(node_child)
|
105
|
+
when 'colItems'
|
106
|
+
@column_items = ColumnRowItems.new(parent: self).parse(node_child)
|
107
|
+
when 'pivotTableStyleInfo'
|
108
|
+
@style_info = PivotTableStyleInfo.new(parent: self).parse(node_child)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
self
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'column_row_items/column_row_item'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <rowItems> and <colItems> tag
|
7
|
+
class ColumnRowItems < OOXMLDocumentObject
|
8
|
+
# @return [Integer] count of items
|
9
|
+
attr_reader :count
|
10
|
+
# @return [Array<RowColumnItem>] list of RowColumnItem object
|
11
|
+
attr_reader :items
|
12
|
+
|
13
|
+
def initialize(parent: nil)
|
14
|
+
@items = []
|
15
|
+
super
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [RowColumnItem] accessor
|
19
|
+
def [](key)
|
20
|
+
@items[key]
|
21
|
+
end
|
22
|
+
|
23
|
+
# Parse `<cacheField>` tag
|
24
|
+
# # @param [Nokogiri::XML:Element] node with WorksheetSource data
|
25
|
+
# @return [CacheField]
|
26
|
+
def parse(node)
|
27
|
+
node.attributes.each do |key, value|
|
28
|
+
case key
|
29
|
+
when 'count'
|
30
|
+
@count = value.value.to_i
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
node.xpath('*').each do |node_child|
|
35
|
+
case node_child.name
|
36
|
+
when 'i'
|
37
|
+
@items << ColumnRowItem.new(parent: self).parse(node_child)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
self
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OoxmlParser
|
4
|
+
# Class for parsing <i> tag
|
5
|
+
class ColumnRowItem < OOXMLDocumentObject
|
6
|
+
# @return [Symbol] type of item
|
7
|
+
attr_reader :type
|
8
|
+
|
9
|
+
# Parse `<location>` tag
|
10
|
+
# @param [Nokogiri::XML:Element] node with location data
|
11
|
+
# @return [Location]
|
12
|
+
def parse(node)
|
13
|
+
node.attributes.each do |key, value|
|
14
|
+
case key
|
15
|
+
when 't'
|
16
|
+
@type = value.value.to_sym
|
17
|
+
end
|
18
|
+
end
|
19
|
+
self
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/location.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OoxmlParser
|
4
|
+
# Class for parsing <location> tag
|
5
|
+
class Location < OOXMLDocumentObject
|
6
|
+
# @return [String] ref of location
|
7
|
+
attr_reader :ref
|
8
|
+
# @return [True, False] first header row
|
9
|
+
attr_reader :first_header_row
|
10
|
+
# @return [True, False] first data row
|
11
|
+
attr_reader :first_data_row
|
12
|
+
# @return [True, False] first data column
|
13
|
+
attr_reader :first_data_column
|
14
|
+
|
15
|
+
# Parse `<location>` tag
|
16
|
+
# @param [Nokogiri::XML:Element] node with location data
|
17
|
+
# @return [Location]
|
18
|
+
def parse(node)
|
19
|
+
node.attributes.each do |key, value|
|
20
|
+
case key
|
21
|
+
when 'ref'
|
22
|
+
@ref = value.value.to_s
|
23
|
+
when 'firstHeaderRow'
|
24
|
+
@first_header_row = attribute_enabled?(value)
|
25
|
+
when 'firstDataRow'
|
26
|
+
@first_data_row = attribute_enabled?(value)
|
27
|
+
when 'firstDataCol'
|
28
|
+
@first_data_column = attribute_enabled?(value)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
self
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'pivot_fields/pivot_field'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <pivotFields> tag
|
7
|
+
class PivotFields < OOXMLDocumentObject
|
8
|
+
# @return [Integer] count
|
9
|
+
attr_reader :count
|
10
|
+
# @return [Array<PivotField>] list of PivotField object
|
11
|
+
attr_reader :pivot_field
|
12
|
+
|
13
|
+
def initialize(parent: nil)
|
14
|
+
@pivot_field = []
|
15
|
+
super
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [PivotField] accessor
|
19
|
+
def [](key)
|
20
|
+
@pivot_field[key]
|
21
|
+
end
|
22
|
+
|
23
|
+
# Parse `<pivotFields>` tag
|
24
|
+
# @param [Nokogiri::XML:Element] node with pivotFields data
|
25
|
+
# @return [PivotFields]
|
26
|
+
def parse(node)
|
27
|
+
node.attributes.each do |key, value|
|
28
|
+
case key
|
29
|
+
when 'count'
|
30
|
+
@count = value.value.to_i
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
node.xpath('*').each do |node_child|
|
35
|
+
case node_child.name
|
36
|
+
when 'pivotField'
|
37
|
+
@pivot_field << PivotField.new(parent: self).parse(node_child)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
self
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'pivot_field/items'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <pivotField> tag
|
7
|
+
class PivotField < OOXMLDocumentObject
|
8
|
+
# @return [String] axis value
|
9
|
+
attr_reader :axis
|
10
|
+
# @return [True, False] should show all
|
11
|
+
attr_reader :show_all
|
12
|
+
# @return [Items] contain item
|
13
|
+
attr_reader :items
|
14
|
+
|
15
|
+
# Parse `<pivotField>` tag
|
16
|
+
# # @param [Nokogiri::XML:Element] node with PivotField data
|
17
|
+
# @return [PivotField]
|
18
|
+
def parse(node)
|
19
|
+
node.attributes.each do |key, value|
|
20
|
+
case key
|
21
|
+
when 'axis'
|
22
|
+
@axis = value.value.to_s
|
23
|
+
when 'showAll'
|
24
|
+
@show_all = attribute_enabled?(value)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
node.xpath('*').each do |node_child|
|
29
|
+
case node_child.name
|
30
|
+
when 'items'
|
31
|
+
@items = Items.new(parent: self).parse(node_child)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
self
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'items/item'
|
4
|
+
|
5
|
+
module OoxmlParser
|
6
|
+
# Class for parsing <items> tag
|
7
|
+
class Items < OOXMLDocumentObject
|
8
|
+
# @return [Integer] count
|
9
|
+
attr_reader :count
|
10
|
+
# @return [Array<Item>] list of items
|
11
|
+
attr_reader :items
|
12
|
+
|
13
|
+
def initialize(parent: nil)
|
14
|
+
@items = []
|
15
|
+
super
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [Item] accessor
|
19
|
+
def [](key)
|
20
|
+
@items[key]
|
21
|
+
end
|
22
|
+
|
23
|
+
# Parse `<items>` tag
|
24
|
+
# @param [Nokogiri::XML:Element] node with items data
|
25
|
+
# @return [Items]
|
26
|
+
def parse(node)
|
27
|
+
node.attributes.each do |key, value|
|
28
|
+
case key
|
29
|
+
when 'count'
|
30
|
+
@count = value.value.to_i
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
node.xpath('*').each do |node_child|
|
35
|
+
case node_child.name
|
36
|
+
when 'item'
|
37
|
+
@items << Item.new(parent: self).parse(node_child)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
self
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OoxmlParser
|
4
|
+
# Class for parsing <item> tag
|
5
|
+
class Item < OOXMLDocumentObject
|
6
|
+
# @return [Integer] index of item
|
7
|
+
attr_reader :index
|
8
|
+
# @return [Symbol] type of item
|
9
|
+
attr_reader :type
|
10
|
+
|
11
|
+
# Parse `<item>` tag
|
12
|
+
# # @param [Nokogiri::XML:Element] node with Item data
|
13
|
+
# @return [item]
|
14
|
+
def parse(node)
|
15
|
+
node.attributes.each do |key, value|
|
16
|
+
case key
|
17
|
+
when 'x'
|
18
|
+
@index = value.value.to_i
|
19
|
+
when 't'
|
20
|
+
@type = value.value.to_sym
|
21
|
+
end
|
22
|
+
end
|
23
|
+
self
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OoxmlParser
|
4
|
+
# Class for parsing <pivotTableStyleInfo> tag
|
5
|
+
class PivotTableStyleInfo < OOXMLDocumentObject
|
6
|
+
# @return [String] name of style
|
7
|
+
attr_reader :name
|
8
|
+
# @return [True, False] show row header
|
9
|
+
attr_reader :show_row_header
|
10
|
+
# @return [True, False] show column header
|
11
|
+
attr_reader :show_column_header
|
12
|
+
# @return [True, False] show row stripes
|
13
|
+
attr_reader :show_row_stripes
|
14
|
+
# @return [True, False] show column stripes
|
15
|
+
attr_reader :show_column_stripes
|
16
|
+
# @return [True, False] show last column
|
17
|
+
attr_reader :show_last_column
|
18
|
+
|
19
|
+
# Parse `<pivotTableStyleInfo>` tag
|
20
|
+
# @param [Nokogiri::XML:Element] node with PivotTableStyleInfo data
|
21
|
+
# @return [PivotTableStyleInfo]
|
22
|
+
def parse(node)
|
23
|
+
node.attributes.each do |key, value|
|
24
|
+
case key
|
25
|
+
when 'name'
|
26
|
+
@name = value.value.to_s
|
27
|
+
when 'showRowHeaders'
|
28
|
+
@show_row_header = attribute_enabled?(value)
|
29
|
+
when 'showColHeaders'
|
30
|
+
@show_column_header = attribute_enabled?(value)
|
31
|
+
when 'showRowStripes'
|
32
|
+
@show_row_stripes = attribute_enabled?(value)
|
33
|
+
when 'showColStripes'
|
34
|
+
@show_column_stripes = attribute_enabled?(value)
|
35
|
+
when 'showLastColumn'
|
36
|
+
@show_last_column = attribute_enabled?(value)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
self
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -22,7 +22,7 @@ module OoxmlParser
|
|
22
22
|
node.attributes.each do |key, value|
|
23
23
|
case key
|
24
24
|
when 'color2'
|
25
|
-
@color2 = Color.new(parent: self).parse_hex_string(value.value.split
|
25
|
+
@color2 = Color.new(parent: self).parse_hex_string(value.value.split.first.delete('#'))
|
26
26
|
when 'id'
|
27
27
|
@id = value.value.to_s
|
28
28
|
@file = FileReference.new(parent: self).parse(node)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ooxml_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ONLYOFFICE
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
13
|
+
date: 2020-12-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: nokogiri
|
@@ -487,8 +487,20 @@ files:
|
|
487
487
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/chartsheet.rb
|
488
488
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache.rb
|
489
489
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition.rb
|
490
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields.rb
|
491
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields/cache_field.rb
|
492
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_fields/cache_field/shared_items.rb
|
490
493
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_source.rb
|
491
494
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_cache/pivot_cache_definition/cache_source/worksheet_source.rb
|
495
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition.rb
|
496
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/column_row_items.rb
|
497
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/column_row_items/column_row_item.rb
|
498
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/location.rb
|
499
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields.rb
|
500
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field.rb
|
501
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field/items.rb
|
502
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_fields/pivot_field/items/item.rb
|
503
|
+
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/pivot_table_definition/pivot_table_style_info.rb
|
492
504
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
|
493
505
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table/string_index.rb
|
494
506
|
- lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/style_sheet.rb
|