Files
argo-cd/util/grpc/json.go
Matthieu MOREL 9ea979bbcd chore: enable use-any from revive (#21282)
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
2025-01-02 18:26:59 -05:00

46 lines
1.1 KiB
Go

package grpc
import (
"encoding/json"
"io"
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
)
// JSONMarshaler is a type which satisfies the grpc-gateway Marshaler interface
type JSONMarshaler struct{}
// ContentType implements gwruntime.Marshaler.
func (j *JSONMarshaler) ContentType() string {
return "application/json"
}
// Marshal implements gwruntime.Marshaler.
func (j *JSONMarshaler) Marshal(v any) ([]byte, error) {
return json.Marshal(v)
}
// NewDecoder implements gwruntime.Marshaler.
func (j *JSONMarshaler) NewDecoder(r io.Reader) gwruntime.Decoder {
return json.NewDecoder(r)
}
// NewEncoder implements gwruntime.Marshaler.
func (j *JSONMarshaler) NewEncoder(w io.Writer) gwruntime.Encoder {
return json.NewEncoder(w)
}
// Unmarshal implements gwruntime.Marshaler.
func (j *JSONMarshaler) Unmarshal(data []byte, v any) error {
return json.Unmarshal(data, v)
}
// MustMarshal is a convenience function to marshal an object successfully or panic
func MustMarshal(v any) []byte {
bytes, err := json.Marshal(v)
if err != nil {
panic(err)
}
return bytes
}