195 lines
5.2 KiB
Go
195 lines
5.2 KiB
Go
package keeper
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
|
|
"cosmossdk.io/errors"
|
|
"cosmossdk.io/store/prefix"
|
|
"cosmossdk.io/x/authz"
|
|
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/runtime"
|
|
"github.com/cosmos/cosmos-sdk/types/query"
|
|
)
|
|
|
|
var _ authz.QueryServer = Keeper{}
|
|
|
|
// Grants implements the Query/Grants gRPC method.
|
|
// It returns grants for a granter-grantee pair. If msg type URL is set, it returns grants only for that msg type.
|
|
func (k Keeper) Grants(ctx context.Context, req *authz.QueryGrantsRequest) (*authz.QueryGrantsResponse, error) {
|
|
if req == nil {
|
|
return nil, status.Errorf(codes.InvalidArgument, "empty request")
|
|
}
|
|
|
|
granter, err := k.authKeeper.AddressCodec().StringToBytes(req.Granter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
grantee, err := k.authKeeper.AddressCodec().StringToBytes(req.Grantee)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if req.MsgTypeUrl != "" {
|
|
grant, found := k.getGrant(ctx, grantStoreKey(grantee, granter, req.MsgTypeUrl))
|
|
if !found {
|
|
return nil, errors.Wrapf(authz.ErrNoAuthorizationFound, "authorization not found for %s type", req.MsgTypeUrl)
|
|
}
|
|
|
|
authorization, err := grant.GetAuthorization()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
authorizationAny, err := codectypes.NewAnyWithValue(authorization)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, err.Error())
|
|
}
|
|
return &authz.QueryGrantsResponse{
|
|
Grants: []*authz.Grant{{
|
|
Authorization: authorizationAny,
|
|
Expiration: grant.Expiration,
|
|
}},
|
|
}, nil
|
|
}
|
|
|
|
store := runtime.KVStoreAdapter(k.KVStoreService.OpenKVStore(ctx))
|
|
key := grantStoreKey(grantee, granter, "")
|
|
grantsStore := prefix.NewStore(store, key)
|
|
|
|
authorizations, pageRes, err := query.GenericFilteredPaginate(k.cdc, grantsStore, req.Pagination, func(key []byte, auth *authz.Grant) (*authz.Grant, error) {
|
|
auth1, err := auth.GetAuthorization()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
authorizationAny, err := codectypes.NewAnyWithValue(auth1)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, err.Error())
|
|
}
|
|
return &authz.Grant{
|
|
Authorization: authorizationAny,
|
|
Expiration: auth.Expiration,
|
|
}, nil
|
|
}, func() *authz.Grant {
|
|
return &authz.Grant{}
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &authz.QueryGrantsResponse{
|
|
Grants: authorizations,
|
|
Pagination: pageRes,
|
|
}, nil
|
|
}
|
|
|
|
// GranterGrants implements the Query/GranterGrants gRPC method.
|
|
func (k Keeper) GranterGrants(ctx context.Context, req *authz.QueryGranterGrantsRequest) (*authz.QueryGranterGrantsResponse, error) {
|
|
if req == nil {
|
|
return nil, status.Errorf(codes.InvalidArgument, "empty request")
|
|
}
|
|
|
|
granter, err := k.authKeeper.AddressCodec().StringToBytes(req.Granter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
store := runtime.KVStoreAdapter(k.KVStoreService.OpenKVStore(ctx))
|
|
authzStore := prefix.NewStore(store, grantStoreKey(nil, granter, ""))
|
|
|
|
grants, pageRes, err := query.GenericFilteredPaginate(k.cdc, authzStore, req.Pagination, func(key []byte, auth *authz.Grant) (*authz.GrantAuthorization, error) {
|
|
auth1, err := auth.GetAuthorization()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
any, err := codectypes.NewAnyWithValue(auth1)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, err.Error())
|
|
}
|
|
|
|
grantee := firstAddressFromGrantStoreKey(key)
|
|
|
|
granteeAddr, err := k.authKeeper.AddressCodec().BytesToString(grantee)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &authz.GrantAuthorization{
|
|
Granter: req.Granter,
|
|
Grantee: granteeAddr,
|
|
Authorization: any,
|
|
Expiration: auth.Expiration,
|
|
}, nil
|
|
}, func() *authz.Grant {
|
|
return &authz.Grant{}
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &authz.QueryGranterGrantsResponse{
|
|
Grants: grants,
|
|
Pagination: pageRes,
|
|
}, nil
|
|
}
|
|
|
|
// GranteeGrants implements the Query/GranteeGrants gRPC method.
|
|
func (k Keeper) GranteeGrants(ctx context.Context, req *authz.QueryGranteeGrantsRequest) (*authz.QueryGranteeGrantsResponse, error) {
|
|
if req == nil {
|
|
return nil, status.Errorf(codes.InvalidArgument, "empty request")
|
|
}
|
|
|
|
grantee, err := k.authKeeper.AddressCodec().StringToBytes(req.Grantee)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
store := prefix.NewStore(runtime.KVStoreAdapter(k.KVStoreService.OpenKVStore(ctx)), GrantKey)
|
|
|
|
authorizations, pageRes, err := query.GenericFilteredPaginate(k.cdc, store, req.Pagination, func(key []byte, auth *authz.Grant) (*authz.GrantAuthorization, error) {
|
|
auth1, err := auth.GetAuthorization()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
granter, g, _ := parseGrantStoreKey(append(GrantKey, key...))
|
|
if !bytes.Equal(g, grantee) {
|
|
return nil, nil
|
|
}
|
|
|
|
authorizationAny, err := codectypes.NewAnyWithValue(auth1)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, err.Error())
|
|
}
|
|
|
|
granterAddr, err := k.authKeeper.AddressCodec().BytesToString(granter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &authz.GrantAuthorization{
|
|
Authorization: authorizationAny,
|
|
Expiration: auth.Expiration,
|
|
Granter: granterAddr,
|
|
Grantee: req.Grantee,
|
|
}, nil
|
|
}, func() *authz.Grant {
|
|
return &authz.Grant{}
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &authz.QueryGranteeGrantsResponse{
|
|
Grants: authorizations,
|
|
Pagination: pageRes,
|
|
}, nil
|
|
}
|