forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docbase.go
64 lines (55 loc) · 1.8 KB
/
docbase.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
// Copyright 2017 FoxyUtils ehf. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased on https://unidoc.io.
package common
import (
"archive/zip"
"fmt"
"image"
"github.com/unidoc/unioffice/zippkg"
)
// DocBase is the type embedded in in the Document/Workbook/Presentation types
// that contains members common to all.
type DocBase struct {
ContentTypes ContentTypes
AppProperties AppProperties
Rels Relationships
CoreProperties CoreProperties
CustomProperties CustomProperties
Thumbnail image.Image // thumbnail preview of the document
Images []ImageRef
ExtraFiles []ExtraFile
TmpPath string // path where temporary files are stored when opening documents
}
// AddExtraFileFromZip is used when reading an unsupported file from an OOXML
// file. This ensures that unsupported file content will at least round-trip
// correctly.
func (d *DocBase) AddExtraFileFromZip(f *zip.File) error {
path, err := zippkg.ExtractToDiskTmp(f, d.TmpPath)
if err != nil {
return fmt.Errorf("error extracting unsupported file: %s", err)
}
d.ExtraFiles = append(d.ExtraFiles, ExtraFile{
ZipPath: f.Name,
DiskPath: path,
})
return nil
}
// WriteExtraFiles writes the extra files to the zip package.
func (d *DocBase) WriteExtraFiles(z *zip.Writer) error {
for _, ef := range d.ExtraFiles {
if err := zippkg.AddFileFromDisk(z, ef.ZipPath, ef.DiskPath); err != nil {
return err
}
}
return nil
}
// ExtraFile is an unsupported file type extracted from, or to be written to a
// zip package
type ExtraFile struct {
ZipPath string
DiskPath string
}