-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathz.go
514 lines (400 loc) · 11.4 KB
/
z.go
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
package xlripper
import (
"archive/zip"
"bufio"
"bytes"
"encoding/xml"
"errors"
"fmt"
"html"
"io"
"path"
"regexp"
"strings"
"github.com/bitflip-software/xlripper/xmlprivate"
)
const (
strContentTypes = "[Content_Types].xml"
strRels = "_rels/.rels"
strWorkbookRels = "_rels/workbook.xml.rels"
)
const angle rune = '<'
// zinfo represents info about how to find the xlsx parts inside of the zip package
type zinfo struct {
contentTypesIndex int
contentTypes xmlprivate.ContentTypes
relsIndex int
rels xmlprivate.Rels
wkbkName string
wkbkIndex int
wkbk xmlprivate.Workbook
wkbkFile *zip.File
wkbkRelsName string
wkbkRelsIndex int
wkbkRelsFile *zip.File
wkbkRels xmlprivate.Rels
sharedStringsIndex int
sharedStringsName string
sharedStringsFile *zip.File
sharedStrings sharedStrings
sheetMeta []sheetMeta
}
// zstruct represents the zip file reader and metadata about what was found in the xlsx package
type zstruct struct {
r *zip.Reader
info zinfo
}
// zopen parses all of the necessary information from the xlsx package into a usable data structure
func zopen(zipData string) (z zstruct, err error) {
b := []byte(zipData)
brdr := bytes.NewReader(b)
zr, err := zip.NewReader(brdr, int64(len(b)))
if err != nil {
return zstruct{}, err
} else if zr == nil {
return zstruct{}, errors.New("a nil zip.Reader was encountered")
}
z, err = zinit(zr)
if err != nil {
return zstruct{}, err
}
return z, nil
}
// zinit requires an open, error free *zip.Reader and returns a fully constructed zstruct
func zinit(zr *zip.Reader) (z zstruct, err error) {
z.r = zr
z.info, err = zparseContentTypes(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseRels(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseWorkbookLocation(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseWorkbookRels(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseSharedStrings(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseWorkbook(zr, z.info)
if err != nil {
return zstruct{}, err
}
z.info, err = zparseSheetMetadata(zr, z.info)
if err != nil {
return zstruct{}, err
}
return z, nil
}
func zparseContentTypes(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
zi.contentTypesIndex = zfind(zr, strContentTypes)
if zi.contentTypesIndex < 0 {
return zi, err
}
file := zr.File[zi.contentTypesIndex]
ctt := xmlprivate.ContentTypes{}
ctbuf := bytes.Buffer{}
ctwri := bufio.NewWriter(&ctbuf)
ofile, err := file.Open()
if err != nil {
return zi, err
} else {
defer ofile.Close()
}
io.Copy(ctwri, ofile)
err = xml.Unmarshal(ctbuf.Bytes(), &ctt)
if err != nil {
return zi, err
}
if len(ctt.Defaults) == 0 && len(ctt.Overrides) == 0 {
return zi, fmt.Errorf("the %sstrings file has no contents", strContentTypes)
}
zi.contentTypes = ctt
return zi, nil
}
// zparseWorkbookLocation must come after zparseRels
func zparseWorkbookLocation(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
// examples seen so far
// http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"
// http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument
wkbkRelsIndex := -1
for ix, rel := range zi.rels.Rels {
rx, _ := regexp.Compile(`.+officeDocument.+officeDocument$`)
match := rx.Match([]byte(rel.Type))
if match {
wkbkRelsIndex = ix
}
}
if wkbkRelsIndex < 0 {
for ix, rel := range zi.rels.Rels {
rx, _ := regexp.Compile(`workbook\.xml$`)
match := rx.Match([]byte(rel.Type))
if match {
wkbkRelsIndex = ix
}
}
}
if wkbkRelsIndex < 0 {
return zi, nil
}
wkb := zi.rels.Rels[wkbkRelsIndex].Target
zi.wkbkName = removeLeadingSlash(wkb)
zi.wkbkIndex = zfind(zr, wkb)
if zi.wkbkIndex < 0 {
return zi, errors.New("the workbook could not be found")
}
zi.wkbkFile = zr.File[zi.wkbkIndex]
return zi, nil
}
func zfind(zr *zip.Reader, filename string) (index int) {
filename = removeLeadingSlash(filename)
for ix, file := range zr.File {
lcActual := strings.ToLower(removeLeadingSlash(file.FileHeader.Name))
lcToFind := strings.ToLower(filename)
lenActual := len(lcActual)
lenToFind := len(lcToFind)
if lenActual < lenToFind {
continue
}
if lcActual[lenActual-lenToFind:] == lcToFind {
return ix
}
}
return -1
}
func zparseRels(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
zi.relsIndex = zfind(zr, strRels)
if zi.contentTypesIndex < 0 {
return zi, err
}
file := zr.File[zi.relsIndex]
xstruct := xmlprivate.Rels{}
fbuf := bytes.Buffer{}
fwrite := bufio.NewWriter(&fbuf)
ofile, err := file.Open()
if err != nil {
return zi, err
} else {
defer ofile.Close()
}
io.Copy(fwrite, ofile)
err = xml.Unmarshal(fbuf.Bytes(), &xstruct)
if err != nil {
return zi, err
}
zi.rels = xstruct
return zi, nil
}
// zparseWorkbookRels requires that the workbook has been found
func zparseWorkbookRels(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
wrelsName := wkbkRelsPath(zi.wkbkName)
ix := zfind(zr, wrelsName)
if ix < 0 {
return zi, fmt.Errorf("workbook rels '%sstrings' could not be found", wrelsName)
}
zi.wkbkRelsIndex = ix
zi.wkbkRelsFile = zr.File[ix]
zi.wkbkRelsName = removeLeadingSlash(zi.wkbkRelsFile.Name)
xstruct := xmlprivate.Rels{}
fbuf := bytes.Buffer{}
fwrite := bufio.NewWriter(&fbuf)
ofile, err := zi.wkbkRelsFile.Open()
if err != nil {
return zi, err
} else {
defer ofile.Close()
}
io.Copy(fwrite, ofile)
err = xml.Unmarshal(fbuf.Bytes(), &xstruct)
if err != nil {
return zi, err
}
zi.wkbkRels = xstruct
return zi, nil
}
//func zparseSharedStringGetOnePart(runes []rune, first, last int) []rune {
//
//}
func zparseSharedStringConcat(runesxml []rune, first, last int) (string, error) {
str := ""
runeIX := first
e := last
tLoop:
for ; runeIX <= e; runeIX++ {
//r := runesxml[runeIX]
siOpenLoc, isSiSelfClosing := shFindFirstOccurenceOfElement(runesxml, runeIX, e, "t")
if isSiSelfClosing {
runeIX = siOpenLoc.last
continue tLoop
} else if siOpenLoc == badPair {
//return zi, fmt.Errorf("open search: bad indices were found inspecting from index %d", runeIX)
//runeIX = siOpenLoc.last
continue tLoop
}
siCloseLoc, isSiCloseSelfClosing := shTagCloseFind(runesxml, siOpenLoc.last+1, e, "t")
if isSiCloseSelfClosing {
return "", fmt.Errorf("nonsense self-closing bool, probably a bug, less likely bad xml")
} else if siCloseLoc == badPair {
return "", fmt.Errorf("close search: bad indices were found inspecting from index %d", runeIX)
}
contentRunes := runesxml[siOpenLoc.last+1 : siCloseLoc.first]
contentStr := strings.Replace(html.UnescapeString(string(contentRunes)), "\r", "", -1)
str += contentStr
//contentStr := zparseSharedStringConcat(runesxml, siOpenLoc.last+1, siCloseLoc.first-1)
//ssh := sharedString{}
//ssh.s = &contentStr
//shstrObj.add(ssh)
runeIX = siCloseLoc.last
}
return str, nil
}
func zparseSharedStringsCore(runesxml []rune) (sharedStrings, error) {
shstrObj := newSharedStrings()
e := len(runesxml) - 1
runeIX := 0
//siIX := 0
siLoop:
for runeIX = 0; runeIX <= e; runeIX++ {
//r := runesxml[runeIX]
siOpenLoc, isSiSelfClosing := shFindFirstOccurenceOfElement(runesxml, runeIX, e, "si")
if isSiSelfClosing {
runeIX = siOpenLoc.last
continue siLoop
} else if siOpenLoc == badPair {
//return zi, fmt.Errorf("open search: bad indices were found inspecting from index %d", runeIX)
//runeIX = siOpenLoc.last
continue siLoop
}
siCloseLoc, isSiCloseSelfClosing := shTagCloseFind(runesxml, siOpenLoc.last+1, e, "si")
if isSiCloseSelfClosing {
return shstrObj, fmt.Errorf("nonsense self-closing bool, probably a bug, less likely bad xml")
} else if siCloseLoc == badPair {
return shstrObj, fmt.Errorf("close search: bad indices were found inspecting from index %d", runeIX)
}
//contentRunes := runesxml[siOpenLoc.last+1 : siCloseLoc.first]
//contentStr := strings.Replace(html.UnescapeString(string(contentRunes)), "\r", "", -1)
contentStr, err := zparseSharedStringConcat(runesxml, siOpenLoc.last+1, siCloseLoc.first-1)
if err != nil {
return shstrObj, err
}
ssh := sharedString{}
ssh.s = &contentStr
shstrObj.add(ssh)
runeIX = siCloseLoc.last
}
return shstrObj, nil
}
func zparseSharedStrings(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
// http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings
index := -1
for ix, rel := range zi.wkbkRels.Rels {
rx, _ := regexp.Compile(`.+officeDocument.+sharedStrings$`)
match := rx.Match([]byte(rel.Type))
if match {
index = ix
}
}
if index < 0 {
for ix, rel := range zi.wkbkRels.Rels {
rx, _ := regexp.Compile(`sharedStrings\.xml$`)
match := rx.Match([]byte(rel.Type))
if match {
index = ix
}
}
}
if index < 0 {
// this is not an error, sharedStrings are not required
return zi, nil
}
foundName := zi.wkbkRels.Rels[index].Target
if path.IsAbs(foundName) {
zi.sharedStringsName = removeLeadingSlash(foundName)
} else {
zi.sharedStringsName = joinWithWkbkPath(zi.wkbkName, zi.wkbkRels.Rels[index].Target)
}
zi.sharedStringsIndex = zfind(zr, zi.sharedStringsName)
if zi.sharedStringsIndex < 0 {
// this is an error because we found a rels entry for sharedStrings but could not find the file
return zi, fmt.Errorf("shared strings file '%sstrings' could not be found", zi.sharedStringsName)
}
zi.sharedStringsFile = zr.File[zi.sharedStringsIndex]
zi.sharedStrings = newSharedStrings()
fbuf := bytes.Buffer{}
fwrite := bufio.NewWriter(&fbuf)
ofile, err := zi.sharedStringsFile.Open()
if err != nil {
return zi, err
} else {
defer ofile.Close()
}
io.Copy(fwrite, ofile)
strxml := string(fbuf.Bytes())
runesxml := []rune(strxml)
shstrObj, err := zparseSharedStringsCore(runesxml)
if err != nil {
return zi, err
}
zi.sharedStrings = shstrObj
return zi, nil
}
func zparseWorkbook(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
xstruct := xmlprivate.Workbook{}
fbuf := bytes.Buffer{}
fwrite := bufio.NewWriter(&fbuf)
ofile, err := zi.wkbkFile.Open()
if err != nil {
return zi, err
} else {
defer ofile.Close()
}
io.Copy(fwrite, ofile)
err = xml.Unmarshal(fbuf.Bytes(), &xstruct)
if err != nil {
return zi, err
}
zi.wkbk = xstruct
return zi, nil
}
func zparseSheetMetadata(zr *zip.Reader, zi zinfo) (zout zinfo, err error) {
// Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet"
zi.sheetMeta = make([]sheetMeta, 0)
for _, rel := range zi.wkbkRels.Rels {
rx, _ := regexp.Compile(`/worksheet$`)
match := rx.Match([]byte(rel.Type))
if !match {
continue
}
relName := rel.Target
sh := sheetMeta{}
if path.IsAbs(relName) {
sh.sheetName = removeLeadingSlash(relName)
} else {
sh.sheetName = joinWithWkbkPath(zi.wkbkName, relName)
}
sh.fileIndex = zfind(zr, sh.sheetName)
if sh.fileIndex < 0 || sh.fileIndex >= len(zr.File) {
continue
}
sh.file = zr.File[sh.fileIndex]
// find the matching relID in the workbook
sheetIndex, wsh := zi.wkbk.FindSheetByRelID(rel.ID)
if sheetIndex < 0 {
continue
}
sh.sheetIndex = sheetIndex
sh.sheetName = wsh.Name
sh.relsID = wsh.RelsID
sh.sheetID = wsh.SheetID
zi.sheetMeta = append(zi.sheetMeta, sh)
}
sheetMetas(zi.sheetMeta).sort()
return zi, nil
}