Add user-service generated-code
This commit is contained in:
75
examples/go-kit/services/user/gen/transports/grpc/grpc.go
Normal file
75
examples/go-kit/services/user/gen/transports/grpc/grpc.go
Normal file
@@ -0,0 +1,75 @@
|
||||
package user_grpctransport
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
grpctransport "github.com/go-kit/kit/transport/grpc"
|
||||
endpoint "github.com/moul/protoc-gen-gotemplate/examples/go-kit/services/user/gen/endpoints"
|
||||
pb "github.com/moul/protoc-gen-gotemplate/examples/go-kit/services/user/gen/pb"
|
||||
context "golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// avoid import errors
|
||||
var _ = fmt.Errorf
|
||||
|
||||
func MakeGRPCServer(ctx context.Context, endpoints endpoint.Endpoints) pb.UserServiceServer {
|
||||
options := []grpctransport.ServerOption{}
|
||||
return &grpcServer{
|
||||
|
||||
createuser: grpctransport.NewServer(
|
||||
ctx,
|
||||
endpoints.CreateUserEndpoint,
|
||||
decodeCreateUserRequest,
|
||||
encodeCreateUserResponse,
|
||||
options...,
|
||||
),
|
||||
|
||||
getuser: grpctransport.NewServer(
|
||||
ctx,
|
||||
endpoints.GetUserEndpoint,
|
||||
decodeGetUserRequest,
|
||||
encodeGetUserResponse,
|
||||
options...,
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
type grpcServer struct {
|
||||
createuser grpctransport.Handler
|
||||
|
||||
getuser grpctransport.Handler
|
||||
}
|
||||
|
||||
func (s *grpcServer) CreateUser(ctx context.Context, req *pb.CreateUserRequest) (*pb.CreateUserResponse, error) {
|
||||
_, rep, err := s.createuser.ServeGRPC(ctx, req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return rep.(*pb.CreateUserResponse), nil
|
||||
}
|
||||
|
||||
func decodeCreateUserRequest(ctx context.Context, grpcReq interface{}) (interface{}, error) {
|
||||
return grpcReq, nil
|
||||
}
|
||||
|
||||
func encodeCreateUserResponse(ctx context.Context, response interface{}) (interface{}, error) {
|
||||
resp := response.(*pb.CreateUserResponse)
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
func (s *grpcServer) GetUser(ctx context.Context, req *pb.GetUserRequest) (*pb.GetUserResponse, error) {
|
||||
_, rep, err := s.getuser.ServeGRPC(ctx, req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return rep.(*pb.GetUserResponse), nil
|
||||
}
|
||||
|
||||
func decodeGetUserRequest(ctx context.Context, grpcReq interface{}) (interface{}, error) {
|
||||
return grpcReq, nil
|
||||
}
|
||||
|
||||
func encodeGetUserResponse(ctx context.Context, response interface{}) (interface{}, error) {
|
||||
resp := response.(*pb.GetUserResponse)
|
||||
return resp, nil
|
||||
}
|
Reference in New Issue
Block a user