mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-01 21:22:21 +00:00
* feat(cbor): allow encoding response bodies in cbor * fix(tests::cbor): encode struct instead of a randomly ordered hashmap * docs(whats_new): add cbor in context section * feat(binder): introduce CBOR * feat(client): allow cbor in fiber client * chore(tests): add more test * chore(packages): go mod tidy * fix(binder): update CBOR name and test * improve test coverage * improve test coverage * update1 * add docs * doc fixes * update * Fix markdown lint * Add missing entry from binder README * add/refresh documentation --------- Co-authored-by: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Co-authored-by: M. Efe Çetin <efectn@protonmail.com> Co-authored-by: RW <rene@gofiber.io>
38 lines
848 B
Go
38 lines
848 B
Go
package binder
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/gofiber/utils/v2"
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
// headerBinding is the header binder for header request body.
|
|
type headerBinding struct{}
|
|
|
|
// Name returns the binding name.
|
|
func (*headerBinding) Name() string {
|
|
return "header"
|
|
}
|
|
|
|
// Bind parses the request header and returns the result.
|
|
func (b *headerBinding) Bind(req *fasthttp.Request, out any) error {
|
|
data := make(map[string][]string)
|
|
req.Header.VisitAll(func(key, val []byte) {
|
|
k := utils.UnsafeString(key)
|
|
v := utils.UnsafeString(val)
|
|
|
|
if strings.Contains(v, ",") && equalFieldType(out, reflect.Slice, k) {
|
|
values := strings.Split(v, ",")
|
|
for i := 0; i < len(values); i++ {
|
|
data[k] = append(data[k], values[i])
|
|
}
|
|
} else {
|
|
data[k] = append(data[k], v)
|
|
}
|
|
})
|
|
|
|
return parse(b.Name(), out, data)
|
|
}
|