github.com/NpoolPlatform/chain-middleware@v0.0.0-20240228100535-eb1bcf896eb9/api/coin/usedfor/query.go (about) 1 package coinusedfor 2 3 import ( 4 "context" 5 6 coinusedfor1 "github.com/NpoolPlatform/chain-middleware/pkg/mw/coin/usedfor" 7 "github.com/NpoolPlatform/go-service-framework/pkg/logger" 8 npool "github.com/NpoolPlatform/message/npool/chain/mw/v1/coin/usedfor" 9 10 "google.golang.org/grpc/codes" 11 "google.golang.org/grpc/status" 12 ) 13 14 func (s *Server) GetCoinUsedFor(ctx context.Context, in *npool.GetCoinUsedForRequest) (*npool.GetCoinUsedForResponse, error) { 15 handler, err := coinusedfor1.NewHandler( 16 ctx, 17 coinusedfor1.WithEntID(&in.EntID, true), 18 ) 19 if err != nil { 20 logger.Sugar().Errorw( 21 "GetCoinUsedFor", 22 "In", in, 23 "Error", err, 24 ) 25 return &npool.GetCoinUsedForResponse{}, status.Error(codes.InvalidArgument, err.Error()) 26 } 27 28 info, err := handler.GetCoinUsedFor(ctx) 29 if err != nil { 30 logger.Sugar().Errorw( 31 "GetCoinUsedFor", 32 "In", in, 33 "Error", err, 34 ) 35 return &npool.GetCoinUsedForResponse{}, status.Error(codes.Internal, err.Error()) 36 } 37 38 return &npool.GetCoinUsedForResponse{ 39 Info: info, 40 }, nil 41 } 42 43 func (s *Server) GetCoinUsedFors(ctx context.Context, in *npool.GetCoinUsedForsRequest) (*npool.GetCoinUsedForsResponse, error) { 44 handler, err := coinusedfor1.NewHandler( 45 ctx, 46 coinusedfor1.WithConds(in.Conds), 47 coinusedfor1.WithOffset(in.GetOffset()), 48 coinusedfor1.WithLimit(in.GetLimit()), 49 ) 50 if err != nil { 51 logger.Sugar().Errorw( 52 "GetCoinUsedFors", 53 "In", in, 54 "Error", err, 55 ) 56 return &npool.GetCoinUsedForsResponse{}, status.Error(codes.InvalidArgument, err.Error()) 57 } 58 59 infos, total, err := handler.GetCoinUsedFors(ctx) 60 if err != nil { 61 logger.Sugar().Errorw( 62 "GetCoinUsedFors", 63 "In", in, 64 "Error", err, 65 ) 66 return &npool.GetCoinUsedForsResponse{}, status.Error(codes.Internal, err.Error()) 67 } 68 69 return &npool.GetCoinUsedForsResponse{ 70 Infos: infos, 71 Total: total, 72 }, nil 73 }