OSDN Git Service

update master (#487)
[bytom/bytom-spv.git] / cmd / bytomcli / commands / transaction.go
1 package commands
2
3 import (
4         "encoding/json"
5         "fmt"
6         "os"
7
8         "github.com/spf13/cobra"
9         jww "github.com/spf13/jwalterweatherman"
10
11         "github.com/bytom/api"
12         "github.com/bytom/blockchain/txbuilder"
13         "github.com/bytom/protocol/bc/types"
14         "github.com/bytom/util"
15 )
16
17 func init() {
18         buildTransactionCmd.PersistentFlags().StringVarP(&buildType, "type", "t", "", "transaction type, valid types: 'issue', 'spend'")
19         buildTransactionCmd.PersistentFlags().StringVarP(&receiverProgram, "receiver", "r", "", "program of receiver")
20         buildTransactionCmd.PersistentFlags().StringVarP(&address, "address", "a", "", "address of receiver")
21         buildTransactionCmd.PersistentFlags().StringVarP(&btmGas, "gas", "g", "20000000", "program of receiver")
22         buildTransactionCmd.PersistentFlags().BoolVar(&pretty, "pretty", false, "pretty print json result")
23         buildTransactionCmd.PersistentFlags().BoolVar(&alias, "alias", false, "use alias build transaction")
24
25         signTransactionCmd.PersistentFlags().StringVarP(&password, "password", "p", "", "password of the account which sign these transaction(s)")
26         signTransactionCmd.PersistentFlags().BoolVar(&pretty, "pretty", false, "pretty print json result")
27
28         signSubTransactionCmd.PersistentFlags().StringVarP(&password, "password", "p", "", "password of the account which sign these transaction(s)")
29
30         listTransactionsCmd.PersistentFlags().StringVar(&txID, "id", "", "transaction id")
31         listTransactionsCmd.PersistentFlags().StringVar(&account, "account_id", "", "account id")
32         listTransactionsCmd.PersistentFlags().BoolVar(&detail, "detail", false, "list transactions details")
33 }
34
35 var (
36         buildType       = ""
37         btmGas          = ""
38         receiverProgram = ""
39         address         = ""
40         password        = ""
41         pretty          = false
42         alias           = false
43         txID            = ""
44         account         = ""
45         detail          = false
46 )
47
48 var buildIssueReqFmt = `
49         {"actions": [
50                 {"type": "spend_account", "asset_id": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "amount":%s, "account_id": "%s"},
51                 {"type": "issue", "asset_id": "%s", "amount": %s},
52                 {"type": "control_account", "asset_id": "%s", "amount": %s, "account_id": "%s"}
53         ]}`
54
55 var buildIssueReqFmtByAlias = `
56         {"actions": [
57                 {"type": "spend_account", "asset_alias": "btm", "amount":%s, "account_alias": "%s"},
58                 {"type": "issue", "asset_alias": "%s", "amount": %s},
59                 {"type": "control_account", "asset_alias": "%s", "amount": %s, "account_alias": "%s"}
60         ]}`
61
62 var buildSpendReqFmt = `
63         {"actions": [
64                 {"type": "spend_account", "asset_id": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "amount":%s, "account_id": "%s"},
65                 {"type": "spend_account", "asset_id": "%s","amount": %s,"account_id": "%s"},
66                 {"type": "control_receiver", "asset_id": "%s", "amount": %s, "receiver":{"control_program": "%s","expires_at":"2017-12-28T12:52:06.78309768+08:00"}}
67         ]}`
68
69 var buildSpendReqFmtByAlias = `
70         {"actions": [
71                 {"type": "spend_account", "asset_alias": "btm", "amount":%s, "account_alias": "%s"},
72                 {"type": "spend_account", "asset_alias": "%s","amount": %s,"account_alias": "%s"},
73                 {"type": "control_receiver", "asset_alias": "%s", "amount": %s, "receiver":{"control_program": "%s","expires_at":"2017-12-28T12:52:06.78309768+08:00"}}
74         ]}`
75
76 var buildRetireReqFmt = `
77         {"actions": [
78                 {"type": "spend_account", "asset_id": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "amount":%s, "account_id": "%s"},
79                 {"type": "spend_account", "asset_id": "%s","amount": %s,"account_id": "%s"},
80                 {"type": "retire", "asset_id": "%s","amount": %s,"account_id": "%s"}
81         ]}`
82
83 var buildRetireReqFmtByAlias = `
84         {"actions": [
85                 {"type": "spend_account", "asset_alias": "btm", "amount":%s, "account_alias": "%s"},
86                 {"type": "spend_account", "asset_alias": "%s","amount": %s,"account_alias": "%s"},
87                 {"type": "retire", "asset_alias": "%s","amount": %s,"account_alias": "%s"}
88         ]}`
89
90 var buildControlAddressReqFmt = `
91         {"actions": [
92                 {"type": "spend_account", "asset_id": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "amount":%s, "account_id": "%s"},
93                 {"type": "spend_account", "asset_id": "%s","amount": %s,"account_id": "%s"},
94                 {"type": "control_address", "asset_id": "%s", "amount": %s,"address": "%s"}
95         ]}`
96
97 var buildControlAddressReqFmtByAlias = `
98         {"actions": [
99                 {"type": "spend_account", "asset_id": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "amount":%s, "account_alias": "%s"},
100                 {"type": "spend_account", "asset_alias": "%s","amount": %s, "account_alias": "%s"},
101                 {"type": "control_address", "asset_alias": "%s", "amount": %s,"address": "%s"}
102         ]}`
103
104 var buildTransactionCmd = &cobra.Command{
105         Use:   "build-transaction <accountID|alias> <assetID|alias> <amount>",
106         Short: "Build one transaction template,default use account id and asset id",
107         Args:  cobra.RangeArgs(3, 4),
108         PreRun: func(cmd *cobra.Command, args []string) {
109                 cmd.MarkFlagRequired("type")
110                 if buildType == "spend" {
111                         cmd.MarkFlagRequired("receiver")
112                 }
113         },
114         Run: func(cmd *cobra.Command, args []string) {
115                 var buildReqStr string
116                 accountInfo := args[0]
117                 assetInfo := args[1]
118                 amount := args[2]
119                 switch buildType {
120                 case "issue":
121                         if alias {
122                                 buildReqStr = fmt.Sprintf(buildIssueReqFmtByAlias, btmGas, accountInfo, assetInfo, amount, assetInfo, amount, accountInfo)
123                                 break
124                         }
125                         buildReqStr = fmt.Sprintf(buildIssueReqFmt, btmGas, accountInfo, assetInfo, amount, assetInfo, amount, accountInfo)
126                 case "spend":
127                         if alias {
128                                 buildReqStr = fmt.Sprintf(buildSpendReqFmtByAlias, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, receiverProgram)
129                                 break
130                         }
131                         buildReqStr = fmt.Sprintf(buildSpendReqFmt, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, receiverProgram)
132                 case "retire":
133                         if alias {
134                                 buildReqStr = fmt.Sprintf(buildRetireReqFmtByAlias, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, accountInfo)
135                                 break
136                         }
137                         buildReqStr = fmt.Sprintf(buildRetireReqFmt, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, accountInfo)
138                 case "address":
139                         if alias {
140                                 buildReqStr = fmt.Sprintf(buildControlAddressReqFmtByAlias, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, address)
141                                 break
142                         }
143                         buildReqStr = fmt.Sprintf(buildControlAddressReqFmt, btmGas, accountInfo, assetInfo, amount, accountInfo, assetInfo, amount, address)
144                 default:
145                         jww.ERROR.Println("Invalid transaction template type")
146                         os.Exit(util.ErrLocalExe)
147                 }
148
149                 var buildReq api.BuildRequest
150                 if err := json.Unmarshal([]byte(buildReqStr), &buildReq); err != nil {
151                         jww.ERROR.Println(err)
152                         os.Exit(util.ErrLocalExe)
153                 }
154
155                 data, exitCode := util.ClientCall("/build-transaction", &buildReq)
156                 if exitCode != util.Success {
157                         os.Exit(exitCode)
158                 }
159
160                 if pretty {
161                         printJSON(data)
162                         return
163                 }
164
165                 dataMap, ok := data.(map[string]interface{})
166                 if ok != true {
167                         jww.ERROR.Println("invalid type assertion")
168                         os.Exit(util.ErrLocalParse)
169                 }
170
171                 rawTemplate, err := json.Marshal(dataMap)
172                 if err != nil {
173                         jww.ERROR.Println(err)
174                         os.Exit(util.ErrLocalParse)
175                 }
176
177                 jww.FEEDBACK.Printf("Template Type: %s\n%s\n", buildType, string(rawTemplate))
178         },
179 }
180
181 var signTransactionCmd = &cobra.Command{
182         Use:   "sign-transaction  <json templates>",
183         Short: "Sign transaction templates with account password",
184         Args:  cobra.ExactArgs(1),
185         PreRun: func(cmd *cobra.Command, args []string) {
186                 cmd.MarkFlagRequired("password")
187         },
188         Run: func(cmd *cobra.Command, args []string) {
189                 template := txbuilder.Template{}
190
191                 err := json.Unmarshal([]byte(args[0]), &template)
192                 if err != nil {
193                         jww.ERROR.Println(err)
194                         os.Exit(util.ErrLocalExe)
195                 }
196
197                 var req = struct {
198                         Password string             `json:"password"`
199                         Txs      txbuilder.Template `json:"transaction"`
200                 }{Password: password, Txs: template}
201
202                 jww.FEEDBACK.Printf("\n\n")
203                 data, exitCode := util.ClientCall("/sign-transaction", &req)
204                 if exitCode != util.Success {
205                         os.Exit(exitCode)
206                 }
207
208                 if pretty {
209                         printJSON(data)
210                         return
211                 }
212
213                 dataMap, ok := data.(map[string]interface{})
214                 if ok != true {
215                         jww.ERROR.Println("invalid type assertion")
216                         os.Exit(util.ErrLocalParse)
217                 }
218
219                 rawSign, err := json.Marshal(dataMap)
220                 if err != nil {
221                         jww.ERROR.Println(err)
222                         os.Exit(util.ErrLocalParse)
223                 }
224                 jww.FEEDBACK.Printf("\nSign Template:\n%s\n", string(rawSign))
225         },
226 }
227
228 var submitTransactionCmd = &cobra.Command{
229         Use:   "submit-transaction  <signed json raw_transaction>",
230         Short: "Submit signed transaction template",
231         Args:  cobra.ExactArgs(1),
232         Run: func(cmd *cobra.Command, args []string) {
233                 var ins = struct {
234                         Tx types.Tx `json:"raw_transaction"`
235                 }{}
236
237                 err := json.Unmarshal([]byte(args[0]), &ins)
238                 if err != nil {
239                         jww.ERROR.Println(err)
240                         os.Exit(util.ErrLocalExe)
241                 }
242
243                 data, exitCode := util.ClientCall("/submit-transaction", &ins)
244                 if exitCode != util.Success {
245                         os.Exit(exitCode)
246                 }
247
248                 printJSON(data)
249         },
250 }
251
252 var signSubTransactionCmd = &cobra.Command{
253         Use:   "sign-submit-transaction  <json templates>",
254         Short: "Sign and Submit transaction templates with account password",
255         Args:  cobra.ExactArgs(1),
256         PreRun: func(cmd *cobra.Command, args []string) {
257                 cmd.MarkFlagRequired("password")
258         },
259         Run: func(cmd *cobra.Command, args []string) {
260                 template := txbuilder.Template{}
261
262                 err := json.Unmarshal([]byte(args[0]), &template)
263                 if err != nil {
264                         jww.ERROR.Println(err)
265                         os.Exit(util.ErrLocalExe)
266                 }
267
268                 var req = struct {
269                         Password []string           `json:"password"`
270                         Txs      txbuilder.Template `json:"transaction"`
271                 }{Password: []string{password}, Txs: template}
272
273                 jww.FEEDBACK.Printf("\n\n")
274                 data, exitCode := util.ClientCall("/sign-submit-transaction", &req)
275                 if exitCode != util.Success {
276                         os.Exit(exitCode)
277                 }
278
279                 printJSON(data)
280         },
281 }
282
283 var getTransactionCmd = &cobra.Command{
284         Use:   "get-transaction <hash>",
285         Short: "get the transaction by matching the given transaction hash",
286         Args:  cobra.ExactArgs(1),
287         Run: func(cmd *cobra.Command, args []string) {
288                 txInfo := &struct {
289                         TxID string `json:"tx_id"`
290                 }{TxID: args[0]}
291
292                 data, exitCode := util.ClientCall("/get-transaction", txInfo)
293                 if exitCode != util.Success {
294                         os.Exit(exitCode)
295                 }
296
297                 printJSON(data)
298         },
299 }
300
301 var listTransactionsCmd = &cobra.Command{
302         Use:   "list-transactions",
303         Short: "List the transactions",
304         Args:  cobra.NoArgs,
305         Run: func(cmd *cobra.Command, args []string) {
306                 filter := struct {
307                         ID        string `json:"id"`
308                         AccountID string `json:"account_id"`
309                         Detail    bool   `json:"detail"`
310                 }{ID: txID, AccountID: account, Detail: detail}
311
312                 data, exitCode := util.ClientCall("/list-transactions", &filter)
313                 if exitCode != util.Success {
314                         os.Exit(exitCode)
315                 }
316
317                 printJSONList(data)
318         },
319 }
320
321 var gasRateCmd = &cobra.Command{
322         Use:   "gas-rate",
323         Short: "Print the current gas rate",
324         Args:  cobra.NoArgs,
325         Run: func(cmd *cobra.Command, args []string) {
326                 data, exitCode := util.ClientCall("/gas-rate")
327                 if exitCode != util.Success {
328                         os.Exit(exitCode)
329                 }
330                 printJSON(data)
331         },
332 }