micro-client-grpc/error.go

45 lines
748 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
package grpc
import (
"go.unistack.org/micro/v3/errors"
2019-06-03 20:44:43 +03:00
"google.golang.org/grpc/status"
)
func microError(err error) error {
// no error
if err == nil {
2019-06-03 20:44:43 +03:00
return nil
}
if verr, ok := err.(*errors.Error); ok {
return verr
2019-06-03 20:44:43 +03:00
}
// grpc error
s, ok := status.FromError(err)
if !ok {
return err
2019-06-03 20:44:43 +03:00
}
// return first error from details
if details := s.Details(); len(details) > 0 {
2020-07-20 12:04:51 +03:00
if verr, ok := details[0].(error); ok {
return microError(verr)
}
}
// try to decode micro *errors.Error
if e := errors.Parse(s.Message()); e.Code > 0 {
return e // actually a micro error
}
// fallback
return &errors.Error{
ID: "go.micro.client",
Code: int32(s.Code()),
Detail: s.Message(),
Status: s.Code().String(),
}
2019-06-03 20:44:43 +03:00
}