mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00
95 lines
2.6 KiB
Go
95 lines
2.6 KiB
Go
![]() |
// Copyright (c) Mainflux
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package grpc
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/go-kit/kit/endpoint"
|
||
|
kitot "github.com/go-kit/kit/tracing/opentracing"
|
||
|
kitgrpc "github.com/go-kit/kit/transport/grpc"
|
||
|
opentracing "github.com/opentracing/opentracing-go"
|
||
|
|
||
|
"github.com/mainflux/mainflux"
|
||
|
"golang.org/x/net/context"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
var _ mainflux.AuthNServiceClient = (*grpcClient)(nil)
|
||
|
|
||
|
type grpcClient struct {
|
||
|
issue endpoint.Endpoint
|
||
|
identify endpoint.Endpoint
|
||
|
timeout time.Duration
|
||
|
}
|
||
|
|
||
|
// NewClient returns new gRPC client instance.
|
||
|
func NewClient(tracer opentracing.Tracer, conn *grpc.ClientConn, timeout time.Duration) mainflux.AuthNServiceClient {
|
||
|
return &grpcClient{
|
||
|
issue: kitot.TraceClient(tracer, "issue")(kitgrpc.NewClient(
|
||
|
conn,
|
||
|
"mainflux.AuthNService",
|
||
|
"Issue",
|
||
|
encodeIssueRequest,
|
||
|
decodeIssueResponse,
|
||
|
mainflux.UserID{},
|
||
|
).Endpoint()),
|
||
|
identify: kitot.TraceClient(tracer, "identify")(kitgrpc.NewClient(
|
||
|
conn,
|
||
|
"mainflux.AuthNService",
|
||
|
"Identify",
|
||
|
encodeIdentifyRequest,
|
||
|
decodeIdentifyResponse,
|
||
|
mainflux.UserID{},
|
||
|
).Endpoint()),
|
||
|
timeout: timeout,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (client grpcClient) Issue(ctx context.Context, req *mainflux.IssueReq, _ ...grpc.CallOption) (*mainflux.Token, error) {
|
||
|
ctx, close := context.WithTimeout(ctx, client.timeout)
|
||
|
defer close()
|
||
|
|
||
|
res, err := client.issue(ctx, issueReq{issuer: req.GetIssuer(), keyType: req.Type})
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ir := res.(identityRes)
|
||
|
return &mainflux.Token{Value: ir.id}, ir.err
|
||
|
}
|
||
|
|
||
|
func encodeIssueRequest(_ context.Context, grpcReq interface{}) (interface{}, error) {
|
||
|
req := grpcReq.(issueReq)
|
||
|
return &mainflux.IssueReq{Issuer: req.issuer, Type: req.keyType}, nil
|
||
|
}
|
||
|
|
||
|
func decodeIssueResponse(_ context.Context, grpcRes interface{}) (interface{}, error) {
|
||
|
res := grpcRes.(*mainflux.UserID)
|
||
|
return identityRes{res.GetValue(), nil}, nil
|
||
|
}
|
||
|
|
||
|
func (client grpcClient) Identify(ctx context.Context, token *mainflux.Token, _ ...grpc.CallOption) (*mainflux.UserID, error) {
|
||
|
ctx, close := context.WithTimeout(ctx, client.timeout)
|
||
|
defer close()
|
||
|
|
||
|
res, err := client.identify(ctx, identityReq{token: token.GetValue()})
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ir := res.(identityRes)
|
||
|
return &mainflux.UserID{Value: ir.id}, ir.err
|
||
|
}
|
||
|
|
||
|
func encodeIdentifyRequest(_ context.Context, grpcReq interface{}) (interface{}, error) {
|
||
|
req := grpcReq.(identityReq)
|
||
|
return &mainflux.Token{Value: req.token}, nil
|
||
|
}
|
||
|
|
||
|
func decodeIdentifyResponse(_ context.Context, grpcRes interface{}) (interface{}, error) {
|
||
|
res := grpcRes.(*mainflux.UserID)
|
||
|
return identityRes{res.GetValue(), nil}, nil
|
||
|
}
|