package validators import ( "errors" "repository.basistech.ru/BASIS/decort-golang-sdk/internal/multierror" "github.com/go-playground/validator/v10" ) func ValidateRequest(req interface{}) error { validate := getDecortValidator() return validate.Struct(req) } func ValidateConfig(cfg interface{}) error { validate := getDecortValidator() return validate.Struct(cfg) } func ValidationError(fe validator.FieldError) error { return errors.New(errorMessage(fe)) } func ValidationErrors(fes []validator.FieldError) error { errs := make([]error, 0, len(fes)) for _, fe := range fes { errs = append(errs, ValidationError(fe)) } return multierror.Join(errs...) } //nolint:errorlint func GetErrors(err error) validator.ValidationErrors { return err.(validator.ValidationErrors) } func StringInSlice(str string, target []string) bool { for _, v := range target { if v == str { return true } } return false }