-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathaddress.go
193 lines (178 loc) · 4.39 KB
/
address.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
package bot
import (
"context"
"encoding/json"
"fmt"
"net/url"
"time"
)
type AddressInput struct {
AssetId string
Label string
Destination string
Tag string
}
type Address struct {
AddressId string `json:"address_id"`
AssetId string `json:"asset_id"`
Label string `json:"label"`
Destination string `json:"destination"`
Tag string `json:"tag"`
Fee string `json:"fee"`
Dust string `json:"dust"`
UpdatedAt string `json:"updated_at"`
}
type SimpleAddress struct {
Destination string `json:"destination"`
Tag string `json:"tag"`
}
func CreateAddress(ctx context.Context, in *AddressInput, user *SafeUser) (*Address, error) {
tipBody := TipBodyForAddressAdd(in.AssetId, in.Destination, in.Tag, in.Label)
var err error
pin, err := signTipBody(tipBody, user.SpendPrivateKey)
if err != nil {
return nil, err
}
encryptedPIN, err := EncryptEd25519PIN(pin, uint64(time.Now().UnixNano()), user)
if err != nil {
return nil, err
}
data, err := json.Marshal(map[string]interface{}{
"asset_id": in.AssetId,
"label": in.Label,
"destination": in.Destination,
"tag": in.Tag,
"pin_base64": encryptedPIN,
})
if err != nil {
return nil, err
}
token, err := SignAuthenticationToken("POST", "/addresses", string(data), user)
if err != nil {
return nil, err
}
body, err := Request(ctx, "POST", "/addresses", data, token)
if err != nil {
return nil, err
}
var resp struct {
Data *Address `json:"data"`
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error.Code > 0 {
return nil, resp.Error
}
return resp.Data, nil
}
func ReadAddress(ctx context.Context, addressId, user *SafeUser) (*Address, error) {
endpoint := fmt.Sprintf("/addresses/%s", addressId)
token, err := SignAuthenticationToken("GET", endpoint, "", user)
if err != nil {
return nil, err
}
body, err := Request(ctx, "GET", endpoint, nil, token)
if err != nil {
return nil, err
}
var resp struct {
Data *Address `json:"data"`
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error.Code > 0 {
return nil, resp.Error
}
return resp.Data, nil
}
func DeleteAddress(ctx context.Context, addressId string, user *SafeUser) error {
tipBody := TipBody(TIPAddressRemove + addressId)
pin, err := signTipBody(tipBody, user.SpendPrivateKey)
if err != nil {
return err
}
encryptedPIN, err := EncryptEd25519PIN(pin, uint64(time.Now().UnixNano()), user)
if err != nil {
return err
}
data, err := json.Marshal(map[string]interface{}{
"pin_base64": encryptedPIN,
})
if err != nil {
return err
}
endpoint := fmt.Sprintf("/addresses/%s/delete", addressId)
token, err := SignAuthenticationToken("POST", endpoint, string(data), user)
if err != nil {
return err
}
body, err := Request(ctx, "POST", endpoint, data, token)
if err != nil {
return err
}
var resp struct {
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return BadDataError(ctx)
}
if resp.Error.Code > 0 {
return resp.Error
}
return nil
}
func GetAddressesByAssetId(ctx context.Context, assetId string, user *SafeUser) ([]*Address, error) {
endpoint := fmt.Sprintf("/assets/%s/addresses", assetId)
token, err := SignAuthenticationToken("GET", endpoint, "", user)
if err != nil {
return nil, err
}
body, err := Request(ctx, "GET", endpoint, nil, token)
if err != nil {
return nil, err
}
var resp struct {
Data []*Address `json:"data"`
Error *Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error != nil {
return nil, resp.Error
}
return resp.Data, nil
}
func CheckAddress(ctx context.Context, asset, destination, tag string) (*SimpleAddress, error) {
v := url.Values{}
v.Set("asset", asset)
v.Set("destination", destination)
if tag != "" {
v.Set("tag", tag)
}
path := fmt.Sprintf("%s", "/external/addresses/check?"+v.Encode())
body, err := Request(ctx, "GET", path, nil, "")
if err != nil {
return nil, ServerError(ctx, err)
}
var resp struct {
Data *SimpleAddress `json:"data"`
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error.Code > 0 {
return nil, resp.Error
}
return resp.Data, nil
}