mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
a156188b3e
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package binding
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin/internal/json"
|
|
)
|
|
|
|
// EnableDecoderUseNumber is used to call the UseNumber method on the JSON
|
|
// Decoder instance. UseNumber causes the Decoder to unmarshal a number into an
|
|
// interface{} as a Number instead of as a float64.
|
|
var EnableDecoderUseNumber = false
|
|
|
|
// EnableDecoderDisallowUnknownFields is used to call the DisallowUnknownFields method
|
|
// on the JSON Decoder instance. DisallowUnknownFields causes the Decoder to
|
|
// return an error when the destination is a struct and the input contains object
|
|
// keys which do not match any non-ignored, exported fields in the destination.
|
|
var EnableDecoderDisallowUnknownFields = false
|
|
|
|
type jsonBinding struct{}
|
|
|
|
func (jsonBinding) Name() string {
|
|
return "json"
|
|
}
|
|
|
|
func (jsonBinding) Bind(req *http.Request, obj any) error {
|
|
if req == nil || req.Body == nil {
|
|
return errors.New("invalid request")
|
|
}
|
|
return decodeJSON(req.Body, obj)
|
|
}
|
|
|
|
func (jsonBinding) BindBody(body []byte, obj any) error {
|
|
return decodeJSON(bytes.NewReader(body), obj)
|
|
}
|
|
|
|
func decodeJSON(r io.Reader, obj any) error {
|
|
decoder := json.NewDecoder(r)
|
|
if EnableDecoderUseNumber {
|
|
decoder.UseNumber()
|
|
}
|
|
if EnableDecoderDisallowUnknownFields {
|
|
decoder.DisallowUnknownFields()
|
|
}
|
|
if err := decoder.Decode(obj); err != nil {
|
|
return err
|
|
}
|
|
return validate(obj)
|
|
}
|