Upgrading server dependancies (#8154)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
8d66523ba7
Коммит
961c04cae9
79
vendor/github.com/olivere/elastic/request.go
сгенерированный
поставляемый
Обычный файл
79
vendor/github.com/olivere/elastic/request.go
сгенерированный
поставляемый
Обычный файл
@@ -0,0 +1,79 @@
|
||||
// Copyright 2012-present Oliver Eilhard. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-license.
|
||||
// See http://olivere.mit-license.org/license.txt for details.
|
||||
|
||||
package elastic
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"runtime"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Elasticsearch-specific HTTP request
|
||||
type Request http.Request
|
||||
|
||||
// NewRequest is a http.Request and adds features such as encoding the body.
|
||||
func NewRequest(method, url string) (*Request, error) {
|
||||
req, err := http.NewRequest(method, url, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
req.Header.Add("User-Agent", "elastic/"+Version+" ("+runtime.GOOS+"-"+runtime.GOARCH+")")
|
||||
req.Header.Add("Accept", "application/json")
|
||||
req.Header.Set("Content-Type", "application/json")
|
||||
return (*Request)(req), nil
|
||||
}
|
||||
|
||||
// SetBasicAuth wraps http.Request's SetBasicAuth.
|
||||
func (r *Request) SetBasicAuth(username, password string) {
|
||||
((*http.Request)(r)).SetBasicAuth(username, password)
|
||||
}
|
||||
|
||||
// SetBody encodes the body in the request.
|
||||
func (r *Request) SetBody(body interface{}) error {
|
||||
switch b := body.(type) {
|
||||
case string:
|
||||
return r.setBodyString(b)
|
||||
default:
|
||||
return r.setBodyJson(body)
|
||||
}
|
||||
}
|
||||
|
||||
// setBodyJson encodes the body as a struct to be marshaled via json.Marshal.
|
||||
func (r *Request) setBodyJson(data interface{}) error {
|
||||
body, err := json.Marshal(data)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
r.Header.Set("Content-Type", "application/json")
|
||||
r.setBodyReader(bytes.NewReader(body))
|
||||
return nil
|
||||
}
|
||||
|
||||
// setBodyString encodes the body as a string.
|
||||
func (r *Request) setBodyString(body string) error {
|
||||
return r.setBodyReader(strings.NewReader(body))
|
||||
}
|
||||
|
||||
// setBodyReader writes the body from an io.Reader.
|
||||
func (r *Request) setBodyReader(body io.Reader) error {
|
||||
rc, ok := body.(io.ReadCloser)
|
||||
if !ok && body != nil {
|
||||
rc = ioutil.NopCloser(body)
|
||||
}
|
||||
r.Body = rc
|
||||
if body != nil {
|
||||
switch v := body.(type) {
|
||||
case *strings.Reader:
|
||||
r.ContentLength = int64(v.Len())
|
||||
case *bytes.Buffer:
|
||||
r.ContentLength = int64(v.Len())
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Ссылка в новой задаче
Block a user