Vasiliy Tolstov
06136312bb
* regen files with never protoc * rewrite import path Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
34 lines
913 B
Go
34 lines
913 B
Go
package grpc
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/unistack-org/micro/v3/errors"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
var errMapping = map[int32]codes.Code{
|
|
http.StatusOK: codes.OK,
|
|
http.StatusBadRequest: codes.InvalidArgument,
|
|
http.StatusRequestTimeout: codes.DeadlineExceeded,
|
|
http.StatusNotFound: codes.NotFound,
|
|
http.StatusConflict: codes.AlreadyExists,
|
|
http.StatusForbidden: codes.PermissionDenied,
|
|
http.StatusUnauthorized: codes.Unauthenticated,
|
|
http.StatusPreconditionFailed: codes.FailedPrecondition,
|
|
http.StatusNotImplemented: codes.Unimplemented,
|
|
http.StatusInternalServerError: codes.Internal,
|
|
http.StatusServiceUnavailable: codes.Unavailable,
|
|
}
|
|
|
|
func microError(err *errors.Error) codes.Code {
|
|
if err == nil {
|
|
return codes.OK
|
|
}
|
|
|
|
if code, ok := errMapping[err.Code]; ok {
|
|
return code
|
|
}
|
|
return codes.Unknown
|
|
}
|