mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
47 lines
1.5 KiB
Go
47 lines
1.5 KiB
Go
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
//
|
|
// This software (Documize Community Edition) is licensed under
|
|
// 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
|
|
// by contacting <sales@documize.com>.
|
|
//
|
|
// https://documize.com
|
|
|
|
package documize
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/documize/community/core/api/entity"
|
|
api "github.com/documize/community/core/convapi"
|
|
)
|
|
|
|
// LoadData uploads and converts the raw data comprising a Documize document into Documize, returning a fileID and error.
|
|
func (c *Client) LoadData(folderID, docName string, docData *api.DocumentConversionResponse) (*entity.Document, error) {
|
|
if len(docData.PagesHTML) == 0 && len(docData.Pages) == 0 {
|
|
return nil, errors.New("no data to load") // NOTE attachements must have a base document
|
|
}
|
|
for _, att := range docData.EmbeddedFiles {
|
|
if !strings.HasSuffix(strings.ToLower(att.Name), "."+strings.ToLower(att.Type)) {
|
|
return nil, errors.New("attachment " + att.Name + " does not have the extention " + att.Type)
|
|
}
|
|
}
|
|
buf, err := json.Marshal(*docData)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cv, err := c.upload(folderID, docName+".documizeapi", bytes.NewReader(buf))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
//cv, err := c.convert(folderID, job, nil)
|
|
//if err != nil {
|
|
// return nil, err
|
|
//}
|
|
return cv, nil
|
|
}
|