-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathaccount.go
180 lines (162 loc) · 4.4 KB
/
account.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
package accounts
import (
"encoding/json"
"fmt"
"log"
"os"
"os/user"
"path/filepath"
"strings"
"syscall"
gethkeystore "github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/crypto"
"github.com/google/uuid"
"github.com/sahilm/fuzzy"
"golang.org/x/term"
"github.com/tranvictor/jarvis/accounts/types"
"github.com/tranvictor/jarvis/util"
"github.com/tranvictor/jarvis/util/account"
)
func getHomeDir() string {
usr, err := user.Current()
if err != nil {
log.Fatal(err)
}
return usr.HomeDir
}
func getPassword(prompt string) string {
fmt.Print(prompt)
bytePassword, _ := term.ReadPassword(int(syscall.Stdin))
return string(bytePassword)
}
type keystore struct {
Address string `json:"address"`
}
func StorePrivateKeyWithKeystore(privateKey string, passphrase string) (string, error) {
priv, err := crypto.HexToECDSA(privateKey)
if err != nil {
return "", err
}
id, err := uuid.NewRandom()
if err != nil {
return "", err
}
key := &gethkeystore.Key{
Id: id,
Address: crypto.PubkeyToAddress(priv.PublicKey),
PrivateKey: priv,
}
keystoreJson, err := gethkeystore.EncryptKey(
key,
passphrase,
262144, // n
1, // p
)
if err != nil {
return "", nil
}
dir := filepath.Join(getHomeDir(), ".jarvis", "keystores")
os.MkdirAll(dir, os.ModePerm)
path := filepath.Join(dir, fmt.Sprintf("%s.json", key.Address))
return path, os.WriteFile(path, keystoreJson, 0644)
}
func VerifyKeystore(path string) (string, error) {
content, err := os.ReadFile(path)
if err != nil {
return "", err
}
k := &keystore{}
err = json.Unmarshal(content, k)
if err != nil {
return "", err
}
return "0x" + k.Address, nil
}
func StoreAccountRecord(accDesc types.AccDesc) error {
dir := filepath.Join(getHomeDir(), ".jarvis")
os.MkdirAll(dir, os.ModePerm)
path := filepath.Join(dir, fmt.Sprintf("%s.json", accDesc.Address))
content, _ := json.Marshal(accDesc)
return os.WriteFile(path, content, 0644)
}
func UnlockKeystoreAccountWithPassword(ad types.AccDesc, pwd string) (*account.Account, error) {
fromAcc, err := account.NewKeystoreAccount(ad.Keypath, pwd)
if err != nil {
fmt.Printf("Unlocking keystore '%s' failed: %s. Abort!\n", ad.Keypath, err)
return nil, err
}
return fromAcc, nil
}
func UnlockAccount(ad types.AccDesc) (*account.Account, error) {
var fromAcc *account.Account
var err error
switch ad.Kind {
case "keystore":
fmt.Printf("Using keystore: %s\n", ad.Keypath)
pwd := getPassword("Enter passphrase: ")
fmt.Printf("\n")
fromAcc, err = account.NewKeystoreAccount(ad.Keypath, pwd)
if err != nil {
fmt.Printf("Unlocking keystore '%s' failed: %s. Abort!\n", ad.Keypath, err)
return nil, err
}
case "trezor":
fromAcc, err = account.NewTrezorAccount(ad.Derpath, ad.Address)
if err != nil {
fmt.Printf("Creating trezor instance failed: %s\n", err)
return nil, err
}
case "ledger", "ledger-live":
fromAcc, err = account.NewLedgerAccount(ad.Derpath, ad.Address)
if err != nil {
fmt.Printf("Creating ledger instance failed: %s\n", err)
return nil, err
}
default:
return nil, fmt.Errorf("not supported %s device", ad.Kind)
}
return fromAcc, nil
}
func GetAccount(input string) (types.AccDesc, error) {
source := NewFuzzySource()
matches := fuzzy.FindFrom(strings.Replace(input, " ", "_", -1), source)
if len(matches) == 0 {
return types.AccDesc{}, fmt.Errorf("No account is found with '%s'", input)
}
match := matches[0]
return source[match.Index], nil
}
// GetAccounts returns a map address -> account description
// Each description is stored in a json file whose name is
// the address and content is the description.
// All files are kept in ~/.jarvis/
func GetAccounts() map[string]types.AccDesc {
paths, err := filepath.Glob(filepath.Join(getHomeDir(), ".jarvis", "*.json"))
if err != nil {
fmt.Printf("Getting accounts failed: %s.\n", err)
return map[string]types.AccDesc{}
}
result := map[string]types.AccDesc{}
for _, p := range paths {
desc := types.AccDesc{}
content, err := os.ReadFile(p)
if err == nil {
err = json.Unmarshal(content, &desc)
if err != nil {
fmt.Printf(
"Reading account %s description failed: %s. Ignore and continue.\n",
p,
err,
)
} else {
addr, err := util.PathToAddress(p)
if err == nil {
result[addr] = desc
}
}
} else {
fmt.Printf("Reading account description failed: %s. Ignore and continue.\n", err)
}
}
return result
}