| 1234567891011121314151617181920212223242526272829303132333435 |
- package binder
- import (
- "github.com/gofiber/utils/v2"
- "github.com/valyala/fasthttp"
- )
- // HeaderBinding is the binder implementation used to populate values from HTTP headers.
- type HeaderBinding struct {
- EnableSplitting bool
- }
- // 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)
- for key, val := range req.Header.All() {
- k := utils.UnsafeString(key)
- v := utils.UnsafeString(val)
- if err := formatBindData(b.Name(), out, data, k, v, b.EnableSplitting, false); err != nil {
- return err
- }
- }
- return parse(b.Name(), out, data)
- }
- // Reset resets the HeaderBinding binder.
- func (b *HeaderBinding) Reset() {
- b.EnableSplitting = false
- }
|