Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
package docconv
|
|
|
|
import (
|
|
"archive/zip"
|
|
"bufio"
|
|
"bytes"
|
|
"encoding/binary"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
TSP "code.sajari.com/docconv/v2/iWork"
|
|
"code.sajari.com/docconv/v2/snappy"
|
|
)
|
|
|
|
// ConvertPages converts a Pages file to text.
|
|
func ConvertPages(r io.Reader) (string, map[string]string, error) {
|
|
meta := make(map[string]string)
|
|
var textBody string
|
|
|
|
b, err := io.ReadAll(io.LimitReader(r, maxBytes))
|
|
if err != nil {
|
|
return "", nil, fmt.Errorf("error reading data: %v", err)
|
|
}
|
|
|
|
zr, err := zip.NewReader(bytes.NewReader(b), int64(len(b)))
|
|
if err != nil {
|
|
return "", nil, fmt.Errorf("error unzipping data: %v", err)
|
|
}
|
|
|
|
for _, f := range zr.File {
|
|
if strings.HasSuffix(f.Name, "Preview.pdf") {
|
|
// There is a preview PDF version we can use
|
|
if rc, err := f.Open(); err == nil {
|
|
return ConvertPDF(rc)
|
|
}
|
|
}
|
|
if f.Name == "index.xml" {
|
|
// There's an XML version we can use
|
|
if rc, err := f.Open(); err == nil {
|
|
return ConvertXML(rc)
|
|
}
|
|
}
|
|
if f.Name == "Index/Document.iwa" {
|
|
rc, _ := f.Open()
|
|
defer rc.Close()
|
|
bReader := bufio.NewReader(snappy.NewReader(io.MultiReader(strings.NewReader("\xff\x06\x00\x00sNaPpY"), rc)))
|
|
|
|
// Ignore error.
|
|
// NOTE: This error was unchecked. Need to revisit this to see if it
|
|
// should be acted on.
|
|
archiveLength, _ := binary.ReadVarint(bReader)
|
|
|
|
// Ignore error.
|
|
// NOTE: This error was unchecked. Need to revisit this to see if it
|
|
// should be acted on.
|
|
archiveInfoData, _ := io.ReadAll(io.LimitReader(bReader, archiveLength))
|
|
|
|
archiveInfo := &TSP.ArchiveInfo{}
|
|
err = proto.Unmarshal(archiveInfoData, archiveInfo)
|
|
fmt.Println("archiveInfo:", archiveInfo, err)
|
|
}
|
|
}
|
|
|
|
return textBody, meta, nil
|
|
}
|