-
Notifications
You must be signed in to change notification settings - Fork 0
/
rns.go
137 lines (105 loc) · 2.68 KB
/
rns.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
package rnsgo
import (
"errors"
"github.com/go-resty/resty/v2"
)
const (
// RNSRestApiUrl is the base url for the RNS REST API
RNSRestApiUrl = "https://rns.rest"
// RNSRestApiHeaderName is the header name for the RNS REST API
RNSRestApiHeaderName = "X-LIB"
// RNSRestApiHeaderNameValue is the header value for the RNS REST API
RNSRestApiHeaderNameValue = "rns.go lib"
// RNSLabelSuffix is the suffix for RNS labels
RNSLabelSuffix = ".ron"
// RoninAddressPrefix is the prefix for Ronin addresses
RoninAddressPrefix = "ronin:"
// EthAddressPrefix is the prefix for Ethereum addresses
EthAddressPrefix = "0x"
// ErrInvalidName Error Invalid Name
ErrInvalidName = "invalid_name"
// ErrInvalidAddress Error Invalid Address
ErrInvalidAddress = "invalid_address"
// ErrInvalidBatchRequest Error Invalid Batch Request
ErrInvalidBatchRequest = "invalid_batch_request"
)
func NewClient(options ...string) RNS {
host := RNSRestApiUrl
if len(options) > 0 {
host = options[0]
}
return RNS{
client: resty.
New().
SetBaseURL(host).
SetHeader(RNSRestApiHeaderName, RNSRestApiHeaderNameValue),
}
}
func (r *RNS) GetAddress(name Name) (Address, error) {
if !name.Valid() {
return "", errors.New(ErrInvalidName)
}
var response struct {
Address Address `json:"address"`
}
_, err := r.client.R().
SetResult(&response).
SetPathParams(map[string]string{
"name": name.String(),
}).
Get("/resolve/{name}")
if err != nil {
return "", err
}
return response.Address, nil
}
func (r *RNS) GetName(address Address) (Name, error) {
if !address.Valid() {
return "", errors.New(ErrInvalidAddress)
}
var response struct {
Name Name `json:"name"`
}
_, err := r.client.R().
SetResult(&response).
SetPathParams(map[string]string{
"address": address.String(),
}).
Get("/lookup/{address}")
if err != nil {
return "", err
}
return response.Name, nil
}
func (r *RNS) GetNameBatch(addresses []Address) (BatchNameResponse, error) {
var response BatchNameResponse
for _, address := range addresses {
if !address.Valid() {
return nil, errors.New(ErrInvalidBatchRequest)
}
}
_, err := r.client.R().
SetResult(&response).
SetBody(BatchAddressRequest{Addresses: addresses}).
Post("/batch/lookup")
if err != nil {
return nil, err
}
return response, nil
}
func (r *RNS) GetAddressBatch(names []Name) (BatchAddressResponse, error) {
for _, name := range names {
if !name.Valid() {
return nil, errors.New(ErrInvalidBatchRequest)
}
}
var response BatchAddressResponse
_, err := r.client.R().
SetResult(&response).
SetBody(BatchNameRequest{Names: names}).
Post("/batch/resolve")
if err != nil {
return nil, err
}
return response, nil
}