-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfiats.go
49 lines (45 loc) · 973 Bytes
/
fiats.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
package bot
import (
"context"
"encoding/json"
)
type Fiat struct {
Code string `json:"code"`
Rate float64 `json:"rate"`
}
func GetFiats(ctx context.Context) ([]*Fiat, error) {
body, err := SimpleRequest(ctx, "GET", "/external/fiats", nil)
if err != nil {
return nil, ServerError(ctx, err)
}
var resp struct {
Data []*Fiat `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 Fiats(ctx context.Context) ([]*Fiat, error) {
body, err := Request(ctx, "GET", "/external/fiats", nil, "")
if err != nil {
return nil, ServerError(ctx, err)
}
var resp struct {
Data []*Fiat `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
}