Using io.LimitReader as the way to control size of request body with respect to content length

This commit is contained in:
Denis Makogon
2017-09-26 18:16:44 +03:00
parent ecaa5eefbf
commit 3da9ad4328

View File

@@ -6,6 +6,7 @@ import (
"fmt" "fmt"
"io" "io"
"net/http" "net/http"
"strconv"
) )
// JSONInput is what's sent into the function // JSONInput is what's sent into the function
@@ -32,13 +33,18 @@ func (p *JSONProtocol) IsStreamable() bool {
} }
func (h *JSONProtocol) Dispatch(w io.Writer, req *http.Request) error { func (h *JSONProtocol) Dispatch(w io.Writer, req *http.Request) error {
// TODO content-length or chunked encoding
var body bytes.Buffer var body bytes.Buffer
if req.Body != nil { if req.Body != nil {
var dest io.Writer = &body var dest io.Writer = &body
// TODO copy w/ ctx and check err // TODO copy w/ ctx
io.Copy(dest, req.Body) nBytes, _ := strconv.ParseInt(
req.Header.Get("Content-Length"), 10, 64)
_, err := io.Copy(dest, io.LimitReader(req.Body, nBytes))
if err != nil {
// TODO: maybe mask this error if favour of something different
return err
}
} }
// convert to JSON func format // convert to JSON func format