-
Notifications
You must be signed in to change notification settings - Fork 323
/
bcbucket.go
240 lines (223 loc) · 7.89 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
// 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/iotexproject/iotex-proto/golang/iotexapi"
"github.com/iotexproject/iotex-proto/golang/iotextypes"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/proto"
"github.com/iotexproject/iotex-core/ioctl"
"github.com/iotexproject/iotex-core/ioctl/config"
"github.com/iotexproject/iotex-core/ioctl/util"
)
const (
_bcBucketOptMax = "max"
_bcBucketOptCount = "count"
)
// Multi-language support
var (
_bcBucketUses = map[config.Language]string{
config.English: "bucket [OPTION|BUCKET_INDEX]",
config.Chinese: "bucket [选项|票索引]",
}
_bcBucketCmdShorts = map[config.Language]string{
config.English: "Get bucket for given index on IoTeX blockchain",
config.Chinese: "在IoTeX区块链上根据索引读取投票",
}
_bcBucketCmdExample = map[config.Language]string{
config.English: "ioctl bc bucket [BUCKET_INDEX], to read bucket information by bucket index\n" +
"ioctl bc bucket max, to query the max bucket index\n" +
"ioctl bc bucket count, to query total number of active buckets",
config.Chinese: "ioctl bc bucket [BUCKET_INDEX], 依票索引取得投票资讯\n" +
"ioctl bc bucket max, 查询最大票索引\n" +
"ioctl bc bucket count, 查询活跃总票数",
}
)
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"`
}
// NewBCBucketCmd represents the bc Bucket command
func NewBCBucketCmd(client ioctl.Client) *cobra.Command {
bcBucketUses, _ := client.SelectTranslation(_bcBucketUses)
bcBucketCmdShorts, _ := client.SelectTranslation(_bcBucketCmdShorts)
bcBucketCmdExample, _ := client.SelectTranslation(_bcBucketCmdExample)
return &cobra.Command{
Use: bcBucketUses,
Short: bcBucketCmdShorts,
Args: cobra.ExactArgs(1),
Example: bcBucketCmdExample,
RunE: func(cmd *cobra.Command, args []string) (err error) {
cmd.SilenceUsage = true
switch args[0] {
case _bcBucketOptMax:
count, err := getBucketsCount(client)
if err != nil {
return err
}
cmd.Println(count.GetTotal())
case _bcBucketOptCount:
count, err := getBucketsCount(client)
if err != nil {
return err
}
cmd.Println(count.GetActive())
default:
bucketindex, err := strconv.ParseUint(args[0], 10, 64)
if err != nil {
return err
}
bucketpb, err := getBucketByIndex(client, 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
}
cmd.Println(bucket.String())
}
return nil
},
}
}
func newBucket(bucketpb *iotextypes.VoteBucket) (*bucket, error) {
amount, ok := new(big.Int).SetString(bucketpb.StakedAmount, 10)
if !ok {
return nil, errors.New("failed to convert amount into big int")
}
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")
}
func getBucketByIndex(client ioctl.Client, index uint64) (*iotextypes.VoteBucket, error) {
method := &iotexapi.ReadStakingDataMethod{
Method: iotexapi.ReadStakingDataMethod_BUCKETS_BY_INDEXES,
}
readStakingdataRequest := &iotexapi.ReadStakingDataRequest{
Request: &iotexapi.ReadStakingDataRequest_BucketsByIndexes{
BucketsByIndexes: &iotexapi.ReadStakingDataRequest_VoteBucketsByIndexes{
Index: []uint64{index},
},
},
}
response, err := getBuckets(client, method, readStakingdataRequest)
if err != nil {
return nil, err
}
buckets := iotextypes.VoteBucketList{}
if err := proto.Unmarshal(response.Data, &buckets); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal response")
}
if len(buckets.GetBuckets()) == 0 {
return nil, errors.New("zero len response")
}
return buckets.GetBuckets()[0], nil
}
func getBucketsCount(client ioctl.Client) (count *iotextypes.BucketsCount, err error) {
method := &iotexapi.ReadStakingDataMethod{
Method: iotexapi.ReadStakingDataMethod_BUCKETS_COUNT,
}
readStakingdataRequest := &iotexapi.ReadStakingDataRequest{
Request: &iotexapi.ReadStakingDataRequest_BucketsCount_{
BucketsCount: &iotexapi.ReadStakingDataRequest_BucketsCount{},
},
}
response, err := getBuckets(client, method, readStakingdataRequest)
if err != nil {
return nil, err
}
count = &iotextypes.BucketsCount{}
if err := proto.Unmarshal(response.Data, count); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal response")
}
return count, nil
}
func getBuckets(client ioctl.Client, method *iotexapi.ReadStakingDataMethod, readStakingdataRequest *iotexapi.ReadStakingDataRequest) (response *iotexapi.ReadStateResponse, err error) {
apiClient, err := client.APIServiceClient()
if err != nil {
return nil, errors.Wrap(err, "failed to connect to endpoint")
}
methodData, err := proto.Marshal(method)
if err != nil {
return nil, errors.Wrap(err, "failed to marshal read staking data method")
}
requestData, err := proto.Marshal(readStakingdataRequest)
if err != nil {
return nil, errors.Wrap(err, "failed to marshal read staking data request")
}
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 = apiClient.ReadState(ctx, request)
if err != nil {
if sta, ok := status.FromError(err); ok {
if sta.Code() == codes.Unavailable {
return nil, ioctl.ErrInvalidEndpointOrInsecure
}
return nil, errors.New(sta.Message())
}
return nil, errors.Wrap(err, "failed to invoke ReadState api")
}
return response, nil
}