2019-07-01 06:07:58 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-05-24 03:16:34 +08:00
|
|
|
package requestbody
|
|
|
|
|
|
|
|
import (
|
2022-03-12 03:34:55 +08:00
|
|
|
"io"
|
2019-05-24 03:16:34 +08:00
|
|
|
"net/http"
|
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
2019-05-24 03:16:34 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-22 00:46:35 +08:00
|
|
|
caddy.RegisterModule(RequestBody{})
|
2019-05-24 03:16:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// RequestBody is a middleware for manipulating the request body.
|
|
|
|
type RequestBody struct {
|
2019-12-24 03:45:35 +08:00
|
|
|
// The maximum number of bytes to allow reading from the body by a later handler.
|
2022-03-12 03:34:55 +08:00
|
|
|
// If more bytes are read, an error with HTTP status 413 is returned.
|
2019-05-24 03:16:34 +08:00
|
|
|
MaxSize int64 `json:"max_size,omitempty"`
|
|
|
|
}
|
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
// CaddyModule returns the Caddy module information.
|
|
|
|
func (RequestBody) CaddyModule() caddy.ModuleInfo {
|
|
|
|
return caddy.ModuleInfo{
|
2020-03-25 00:37:47 +08:00
|
|
|
ID: "http.handlers.request_body",
|
2019-12-11 04:36:46 +08:00
|
|
|
New: func() caddy.Module { return new(RequestBody) },
|
2019-08-22 00:46:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-24 03:16:34 +08:00
|
|
|
func (rb RequestBody) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
|
|
|
if r.Body == nil {
|
|
|
|
return next.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
if rb.MaxSize > 0 {
|
2022-03-12 03:34:55 +08:00
|
|
|
r.Body = errorWrapper{http.MaxBytesReader(w, r.Body, rb.MaxSize)}
|
2019-05-24 03:16:34 +08:00
|
|
|
}
|
|
|
|
return next.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2022-03-12 03:34:55 +08:00
|
|
|
// errorWrapper wraps errors that are returned from Read()
|
|
|
|
// so that they can be associated with a proper status code.
|
|
|
|
type errorWrapper struct {
|
|
|
|
io.ReadCloser
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ew errorWrapper) Read(p []byte) (n int, err error) {
|
|
|
|
n, err = ew.ReadCloser.Read(p)
|
|
|
|
if err != nil && err.Error() == "http: request body too large" {
|
|
|
|
err = caddyhttp.Error(http.StatusRequestEntityTooLarge, err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-24 03:16:34 +08:00
|
|
|
// Interface guard
|
|
|
|
var _ caddyhttp.MiddlewareHandler = (*RequestBody)(nil)
|