Giter Club home page Giter Club logo

Comments (2)

tocomp avatar tocomp commented on August 28, 2024

Thanks, I found a way to convert ValidationError

from protovalidate-go.

sosyz avatar sosyz commented on August 28, 2024

in the package has this comments

// A ValidationError is returned if one or more constraints on a message are
// violated. This error type can be converted into a validate.Violations
// message via ToProto.
//
//    err = validator.Validate(msg)
//    var valErr *ValidationError
//    if ok := errors.As(err, &valErr); ok {
//      pb := valErr.ToProto()
//      // ...
//    }
ValidationError = errors.ValidationError

so I wrote the code based on this comments

if err := v.Validate(pr); err != nil {
	var valErr *protovalidate.ValidationError
	if ok := errors.As(err, &valErr); ok {
		return nil, errors.New(
			400,
			"0",
			valErr.ToProto().GetViolations()[0].GetMessage(), // I not check the err length
		)
	}

	return nil, err
}

It's working! The API returns the error message

{
    "code": 400,
    "reason": "0",
    "message": "xxxxxxxxxxxxxxxxxxxxxxxx",
}

Maybe we should add a check for the error length?

from protovalidate-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.