package processor import ( "context" "errors" "io" "net/http" "github.com/jwetzell/showbridge-go/internal/config" ) type HTTPRequestEncode struct { config config.ProcessorConfig } func (hre *HTTPRequestEncode) Process(ctx context.Context, payload any) (any, error) { payloadRequest, ok := payload.(*http.Request) if !ok { return nil, errors.New("http.request.encode processor only accepts an http.Request") } bytes, err := io.ReadAll(payloadRequest.Body) if err != nil { return nil, err } return bytes, nil } func (hre *HTTPRequestEncode) Type() string { return hre.config.Type } func init() { RegisterProcessor(ProcessorRegistration{ Type: "http.request.encode", New: func(config config.ProcessorConfig) (Processor, error) { return &HTTPRequestEncode{config: config}, nil }, }) }