-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaybook.go
465 lines (385 loc) · 10.4 KB
/
paybook.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
package paybook
import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"time"
)
const (
apiPrefix = "https://sync.paybook.com/v1"
staticPrefix = "https://s.paybook.com"
)
type Time time.Time
type StatusCodes []StatusCode
func (sc StatusCodes) Last() int {
v := []StatusCode(sc)
if len(v) < 1 {
return 1
}
return v[len(v)-1].Code
}
func (t *Time) UnmarshalJSON(data []byte) error {
ut, err := strconv.ParseInt(string(data), 10, 64)
if err != nil {
return err
}
*t = Time(time.Unix(ut, 0))
return nil
}
type asset string
func (a *asset) UnmarshalJSON(data []byte) error {
s := string(data)
if s == "" {
return nil
}
var assetURL string
if err := json.Unmarshal(data, &assetURL); err != nil {
return err
}
*a = asset(staticPrefix + assetURL)
return nil
}
type Account struct {
AccountType string `json:"account_type"`
Balance float64 `json:"balance"`
Currency string `json:"currency"`
RefreshedAt *Time `json:"dt_refresh"`
//Extra interface{} `json:"extra"`
IDAccount string `json:"id_account"`
IDAccountType string `json:"id_account_type"`
IDCredential string `json:"id_credential"`
//IDExternal interface{} `json:"id_external"`
IDSite string `json:"id_site"`
IDSiteOrganization string `json:"id_site_organization"`
IDUser string `json:"id_user"`
IsDisable int `json:"is_disable"`
Name string `json:"name"`
Number string `json:"number"`
Site SiteOrganization `json:"site"`
}
type Attachment struct {
IDAttachment string `json:"id_attachment"`
IDAttachmentType string `json:"id_attachment_type"`
IsValid int `json:"is_valid"`
File string `json:"file"`
MIME string `json:"mime"`
URL asset `json:"url"`
}
type Transaction struct {
IDTransaction string `json:"id_transaction"`
IDUser string `json:"id_user"`
IDSite string `json:"id_site"`
IDSiteOrganization string `json:"id_site_organization"`
IDSiteOrganizationType string `json:"id_site_organization_type"`
IDAccount string `json:"id_account"`
IDAccountType string `json:"id_account_type"`
IDCurrency string `json:"id_currency"`
IsDisable int `json:"is_disable"`
Amount float64 `json:"amount"`
Currency string `json:"currency"`
Reference interface{} `json:"reference"`
Keywords interface{} `json:"keywords"`
Extra interface{} `json:"extra"`
Attachments []Attachment `json:"attachments"`
CreatedAt *Time `json:"dt_transaction"`
RefresedAt *Time `json:"dt_refresh"`
DisabledAt *Time `json:"dt_disable"`
Description string `json:"description"`
}
type SiteOrganization struct {
IDSiteOrganization string `json:"id_site_organization"`
IDSiteOrganizationType string `json:"id_site_organization_type"`
IDCountry string `json:"id_country"`
Name string `json:"name"`
Avatar asset `json:"avatar"`
SmallCover asset `json:"small_cover"`
Cover asset `json:"cover"`
Organization string `json:"organization"`
TimeZone string `json:"time_zone"`
}
type StatusCode struct {
Code int `json:"code"`
}
type CredentialRequest struct {
IDSite string `json:"id_site"`
IDUser string `json:"id_user"`
Credentials map[string]string `json:"credentials"`
Token string `json:"token"`
}
type AccountCredential struct {
IDCredential string `json:"id_credential"`
Username string `json:"username"`
WS string `json:"ws"`
Status string `json:"status"`
TFA string `json:"twofa"`
}
type Envelope struct {
RID string `json:"rid"`
Code int `json:"code"`
Status bool `json:"status"`
Errors interface{} `json:"errors"`
Message *string `json:"message"`
}
type User struct {
Name string `json:"name"`
ID string `json:"id_user,omitempty"`
CreatedAt *Time `json:"dt_create"`
ModifiedAt *Time `json:"dt_modify"`
}
type Session struct {
Token string `json:"token"`
Key string `json:"key"`
IV string `json:"iv"`
}
type Client struct {
APIKey string
httpClient *http.Client
}
type Credential struct {
Name string `json:"name"`
Type string `json:"type"`
Label string `json:"label"`
Required bool `json:"required"`
Username bool `json:"username"`
Validation interface{} `json:"validation,omitempty"`
}
type Catalogue struct {
IDSite string `json:"id_site"`
IDSiteOrganization string `json:"id_site_organization"`
IDSiteOrganizationType string `json:"id_site_organization_type"`
Name string `json:"name"`
Credentials []Credential `json:"credentials"`
}
func NewClient(apiKey string) (*Client, error) {
if apiKey == "" {
return nil, errors.New("Missing API key")
}
return &Client{
httpClient: &http.Client{}, // TODO: timeout, etc.
APIKey: apiKey,
}, nil
}
func (c *Client) CreateUser(user *User) (*User, error) {
res := struct {
Envelope
Response *User `json:"response,omitempty"`
}{}
err := c.post("/users", nil, user, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) Users(params url.Values) ([]User, error) {
res := struct {
Envelope
Response []User `json:"response,omitempty"`
}{}
err := c.get("/users", params, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
if len(res.Response) < 1 {
return nil, errors.New("empty result")
}
return res.Response, nil
}
func (c *Client) CreateSession(user *User) (*Session, error) {
res := struct {
Envelope
Response *Session `json:"response,omitempty"`
}{}
err := c.post("/sessions", nil, user, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) Transactions(params url.Values) ([]Transaction, error) {
res := struct {
Envelope
Response []Transaction `json:"response,omitempty"`
}{}
err := c.get("/transactions", params, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) Accounts(params url.Values) ([]Account, error) {
res := struct {
Envelope
Response []Account `json:"response,omitempty"`
}{}
err := c.get("/accounts", params, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) Status(statusURL string, params url.Values) (StatusCodes, error) {
res := struct {
Envelope
Response StatusCodes `json:"response,omitempty"`
}{}
err := c.get(statusURL, params, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) RemoveToken(token string) (bool, error) {
res := struct {
Envelope
Response bool `json:"response,omitempty"`
}{}
err := c.delete("/sessions/"+token, nil, &res)
if err != nil {
return false, err
}
return res.Response, nil
}
func (c *Client) ValidToken(token string) (bool, error) {
res := struct {
Envelope
Response bool `json:"response,omitempty"`
}{}
err := c.get("/sessions/"+token+"/verify", nil, &res)
if err != nil {
return false, err
}
if !res.Status {
return false, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) CreateCredential(user *CredentialRequest) (*AccountCredential, error) {
res := struct {
Envelope
Response *AccountCredential `json:"response,omitempty"`
}{}
err := c.post("/credentials", nil, user, &res)
if err != nil {
return nil, err
}
if !res.Status {
return nil, errors.New(*res.Message)
}
return res.Response, nil
}
func (c *Client) SiteOrganizations() ([]SiteOrganization, error) {
res := struct {
Envelope
Response []SiteOrganization `json:"response,omitempty"`
}{}
err := c.get("/catalogues/site_organizations", nil, &res)
if err != nil {
return nil, err
}
return res.Response, nil
}
func (c *Client) Catalogues(params url.Values) ([]Catalogue, error) {
res := struct {
Envelope
Response []Catalogue `json:"response,omitempty"`
}{}
err := c.get("/catalogues/sites", params, &res)
if err != nil {
return nil, err
}
return res.Response, nil
}
func (c *Client) get(endpoint string, params url.Values, dest interface{}) error {
res, err := c.httpClient.Get(c.signEndpoint(endpoint, params))
if err != nil {
return err
}
defer res.Body.Close()
out, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
if err := json.Unmarshal(out, dest); err != nil {
return err
}
return nil
}
func (c *Client) post(endpoint string, params url.Values, data interface{}, dest interface{}) error {
buf, err := json.Marshal(data)
if err != nil {
return err
}
res, err := c.httpClient.Post(c.signEndpoint(endpoint, params), "application/json", bytes.NewBuffer(buf))
if err != nil {
return err
}
defer res.Body.Close()
out, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
if err := json.Unmarshal(out, dest); err != nil {
return err
}
return nil
}
func (c *Client) delete(endpoint string, params url.Values, dest interface{}) error {
req, err := http.NewRequest("DELETE", c.signEndpoint(endpoint, params), nil)
if err != nil {
return err
}
res, err := c.httpClient.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
out, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
if err := json.Unmarshal(out, dest); err != nil {
return err
}
return nil
}
func (c *Client) signEndpoint(endpoint string, params url.Values) string {
if params == nil {
params = url.Values{}
}
if params.Get("api_key") == "" {
params.Set("api_key", c.APIKey)
}
fqu := endpoint
if strings.HasPrefix(fqu, "/") {
fqu = apiPrefix + endpoint
}
uri, err := url.Parse(fqu)
if err != nil {
panic(err.Error())
}
uri.RawQuery = params.Encode()
return uri.String()
}