-
Notifications
You must be signed in to change notification settings - Fork 17
/
query_notifications.go
112 lines (86 loc) · 2.43 KB
/
query_notifications.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package cli
import (
"context"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/jackalLabs/canine-chain/v3/x/notifications/types"
"github.com/spf13/cast"
"github.com/spf13/cobra"
)
func CmdListNotifications() *cobra.Command {
cmd := &cobra.Command{
Use: "list-notifications",
Short: "list all notifications",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx := client.GetClientContextFromCmd(cmd)
pageReq, err := client.ReadPageRequest(cmd.Flags())
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
params := &types.QueryAllNotificationsRequest{
Pagination: pageReq,
}
res, err := queryClient.NotificationsAll(context.Background(), params)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddPaginationFlagsToCmd(cmd, cmd.Use)
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
func CmdListNotificationsByAddress() *cobra.Command {
cmd := &cobra.Command{
Use: "list-notifications-by-address [address]",
Short: "list all notifications for an address",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx := client.GetClientContextFromCmd(cmd)
pageReq, err := client.ReadPageRequest(cmd.Flags())
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
params := &types.QueryAllNotificationsByAddressRequest{
Pagination: pageReq,
Address: args[0],
}
res, err := queryClient.NotificationsByAddress(context.Background(), params)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddPaginationFlagsToCmd(cmd, cmd.Use)
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
func CmdShowNotifications() *cobra.Command {
cmd := &cobra.Command{
Use: "show-notifications [count]",
Short: "shows a notifications",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) (err error) {
clientCtx := client.GetClientContextFromCmd(cmd)
queryClient := types.NewQueryClient(clientCtx)
argCount, err := cast.ToUint64E(args[0])
if err != nil {
return err
}
params := &types.QueryGetNotificationsRequest{
Count: argCount,
}
res, err := queryClient.Notifications(context.Background(), params)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}