github.com/theQRL/go-zond@v0.1.1/signer/core/cliui.go (about) 1 // Copyright 2018 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package core 18 19 import ( 20 "bufio" 21 "context" 22 "encoding/json" 23 "fmt" 24 "os" 25 "strings" 26 "sync" 27 28 "github.com/theQRL/go-zond/common/hexutil" 29 "github.com/theQRL/go-zond/console/prompt" 30 "github.com/theQRL/go-zond/internal/ethapi" 31 "github.com/theQRL/go-zond/log" 32 ) 33 34 type CommandlineUI struct { 35 in *bufio.Reader 36 mu sync.Mutex 37 api *UIServerAPI 38 } 39 40 func NewCommandlineUI() *CommandlineUI { 41 return &CommandlineUI{in: bufio.NewReader(os.Stdin)} 42 } 43 44 func (ui *CommandlineUI) RegisterUIServer(api *UIServerAPI) { 45 ui.api = api 46 } 47 48 // readString reads a single line from stdin, trimming if from spaces, enforcing 49 // non-emptyness. 50 func (ui *CommandlineUI) readString() string { 51 for { 52 fmt.Printf("> ") 53 text, err := ui.in.ReadString('\n') 54 if err != nil { 55 log.Crit("Failed to read user input", "err", err) 56 } 57 if text = strings.TrimSpace(text); text != "" { 58 return text 59 } 60 } 61 } 62 63 func (ui *CommandlineUI) OnInputRequired(info UserInputRequest) (UserInputResponse, error) { 64 fmt.Printf("## %s\n\n%s\n", info.Title, info.Prompt) 65 defer fmt.Println("-----------------------") 66 if info.IsPassword { 67 text, err := prompt.Stdin.PromptPassword("> ") 68 if err != nil { 69 log.Error("Failed to read password", "error", err) 70 return UserInputResponse{}, err 71 } 72 return UserInputResponse{text}, nil 73 } 74 text := ui.readString() 75 return UserInputResponse{text}, nil 76 } 77 78 // confirm returns true if user enters 'Yes', otherwise false 79 func (ui *CommandlineUI) confirm() bool { 80 fmt.Printf("Approve? [y/N]:\n") 81 if ui.readString() == "y" { 82 return true 83 } 84 fmt.Println("-----------------------") 85 return false 86 } 87 88 // sanitize quotes and truncates 'txt' if longer than 'limit'. If truncated, 89 // and ellipsis is added after the quoted string 90 func sanitize(txt string, limit int) string { 91 if len(txt) > limit { 92 return fmt.Sprintf("%q...", txt[:limit]) 93 } 94 return fmt.Sprintf("%q", txt) 95 } 96 97 func showMetadata(metadata Metadata) { 98 fmt.Printf("Request context:\n\t%v -> %v -> %v\n", metadata.Remote, metadata.Scheme, metadata.Local) 99 fmt.Printf("\nAdditional HTTP header data, provided by the external caller:\n") 100 fmt.Printf("\tUser-Agent: %v\n\tOrigin: %v\n", sanitize(metadata.UserAgent, 200), sanitize(metadata.Origin, 100)) 101 } 102 103 // ApproveTx prompt the user for confirmation to request to sign Transaction 104 func (ui *CommandlineUI) ApproveTx(request *SignTxRequest) (SignTxResponse, error) { 105 ui.mu.Lock() 106 defer ui.mu.Unlock() 107 weival := request.Transaction.Value.ToInt() 108 fmt.Printf("--------- Transaction request-------------\n") 109 if to := request.Transaction.To; to != nil { 110 fmt.Printf("to: %v\n", to.Original()) 111 if !to.ValidChecksum() { 112 fmt.Printf("\nWARNING: Invalid checksum on to-address!\n\n") 113 } 114 } else { 115 fmt.Printf("to: <contact creation>\n") 116 } 117 fmt.Printf("from: %v\n", request.Transaction.From.String()) 118 fmt.Printf("value: %v wei\n", weival) 119 fmt.Printf("gas: %v (%v)\n", request.Transaction.Gas, uint64(request.Transaction.Gas)) 120 if request.Transaction.MaxFeePerGas != nil { 121 fmt.Printf("maxFeePerGas: %v wei\n", request.Transaction.MaxFeePerGas.ToInt()) 122 fmt.Printf("maxPriorityFeePerGas: %v wei\n", request.Transaction.MaxPriorityFeePerGas.ToInt()) 123 } else { 124 fmt.Printf("gasprice: %v wei\n", request.Transaction.GasPrice.ToInt()) 125 } 126 fmt.Printf("nonce: %v (%v)\n", request.Transaction.Nonce, uint64(request.Transaction.Nonce)) 127 if chainId := request.Transaction.ChainID; chainId != nil { 128 fmt.Printf("chainid: %v\n", chainId) 129 } 130 if list := request.Transaction.AccessList; list != nil { 131 fmt.Printf("Accesslist\n") 132 for i, el := range *list { 133 fmt.Printf(" %d. %v\n", i, el.Address) 134 for j, slot := range el.StorageKeys { 135 fmt.Printf(" %d. %v\n", j, slot) 136 } 137 } 138 } 139 if request.Transaction.Data != nil { 140 d := *request.Transaction.Data 141 if len(d) > 0 { 142 fmt.Printf("data: %v\n", hexutil.Encode(d)) 143 } 144 } 145 if request.Callinfo != nil { 146 fmt.Printf("\nTransaction validation:\n") 147 for _, m := range request.Callinfo { 148 fmt.Printf(" * %s : %s\n", m.Typ, m.Message) 149 } 150 fmt.Println() 151 } 152 fmt.Printf("\n") 153 showMetadata(request.Meta) 154 fmt.Printf("-------------------------------------------\n") 155 if !ui.confirm() { 156 return SignTxResponse{request.Transaction, false}, nil 157 } 158 return SignTxResponse{request.Transaction, true}, nil 159 } 160 161 // ApproveSignData prompt the user for confirmation to request to sign data 162 func (ui *CommandlineUI) ApproveSignData(request *SignDataRequest) (SignDataResponse, error) { 163 ui.mu.Lock() 164 defer ui.mu.Unlock() 165 166 fmt.Printf("-------- Sign data request--------------\n") 167 fmt.Printf("Account: %s\n", request.Address.String()) 168 if len(request.Callinfo) != 0 { 169 fmt.Printf("\nValidation messages:\n") 170 for _, m := range request.Callinfo { 171 fmt.Printf(" * %s : %s\n", m.Typ, m.Message) 172 } 173 fmt.Println() 174 } 175 fmt.Printf("messages:\n") 176 for _, nvt := range request.Messages { 177 fmt.Printf("\u00a0\u00a0%v\n", strings.TrimSpace(nvt.Pprint(1))) 178 } 179 fmt.Printf("raw data: \n\t%q\n", request.Rawdata) 180 fmt.Printf("data hash: %v\n", request.Hash) 181 fmt.Printf("-------------------------------------------\n") 182 showMetadata(request.Meta) 183 if !ui.confirm() { 184 return SignDataResponse{false}, nil 185 } 186 return SignDataResponse{true}, nil 187 } 188 189 // ApproveListing prompt the user for confirmation to list accounts 190 // the list of accounts to list can be modified by the UI 191 func (ui *CommandlineUI) ApproveListing(request *ListRequest) (ListResponse, error) { 192 ui.mu.Lock() 193 defer ui.mu.Unlock() 194 195 fmt.Printf("-------- List Account request--------------\n") 196 fmt.Printf("A request has been made to list all accounts. \n") 197 fmt.Printf("You can select which accounts the caller can see\n") 198 for _, account := range request.Accounts { 199 fmt.Printf(" [x] %v\n", account.Address.Hex()) 200 fmt.Printf(" URL: %v\n", account.URL) 201 } 202 fmt.Printf("-------------------------------------------\n") 203 showMetadata(request.Meta) 204 if !ui.confirm() { 205 return ListResponse{nil}, nil 206 } 207 return ListResponse{request.Accounts}, nil 208 } 209 210 // ApproveNewAccount prompt the user for confirmation to create new Account, and reveal to caller 211 func (ui *CommandlineUI) ApproveNewAccount(request *NewAccountRequest) (NewAccountResponse, error) { 212 ui.mu.Lock() 213 defer ui.mu.Unlock() 214 215 fmt.Printf("-------- New Account request--------------\n\n") 216 fmt.Printf("A request has been made to create a new account. \n") 217 fmt.Printf("Approving this operation means that a new account is created,\n") 218 fmt.Printf("and the address is returned to the external caller\n\n") 219 showMetadata(request.Meta) 220 if !ui.confirm() { 221 return NewAccountResponse{false}, nil 222 } 223 return NewAccountResponse{true}, nil 224 } 225 226 // ShowError displays error message to user 227 func (ui *CommandlineUI) ShowError(message string) { 228 fmt.Printf("## Error \n%s\n", message) 229 fmt.Printf("-------------------------------------------\n") 230 } 231 232 // ShowInfo displays info message to user 233 func (ui *CommandlineUI) ShowInfo(message string) { 234 fmt.Printf("## Info \n%s\n", message) 235 } 236 237 func (ui *CommandlineUI) OnApprovedTx(tx ethapi.SignTransactionResult) { 238 fmt.Printf("Transaction signed:\n ") 239 if jsn, err := json.MarshalIndent(tx.Tx, " ", " "); err != nil { 240 fmt.Printf("WARN: marshalling error %v\n", err) 241 } else { 242 fmt.Println(string(jsn)) 243 } 244 } 245 246 func (ui *CommandlineUI) showAccounts() { 247 accounts, err := ui.api.ListAccounts(context.Background()) 248 if err != nil { 249 log.Error("Error listing accounts", "err", err) 250 return 251 } 252 if len(accounts) == 0 { 253 fmt.Print("No accounts found\n") 254 return 255 } 256 var msg string 257 var out = new(strings.Builder) 258 if limit := 20; len(accounts) > limit { 259 msg = fmt.Sprintf("\nFirst %d accounts listed (%d more available).\n", limit, len(accounts)-limit) 260 accounts = accounts[:limit] 261 } 262 fmt.Fprint(out, "\n------- Available accounts -------\n") 263 for i, account := range accounts { 264 fmt.Fprintf(out, "%d. %s at %s\n", i, account.Address, account.URL) 265 } 266 fmt.Print(out.String(), msg) 267 } 268 269 func (ui *CommandlineUI) OnSignerStartup(info StartupInfo) { 270 fmt.Print("\n------- Signer info -------\n") 271 for k, v := range info.Info { 272 fmt.Printf("* %v : %v\n", k, v) 273 } 274 go ui.showAccounts() 275 }