fiber/binder/resp_header.go
RW dd739687d3
Refactor fasthttp iter calls to range loops (#3559)
refactor: replace fastHTTP iter calls with for loops
2025-07-01 14:14:56 +02:00

43 lines
900 B
Go

package binder
import (
"github.com/gofiber/utils/v2"
"github.com/valyala/fasthttp"
)
// RespHeaderBinding is the respHeader binder for response header.
type RespHeaderBinding struct {
EnableSplitting bool
}
// Name returns the binding name.
func (*RespHeaderBinding) Name() string {
return "respHeader"
}
// Bind parses the response header and returns the result.
func (b *RespHeaderBinding) Bind(resp *fasthttp.Response, out any) error {
data := make(map[string][]string)
var err error
for key, val := range resp.Header.All() {
k := utils.UnsafeString(key)
v := utils.UnsafeString(val)
err = formatBindData(b.Name(), out, data, k, v, b.EnableSplitting, false)
if err != nil {
break
}
}
if err != nil {
return err
}
return parse(b.Name(), out, data)
}
// Reset resets the RespHeaderBinding binder.
func (b *RespHeaderBinding) Reset() {
b.EnableSplitting = false
}