2016-07-07 18:54:16 -07:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
2016-10-17 14:00:06 -07: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-10-17 14:00:06 -07:00
|
|
|
// by contacting <sales@documize.com>.
|
2016-07-07 18:54:16 -07:00
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
package documize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"strings"
|
|
|
|
|
2016-07-20 15:58:37 +01:00
|
|
|
"github.com/documize/community/core/api/entity"
|
2016-10-17 14:00:06 -07:00
|
|
|
api "github.com/documize/community/core/convapi"
|
2016-07-07 18:54:16 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|