-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathbcbucket.go
283 lines (260 loc) · 8.88 KB
/
bcbucket.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
// Copyright (c) 2022 IoTeX Foundation
// This source code is provided 'as is' and no warranties are given as to title or non-infringement, merchantability
// or fitness for purpose and, to the extent permitted by law, all liability for your use of the code is disclaimed.
// This source code is governed by Apache License 2.0 that can be found in the LICENSE file.
package bc
import (
"context"
"fmt"
"math/big"
"strconv"
"strings"
"time"
"github.com/grpc-ecosystem/go-grpc-middleware/util/metautils"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/proto"
"github.com/iotexproject/iotex-core/v2/ioctl/config"
"github.com/iotexproject/iotex-core/v2/ioctl/output"
"github.com/iotexproject/iotex-core/v2/ioctl/util"
"github.com/iotexproject/iotex-proto/golang/iotexapi"
"github.com/iotexproject/iotex-proto/golang/iotextypes"
)
const (
_bcBucketOptMax = "max"
_bcBucketOptCount = "count"
)
// Multi-language support
var (
_bcBucketCmdShorts = map[config.Language]string{
config.English: "Get bucket for given index on IoTeX blockchain",
config.Chinese: "在IoTeX区块链上根据索引读取投票",
}
_bcBucketUses = map[config.Language]string{
config.English: "bucket [OPTION|BUCKET_INDEX]",
config.Chinese: "bucket [选项|票索引]",
}
)
// _bcBucketCmd represents the bc Bucket command
var _bcBucketCmd = &cobra.Command{
Use: config.TranslateInLang(_bcBucketUses, config.UILanguage),
Short: config.TranslateInLang(_bcBucketCmdShorts, config.UILanguage),
Args: cobra.ExactArgs(1),
Example: `ioctl bc bucket [BUCKET_INDEX], to read bucket information by bucket index
ioctl bc bucket max, to query the max bucket index
ioctl bc bucket count, to query total number of active buckets
`,
RunE: func(cmd *cobra.Command, args []string) (err error) {
cmd.SilenceUsage = true
switch args[0] {
case _bcBucketOptMax:
err = getBucketsTotalCount()
case _bcBucketOptCount:
err = getBucketsActiveCount()
default:
err = getBucket(args[0])
}
return output.PrintError(err)
},
}
type bucket struct {
Index uint64 `json:"index"`
Owner string `json:"owner"`
Candidate string `json:"candidate"`
StakedAmount string `json:"stakedAmount"`
StakedDuration uint32 `json:"stakedDuration"`
AutoStake bool `json:"autoStake"`
CreateTime string `json:"createTime"`
StakeStartTime string `json:"stakeStartTime"`
UnstakeStartTime string `json:"unstakeStartTime"`
}
func newBucket(bucketpb *iotextypes.VoteBucket) (*bucket, error) {
amount, ok := new(big.Int).SetString(bucketpb.StakedAmount, 10)
if !ok {
return nil, output.NewError(output.ConvertError, "failed to convert amount into big int", nil)
}
unstakeStartTimeFormat := "none"
if err := bucketpb.UnstakeStartTime.CheckValid(); err != nil {
return nil, err
}
unstakeTime := bucketpb.UnstakeStartTime.AsTime()
if unstakeTime != time.Unix(0, 0).UTC() {
unstakeStartTimeFormat = unstakeTime.Format(time.RFC3339Nano)
}
return &bucket{
Index: bucketpb.Index,
Owner: bucketpb.Owner,
Candidate: bucketpb.CandidateAddress,
StakedAmount: util.RauToString(amount, util.IotxDecimalNum),
StakedDuration: bucketpb.StakedDuration,
AutoStake: bucketpb.AutoStake,
CreateTime: bucketpb.CreateTime.AsTime().Format(time.RFC3339Nano),
StakeStartTime: bucketpb.StakeStartTime.AsTime().Format(time.RFC3339Nano),
UnstakeStartTime: unstakeStartTimeFormat,
}, nil
}
func (b *bucket) String() string {
var lines []string
lines = append(lines, "{")
lines = append(lines, fmt.Sprintf(" index: %d", b.Index))
lines = append(lines, fmt.Sprintf(" owner: %s", b.Owner))
lines = append(lines, fmt.Sprintf(" candidate: %s", b.Candidate))
lines = append(lines, fmt.Sprintf(" stakedAmount: %s IOTX", b.StakedAmount))
lines = append(lines, fmt.Sprintf(" stakedDuration: %d days", b.StakedDuration))
lines = append(lines, fmt.Sprintf(" autoStake: %v", b.AutoStake))
lines = append(lines, fmt.Sprintf(" createTime: %s", b.CreateTime))
lines = append(lines, fmt.Sprintf(" stakeStartTime: %s", b.StakeStartTime))
lines = append(lines, fmt.Sprintf(" unstakeStartTime: %s", b.UnstakeStartTime))
lines = append(lines, "}")
return strings.Join(lines, "\n")
}
type bucketMessage struct {
Node string `json:"node"`
Bucket *bucket `json:"bucket"`
}
func (m *bucketMessage) String() string {
if output.Format == "" {
return m.Bucket.String()
}
return output.FormatString(output.Result, m)
}
// getBucket get bucket from chain
func getBucket(arg string) error {
bucketindex, err := strconv.ParseUint(arg, 10, 64)
if err != nil {
return err
}
bucketpb, err := getBucketByIndex(bucketindex)
if err != nil {
return err
}
if bucketpb == nil {
return errors.New("The bucket has been withdrawn")
}
bucket, err := newBucket(bucketpb)
if err != nil {
return err
}
message := bucketMessage{
Node: config.ReadConfig.Endpoint,
Bucket: bucket,
}
fmt.Println(message.String())
return nil
}
func getBucketByIndex(index uint64) (*iotextypes.VoteBucket, error) {
conn, err := util.ConnectToEndpoint(config.ReadConfig.SecureConnect && !config.Insecure)
if err != nil {
return nil, output.NewError(output.NetworkError, "failed to connect to endpoint", err)
}
defer conn.Close()
cli := iotexapi.NewAPIServiceClient(conn)
method := &iotexapi.ReadStakingDataMethod{
Method: iotexapi.ReadStakingDataMethod_BUCKETS_BY_INDEXES,
}
methodData, err := proto.Marshal(method)
if err != nil {
return nil, output.NewError(output.SerializationError, "failed to marshal read staking data method", err)
}
readStakingdataRequest := &iotexapi.ReadStakingDataRequest{
Request: &iotexapi.ReadStakingDataRequest_BucketsByIndexes{
BucketsByIndexes: &iotexapi.ReadStakingDataRequest_VoteBucketsByIndexes{
Index: []uint64{index},
},
},
}
requestData, err := proto.Marshal(readStakingdataRequest)
if err != nil {
return nil, output.NewError(output.SerializationError, "failed to marshal read staking data request", err)
}
request := &iotexapi.ReadStateRequest{
ProtocolID: []byte("staking"),
MethodName: methodData,
Arguments: [][]byte{requestData},
}
ctx := context.Background()
jwtMD, err := util.JwtAuth()
if err == nil {
ctx = metautils.NiceMD(jwtMD).ToOutgoing(ctx)
}
response, err := cli.ReadState(ctx, request)
if err != nil {
sta, ok := status.FromError(err)
if ok {
return nil, output.NewError(output.APIError, sta.Message(), nil)
}
return nil, output.NewError(output.NetworkError, "failed to invoke ReadState api", err)
}
buckets := iotextypes.VoteBucketList{}
if err := proto.Unmarshal(response.Data, &buckets); err != nil {
return nil, output.NewError(output.SerializationError, "failed to unmarshal response", err)
}
if len(buckets.GetBuckets()) == 0 {
return nil, output.NewError(output.SerializationError, "", errors.New("zero len response"))
}
return buckets.GetBuckets()[0], nil
}
func getBucketsTotalCount() error {
count, err := getBucketsCount()
if err != nil {
return err
}
fmt.Println(count.GetTotal())
return nil
}
func getBucketsActiveCount() error {
count, err := getBucketsCount()
if err != nil {
return err
}
fmt.Println(count.GetActive())
return nil
}
func getBucketsCount() (count *iotextypes.BucketsCount, err error) {
conn, err := util.ConnectToEndpoint(config.ReadConfig.SecureConnect && !config.Insecure)
if err != nil {
return nil, output.NewError(output.NetworkError, "failed to connect to endpoint", err)
}
defer conn.Close()
cli := iotexapi.NewAPIServiceClient(conn)
method := &iotexapi.ReadStakingDataMethod{
Method: iotexapi.ReadStakingDataMethod_BUCKETS_COUNT,
}
methodData, err := proto.Marshal(method)
if err != nil {
return nil, output.NewError(output.SerializationError, "failed to marshal read staking data method", err)
}
readStakingdataRequest := &iotexapi.ReadStakingDataRequest{
Request: &iotexapi.ReadStakingDataRequest_BucketsCount_{
BucketsCount: &iotexapi.ReadStakingDataRequest_BucketsCount{},
},
}
requestData, err := proto.Marshal(readStakingdataRequest)
if err != nil {
return nil, output.NewError(output.SerializationError, "failed to marshal read staking data request", err)
}
request := &iotexapi.ReadStateRequest{
ProtocolID: []byte("staking"),
MethodName: methodData,
Arguments: [][]byte{requestData},
}
ctx := context.Background()
jwtMD, err := util.JwtAuth()
if err == nil {
ctx = metautils.NiceMD(jwtMD).ToOutgoing(ctx)
}
response, err := cli.ReadState(ctx, request)
if err != nil {
sta, ok := status.FromError(err)
if ok {
return nil, output.NewError(output.APIError, sta.Message(), nil)
}
return nil, output.NewError(output.NetworkError, "failed to invoke ReadState api", err)
}
count = &iotextypes.BucketsCount{}
if err := proto.Unmarshal(response.Data, count); err != nil {
return nil, output.NewError(output.SerializationError, "failed to unmarshal response", err)
}
return count, nil
}