-
Notifications
You must be signed in to change notification settings - Fork 0
/
utopia.go
253 lines (220 loc) · 7.06 KB
/
utopia.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package utopiago
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strconv"
"gopkg.in/grignaak/tribool.v1"
)
//Query is a filter for API requests
type Query struct {
Method string `json:"method"`
Token string `json:"token"`
Params map[string]interface{} `json:"params"`
}
//UtopiaClient lets you connect to Utopia Client
type UtopiaClient struct {
Protocol, Host, Token string
Port int
}
//UtopiaClientInterface contains an enumeration of methods
type UtopiaClientInterface interface {
apiQuery(methodName string) map[string]interface{}
GetProfileStatus() map[string]interface{}
GetSystemInfo() map[string]interface{}
GetOwnContact() map[string]interface{}
GetBalance() (float64, error)
UseVoucher(voucherCode string) error
GetFinanceHistory() map[string]interface{}
CheckClientConnection() bool
CreateVoucher(amount float64) error
}
func (c *UtopiaClient) apiQuery(methodName string, params map[string]interface{}) (map[string]interface{}, error) {
var responseMap map[string]interface{}
url := c.Protocol + "://" + c.Host + ":" + strconv.Itoa(c.Port) + "/api/1.0/"
var query = Query{
Method: methodName,
Token: c.Token,
}
if params != nil {
query.Params = params
}
var jsonStr, err = json.Marshal(query)
if err != nil {
return responseMap, err
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return responseMap, err
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
if !json.Valid(body) {
//TODO: return error
return responseMap, errors.New("failed to validate json from client")
}
json.Unmarshal(body, &responseMap)
return responseMap, nil
}
//GetProfileStatus gets data about the status of the current account
func (c *UtopiaClient) GetProfileStatus() (map[string]interface{}, error) {
return c.apiQuery("getProfileStatus", nil)
}
//GetSystemInfo retrieves client system information
func (c *UtopiaClient) GetSystemInfo() (map[string]interface{}, error) {
return c.apiQuery("getSystemInfo", nil)
}
func (c *UtopiaClient) queryResultToInterface(methodName string, params map[string]interface{}) (interface{}, error) {
if !c.CheckClientConnection() {
return nil, errors.New("client disconected")
}
response, err := c.apiQuery(methodName, params)
if result, ok := response["result"]; ok {
return result, err
}
return nil, errors.New("result field doesn't exists in client response")
}
func (c *UtopiaClient) queryResultToInterfaceArray(methodName string, params map[string]interface{}) ([]interface{}, error) {
if !c.CheckClientConnection() {
return nil, errors.New("client disconected")
}
response, err := c.apiQuery(methodName, params)
if result, ok := response["result"]; ok {
//TODO: check type assertion
return result.([]interface{}), err
}
return nil, errors.New("accaptable result doesn't exists in client response")
}
func (c *UtopiaClient) queryResultToString(methodName string, params map[string]interface{}) (string, error) {
if !c.CheckClientConnection() {
return "", errors.New("client disconected")
}
response, err := c.apiQuery(methodName, params)
if result, ok := response["result"]; ok {
resultstr := fmt.Sprintf("%v", result)
return resultstr, err
}
return "", errors.New("result field doesn't exists in client response")
}
func (c *UtopiaClient) queryResultToBool(methodName string, params map[string]interface{}) (bool, error) {
resultstr, err := c.queryResultToString(methodName, params)
resultBool := tribool.FromString(resultstr).WithMaybeAsTrue()
return resultBool, err
}
func (c *UtopiaClient) queryResultToFloat64(methodName string, params map[string]interface{}) (float64, error) {
resultstr, err := c.queryResultToString(methodName, params)
if err != nil {
return 0, err
}
resultFloat, err := strconv.ParseFloat(resultstr, 64)
return resultFloat, err
}
func (c *UtopiaClient) queryResultToInt(methodName string, params map[string]interface{}) (int64, error) {
resultstr, err := c.queryResultToString(methodName, params)
if err != nil {
return 0, err
}
result, err := strconv.ParseInt(resultstr, 10, 64)
return result, err
}
//SetProfileStatus updates data about the status of the current account
func (c *UtopiaClient) SetProfileStatus(status string, mood string) error {
queryMap := make(map[string]interface{})
queryMap["status"] = status
queryMap["mood"] = mood
result, err := c.queryResultToBool("setProfileStatus", queryMap)
if err != nil {
return err
}
if result == false {
return errors.New("failed to set profile status")
}
return nil
}
//GetOwnContact asks for full details of the current account
func (c *UtopiaClient) GetOwnContact() (map[string]interface{}, error) {
return c.apiQuery("getOwnContact", nil)
}
//CheckClientConnection - checks if there are any errors when contacting the client
func (c *UtopiaClient) CheckClientConnection() bool {
_, err := c.GetSystemInfo()
if err != nil {
return false
}
return true
}
//UseVoucher - uses the voucher and returns an error on failure
func (c *UtopiaClient) UseVoucher(voucherID string) (string, error) {
params := map[string]interface{}{
"voucherid": voucherID,
}
return c.queryResultToString("useVoucher", params)
}
//GetFinanceHistory request the necessary financial statistics
func (c *UtopiaClient) GetFinanceHistory(filters string, referenceNumber string) ([]interface{}, error) {
params := map[string]interface{}{
"filters": filters,
"referenceNumber": referenceNumber,
}
return c.queryResultToInterfaceArray("getFinanceSystemInformation", params)
}
//GetBalance request account Crypton balance
func (c *UtopiaClient) GetBalance() (float64, error) {
result, err := c.queryResultToFloat64("getBalance", nil)
if err != nil {
return 0, err
}
return result, nil
}
//CreateVoucher requests the creation of a new voucher. it returns referenceNumber
func (c *UtopiaClient) CreateVoucher(amount float64) (string, error) {
params := map[string]interface{}{
"amount": amount,
}
result, err := c.queryResultToString("createVoucher", params)
if err != nil {
return "", err
}
if result == "" {
return "", errors.New("failed to create voucher, empty string in client response")
}
return result, nil
}
//SetWebSocketState - set WSS Notification state
func (c *UtopiaClient) SetWebSocketState(enabled bool, port int) error {
var enabledStr string = "0"
if enabled {
enabledStr = "1"
}
params := map[string]interface{}{
"enabled": enabledStr,
"port": port,
}
result, err := c.queryResultToString("setWebSocketState", params)
if err != nil {
return err
}
if result == "" {
return errors.New("failed to set websocker state")
}
return nil
}
//GetWebSocketState - returns WSS Notifications state, 0 - disabled or active listening port number.
func (c *UtopiaClient) GetWebSocketState() (int64, error) {
result, err := c.queryResultToInt("getWebSocketState", nil)
if err != nil {
return 0, err
}
return result, nil
}
//ServeWs ..
func (c *UtopiaClient) ServeWs() error {
//TODO
return nil
}