forked from immutability-io/vault-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path_names.go
181 lines (158 loc) · 4.98 KB
/
path_names.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
// Copyright © 2018 Immutability, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"fmt"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/logical"
)
// AccountNames holds a list of names
type AccountNames struct {
Names []string `json:"names"`
}
func namesPaths(b *EthereumBackend) []*framework.Path {
return []*framework.Path{
&framework.Path{
Pattern: "names/?",
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ListOperation: b.pathNamesList,
},
HelpSynopsis: "List all the account names",
HelpDescription: `
All the names of accounts will be listed.
`,
},
&framework.Path{
Pattern: "names/" + framework.GenericNameRegex("name"),
HelpSynopsis: "Lookup a account's address by name.",
HelpDescription: `
Lookup a account's address by name.
`,
Fields: map[string]*framework.FieldSchema{
"name": &framework.FieldSchema{Type: framework.TypeString},
},
ExistenceCheck: b.pathExistenceCheck,
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ReadOperation: b.pathNamesRead,
},
},
&framework.Path{
Pattern: "names/" + framework.GenericNameRegex("name") + "/balance",
HelpSynopsis: "Retrieve this accounts balance.",
HelpDescription: `
Retrieve this accounts balance.
`,
Fields: map[string]*framework.FieldSchema{
"name": &framework.FieldSchema{Type: framework.TypeString},
},
ExistenceCheck: b.pathExistenceCheck,
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ReadOperation: b.pathAccountBalanceRead,
},
},
&framework.Path{
Pattern: "names/" + framework.GenericNameRegex("name") + "/verify",
HelpSynopsis: "Verify that data was signed by a particular named account.",
HelpDescription: `
Verify that data was signed by a particular named account
`,
Fields: map[string]*framework.FieldSchema{
"name": &framework.FieldSchema{Type: framework.TypeString},
"data": &framework.FieldSchema{
Type: framework.TypeString,
Description: "The data to verify the signature of.",
},
"signature": &framework.FieldSchema{
Type: framework.TypeString,
Description: "The signature to verify.",
},
},
ExistenceCheck: b.pathExistenceCheck,
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.UpdateOperation: b.pathNamesVerify,
},
},
}
}
func (b *EthereumBackend) pathNamesRead(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
_, err := b.configured(ctx, req)
if err != nil {
return nil, err
}
name := data.Get("name").(string)
account, err := b.readName(ctx, req, name)
if err != nil {
return nil, err
}
if account == nil {
return nil, nil
}
// Return the secret
return &logical.Response{
Data: map[string]interface{}{
"address": account.Address,
},
}, nil
}
func (b *EthereumBackend) pathNamesList(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
_, err := b.configured(ctx, req)
if err != nil {
return nil, err
}
vals, err := req.Storage.List(ctx, "names/")
if err != nil {
return nil, err
}
return logical.ListResponse(vals), nil
}
func (b *EthereumBackend) readName(ctx context.Context, req *logical.Request, name string) (*AccountAddress, error) {
path := fmt.Sprintf("names/%s", name)
entry, err := req.Storage.Get(ctx, path)
if err != nil {
return nil, err
}
if entry == nil {
return nil, nil
}
var accountAddress AccountAddress
err = entry.DecodeJSON(&accountAddress)
if entry == nil {
return nil, fmt.Errorf("failed to deserialize named account at %s", path)
}
return &accountAddress, nil
}
func (b *EthereumBackend) pathNamesVerify(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
_, err := b.configured(ctx, req)
if err != nil {
return nil, err
}
name := data.Get("name").(string)
return b.verifySignature(ctx, req, data, name)
}
func (b *EthereumBackend) pathAccountBalanceRead(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
name := data.Get("name").(string)
balance, address, exchangeValue, err := b.readAccountBalance(ctx, req, name)
if err != nil {
return nil, err
}
// Return the secret
return &logical.Response{
Data: map[string]interface{}{
"address": address,
"balance": balance.String(),
"balance_in_usd": exchangeValue,
},
}, nil
}