mirror of
https://github.com/documize/community.git
synced 2025-07-19 05:09:42 +02:00
initial commit
This commit is contained in:
commit
18933c6767
1841 changed files with 810642 additions and 0 deletions
47
sdk/loaddata.go
Normal file
47
sdk/loaddata.go
Normal file
|
@ -0,0 +1,47 @@
|
|||
// 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/wordsmith/api"
|
||||
"github.com/documize/community/documize/api/entity"
|
||||
)
|
||||
|
||||
// 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue