-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathgrpc_query_all_certificates.go
80 lines (65 loc) · 2.16 KB
/
grpc_query_all_certificates.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package keeper
import (
"context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"github.com/cosmos/cosmos-sdk/store/prefix"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/query"
pkitypes "github.com/zigbee-alliance/distributed-compliance-ledger/types/pki"
"github.com/zigbee-alliance/distributed-compliance-ledger/x/pki/types"
)
func (k Keeper) CertificatesAll(c context.Context, req *types.QueryAllCertificatesRequest) (*types.QueryAllCertificatesResponse, error) {
if req == nil {
return nil, status.Error(codes.InvalidArgument, "invalid request")
}
var (
certificatess []types.AllCertificates
pageRes *query.PageResponse
err error
)
ctx := sdk.UnwrapSDKContext(c)
if req.SubjectKeyId != "" {
aprCerts, found := k.GetAllCertificatesBySubjectKeyID(
ctx,
req.SubjectKeyId,
)
if found {
certificatess = append(certificatess, types.AllCertificates{
SubjectKeyId: aprCerts.SubjectKeyId,
Certs: aprCerts.Certs,
})
}
pageRes = &query.PageResponse{Total: 1}
} else {
store := ctx.KVStore(k.storeKey)
allCertificatesStore := prefix.NewStore(store, pkitypes.KeyPrefix(types.AllCertificatesKeyPrefix))
pageRes, err = query.Paginate(allCertificatesStore, req.Pagination, func(key []byte, value []byte) error {
var certificates types.AllCertificates
if err := k.cdc.Unmarshal(value, &certificates); err != nil {
return err
}
certificatess = append(certificatess, certificates)
return nil
})
if err != nil {
return nil, status.Error(codes.Internal, err.Error())
}
}
return &types.QueryAllCertificatesResponse{Certificates: certificatess, Pagination: pageRes}, nil
}
func (k Keeper) Certificates(c context.Context, req *types.QueryGetCertificatesRequest) (*types.QueryGetCertificatesResponse, error) {
if req == nil {
return nil, status.Error(codes.InvalidArgument, "invalid request")
}
ctx := sdk.UnwrapSDKContext(c)
val, found := k.GetAllCertificates(
ctx,
req.Subject,
req.SubjectKeyId,
)
if !found {
return nil, status.Error(codes.NotFound, "not found")
}
return &types.QueryGetCertificatesResponse{Certificates: val}, nil
}