Files
zot/pkg/extensions/config/events/decoder.go
T
Andrei Aaron da426850e7 chore: update golangci-lint and fix all issues (#3575)
* chore: Update golangci-lint

Signed-off-by: Lars Francke <git@lars-francke.de>

* chore: fix all golangci-lint issues

- Remove deprecated `// +build` tags
- Fix godoclint, modernize, wsl_v5, govet, lll, gci, noctx issues
- Update linter configuration
- Modernize code to use Go 1.22+ features (for range N, slices.Contains, etc.)
- Update make check lint the privileged tests

Signed-off-by: Andrei Aaron <andreifdaaron@gmail.com>

---------

Signed-off-by: Lars Francke <git@lars-francke.de>
Signed-off-by: Andrei Aaron <andreifdaaron@gmail.com>
Co-authored-by: Lars Francke <git@lars-francke.de>
2025-11-22 23:36:48 +02:00

53 lines
1.1 KiB
Go

package events
import (
"reflect"
"github.com/mitchellh/mapstructure"
zerr "zotregistry.dev/zot/v2/errors"
)
// SinkConfigDecoderHook provides a mapstructure hook for decoding SinkConfig interfaces.
func SinkConfigDecoderHook() mapstructure.DecodeHookFunc {
return func(_ reflect.Type, target reflect.Type, data any) (any, error) {
// Only apply this hook when converting to SinkConfig
if target.Name() != "SinkConfig" {
return data, nil
}
if target != reflect.TypeFor[SinkConfig]() {
return data, nil
}
dataMap, ok := data.(map[string]any)
if !ok {
return data, nil
}
config := &SinkConfig{}
decoderConfig := &mapstructure.DecoderConfig{
DecodeHook: mapstructure.StringToTimeDurationHookFunc(),
Result: config,
WeaklyTypedInput: true,
TagName: "mapstructure",
}
decoder, err := mapstructure.NewDecoder(decoderConfig)
if err != nil {
return nil, err
}
if err := decoder.Decode(dataMap); err != nil {
return nil, err
}
if !IsSupportedSink(config.Type) {
return nil, zerr.ErrUnsupportedEventSink
}
return config, nil
}
}