package processor import ( "context" "errors" freeD "github.com/jwetzell/free-d-go" "github.com/jwetzell/showbridge-go/internal/common" "github.com/jwetzell/showbridge-go/internal/config" ) type FreeDDecode struct { config config.ProcessorConfig } func (fd *FreeDDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) { payload := wrappedPayload.Payload payloadBytes, ok := common.GetAnyAsByteSlice(payload) if !ok { wrappedPayload.End = true return wrappedPayload, errors.New("freed.decode processor only accepts a []byte") } payloadMessage, err := freeD.Decode(payloadBytes) if err != nil { wrappedPayload.End = true return wrappedPayload, err } wrappedPayload.Payload = payloadMessage return wrappedPayload, nil } func (fd *FreeDDecode) Type() string { return fd.config.Type } func init() { RegisterProcessor(ProcessorRegistration{ Type: "freed.decode", New: func(config config.ProcessorConfig) (Processor, error) { return &FreeDDecode{config: config}, nil }, }) }