unioffice/common/docbase.go
Vyacheslav Zgordan dd7713e1e3 Functions2 (#348)
* MATCH, IFS, MAXA, MINA
* OFFSET fixed
* ISBLANK, ISERR, ISERROR, ISEVEN ,ISFORMULA, ISNONTEXT, ISNUMBER, ISODD, ISTEXT
* ISLEAPYEAR, ISLOGICAL, ISNA, ISREF
* FIND, FINDB
* SEARCH, SEARCHB
* CONCAT, CONCATENATE
* YEAR, YEARFRAC
* CONCAT is fixed, now TRUE and FALSE are concatenated instead of 1 and 0 in case of boolean results
* NOW, TODAY, TIME, TIMEVALUE
* DATE
* DATEDIF
2019-11-20 23:21:00 +00:00

65 lines
1.8 KiB
Go

// 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
}