2012-09-21 08:58:29 +08:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
2012-09-26 18:27:10 +08:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2013-01-17 16:56:56 +08:00
|
|
|
"errors"
|
2013-07-12 10:14:55 +08:00
|
|
|
"fmt"
|
2012-09-26 18:27:10 +08:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2013-07-12 10:14:55 +08:00
|
|
|
"mime"
|
2012-09-26 18:27:10 +08:00
|
|
|
"mime/multipart"
|
|
|
|
"net/http"
|
2013-07-12 10:14:55 +08:00
|
|
|
"net/textproto"
|
|
|
|
"path/filepath"
|
2013-07-12 12:16:54 +08:00
|
|
|
"strings"
|
2019-01-10 19:42:31 +08:00
|
|
|
"time"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2016-06-03 09:09:14 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2012-09-21 08:58:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type UploadResult struct {
|
2014-04-16 01:01:13 +08:00
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
Size uint32 `json:"size,omitempty"`
|
|
|
|
Error string `json:"error,omitempty"`
|
2019-01-03 04:57:54 +08:00
|
|
|
ETag string `json:"eTag,omitempty"`
|
2012-09-21 08:58:29 +08:00
|
|
|
}
|
|
|
|
|
2014-03-13 05:07:01 +08:00
|
|
|
var (
|
|
|
|
client *http.Client
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-01-10 19:42:31 +08:00
|
|
|
client = &http.Client{
|
|
|
|
Transport: &http.Transport{MaxIdleConnsPerHost: 1024},
|
|
|
|
Timeout: 5 * time.Second,
|
|
|
|
}
|
2014-03-13 05:07:01 +08:00
|
|
|
}
|
|
|
|
|
2013-07-16 08:26:00 +08:00
|
|
|
var fileNameEscaper = strings.NewReplacer("\\", "\\\\", "\"", "\\\"")
|
|
|
|
|
2018-11-04 13:32:21 +08:00
|
|
|
// Upload sends a POST request to a volume server to upload the content
|
2017-01-08 22:34:26 +08:00
|
|
|
func Upload(uploadUrl string, filename string, reader io.Reader, isGzipped bool, mtype string, pairMap map[string]string, jwt security.EncodedJwt) (*UploadResult, error) {
|
2013-08-14 14:26:51 +08:00
|
|
|
return upload_content(uploadUrl, func(w io.Writer) (err error) {
|
|
|
|
_, err = io.Copy(w, reader)
|
|
|
|
return
|
2017-01-08 22:34:26 +08:00
|
|
|
}, filename, isGzipped, mtype, pairMap, jwt)
|
2013-08-14 14:26:51 +08:00
|
|
|
}
|
2017-01-08 22:34:26 +08:00
|
|
|
func upload_content(uploadUrl string, fillBufferFunction func(w io.Writer) error, filename string, isGzipped bool, mtype string, pairMap map[string]string, jwt security.EncodedJwt) (*UploadResult, error) {
|
2012-09-26 18:27:10 +08:00
|
|
|
body_buf := bytes.NewBufferString("")
|
|
|
|
body_writer := multipart.NewWriter(body_buf)
|
2013-07-12 10:14:55 +08:00
|
|
|
h := make(textproto.MIMEHeader)
|
2013-07-16 08:26:00 +08:00
|
|
|
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="file"; filename="%s"`, fileNameEscaper.Replace(filename)))
|
2013-07-30 01:09:36 +08:00
|
|
|
if mtype == "" {
|
|
|
|
mtype = mime.TypeByExtension(strings.ToLower(filepath.Ext(filename)))
|
|
|
|
}
|
2013-08-14 14:26:51 +08:00
|
|
|
if mtype != "" {
|
|
|
|
h.Set("Content-Type", mtype)
|
|
|
|
}
|
2013-07-16 02:04:43 +08:00
|
|
|
if isGzipped {
|
|
|
|
h.Set("Content-Encoding", "gzip")
|
|
|
|
}
|
2015-02-08 07:35:28 +08:00
|
|
|
if jwt != "" {
|
|
|
|
h.Set("Authorization", "BEARER "+string(jwt))
|
|
|
|
}
|
2017-01-08 09:16:29 +08:00
|
|
|
|
2014-03-13 06:17:23 +08:00
|
|
|
file_writer, cp_err := body_writer.CreatePart(h)
|
|
|
|
if cp_err != nil {
|
|
|
|
glog.V(0).Infoln("error creating form file", cp_err.Error())
|
|
|
|
return nil, cp_err
|
2013-02-27 14:54:22 +08:00
|
|
|
}
|
2014-03-13 06:17:23 +08:00
|
|
|
if err := fillBufferFunction(file_writer); err != nil {
|
2013-08-09 14:57:22 +08:00
|
|
|
glog.V(0).Infoln("error copying data", err)
|
2013-02-27 14:54:22 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-07-10 15:27:01 +08:00
|
|
|
content_type := body_writer.FormDataContentType()
|
2014-03-13 06:17:23 +08:00
|
|
|
if err := body_writer.Close(); err != nil {
|
2013-08-09 14:57:22 +08:00
|
|
|
glog.V(0).Infoln("error closing body", err)
|
2013-02-27 14:54:22 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-08 09:16:29 +08:00
|
|
|
|
|
|
|
req, postErr := http.NewRequest("POST", uploadUrl, body_buf)
|
|
|
|
if postErr != nil {
|
|
|
|
glog.V(0).Infoln("failing to upload to", uploadUrl, postErr.Error())
|
|
|
|
return nil, postErr
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", content_type)
|
|
|
|
for k, v := range pairMap {
|
|
|
|
req.Header.Set(k, v)
|
|
|
|
}
|
|
|
|
resp, post_err := client.Do(req)
|
2014-03-13 06:17:23 +08:00
|
|
|
if post_err != nil {
|
|
|
|
glog.V(0).Infoln("failing to upload to", uploadUrl, post_err.Error())
|
|
|
|
return nil, post_err
|
2012-09-26 18:27:10 +08:00
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
2018-12-05 14:06:16 +08:00
|
|
|
|
|
|
|
if resp.StatusCode < http.StatusOK ||
|
|
|
|
resp.StatusCode > http.StatusIMUsed {
|
|
|
|
return nil, errors.New(http.StatusText(resp.StatusCode))
|
|
|
|
}
|
|
|
|
|
2018-09-23 13:12:21 +08:00
|
|
|
etag := getEtag(resp)
|
2014-03-13 06:17:23 +08:00
|
|
|
resp_body, ra_err := ioutil.ReadAll(resp.Body)
|
|
|
|
if ra_err != nil {
|
|
|
|
return nil, ra_err
|
2012-09-26 18:27:10 +08:00
|
|
|
}
|
|
|
|
var ret UploadResult
|
2014-03-13 06:17:23 +08:00
|
|
|
unmarshal_err := json.Unmarshal(resp_body, &ret)
|
|
|
|
if unmarshal_err != nil {
|
2017-01-08 09:16:29 +08:00
|
|
|
glog.V(0).Infoln("failing to read upload response", uploadUrl, string(resp_body))
|
2014-03-13 06:17:23 +08:00
|
|
|
return nil, unmarshal_err
|
2012-09-26 18:27:10 +08:00
|
|
|
}
|
2013-01-17 16:56:56 +08:00
|
|
|
if ret.Error != "" {
|
|
|
|
return nil, errors.New(ret.Error)
|
2012-09-27 05:28:46 +08:00
|
|
|
}
|
2018-09-23 13:12:21 +08:00
|
|
|
ret.ETag = etag
|
2012-09-26 18:27:10 +08:00
|
|
|
return &ret, nil
|
2012-09-21 08:58:29 +08:00
|
|
|
}
|
2018-09-23 13:12:21 +08:00
|
|
|
|
|
|
|
func getEtag(r *http.Response) (etag string) {
|
|
|
|
etag = r.Header.Get("ETag")
|
|
|
|
if strings.HasPrefix(etag, "\"") && strings.HasSuffix(etag, "\"") {
|
|
|
|
etag = etag[1 : len(etag)-1]
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|