2016-07-07 18:54:16 -07:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
2016-07-20 15:58:37 +01:00
|
|
|
// This software (Documize Community Edition) is licensed under
|
2016-07-07 18:54:16 -07:00
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
2016-07-20 15:58:37 +01:00
|
|
|
// by contacting <sales@documize.com>.
|
2016-07-07 18:54:16 -07:00
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
2016-07-20 15:58:37 +01:00
|
|
|
// Package convapi provides the defininitions of types used for file conversion communication between different components of the Documize system.
|
|
|
|
package convapi
|
2016-07-07 18:54:16 -07:00
|
|
|
|
|
|
|
// DocumentConversionRequest is what is passed to a Convert plugin.
|
|
|
|
type DocumentConversionRequest struct {
|
|
|
|
Filename string
|
|
|
|
Filedata []byte
|
|
|
|
PageBreakLevel uint
|
|
|
|
Token string // authorisation token
|
|
|
|
}
|
|
|
|
|
|
|
|
// Page holds the contents of a Documize page,
|
|
|
|
// which is a Body of html with a Title and a Level,
|
|
|
|
type Page struct {
|
|
|
|
Level uint64 // overall document is level 1, <H1> => level 2
|
|
|
|
Title string
|
|
|
|
Body []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// EmbeddedFile holds the contents of an embedded file.
|
|
|
|
type EmbeddedFile struct {
|
|
|
|
ID, Type, Name string // name must have the same extension as the type e.g. Type="txt" Name="foo.txt"
|
|
|
|
Data []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocumentConversionResponse is the response from a Convert plugin.
|
|
|
|
type DocumentConversionResponse struct {
|
|
|
|
Err string
|
|
|
|
PagesHTML []byte // If empty, use Pages
|
|
|
|
Pages []Page
|
|
|
|
EmbeddedFiles []EmbeddedFile
|
|
|
|
Excerpt string
|
|
|
|
}
|