-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
100 lines (82 loc) · 2.1 KB
/
client.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
package client
import (
"io/ioutil"
"log"
"net/http"
)
// Client struct contains the http client and its configuration.
type Client struct {
conf Configuration
client *http.Client
}
// NewClient : Creation of a new client
func NewClient(conf Configuration) *Client {
return &Client{conf: conf}
}
// Key return the current Key for the api.
func (client *Client) Key() string {
return client.conf.Key
}
// API request method, resource and params
type APIRequest struct {
method string
resource string
params map[string]string
}
// Adds parameters in the request
func (apiReq *APIRequest) WithParam(param string, value string) *APIRequest {
apiReq.params[param] = value
return apiReq
}
// Call discovery API to get json string or an error
func (client *Client) Call(apiReq *APIRequest) (string, error) {
if client.client == nil {
client.client = &http.Client{Timeout: client.conf.Timeout}
}
apiReq.WithParam("apikey", client.Key())
req, err := client.buildHttpReq(apiReq)
if err != nil {
log.Println("call:", err)
return "", err
}
log.Println(req.URL.String())
log.Flags()
resp, err := client.client.Do(req)
if err != nil {
log.Println("call:", err)
return "", err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Println("call:", err)
return "", err
}
return string(body), nil
}
// Creates a basic API request
func BaseAPIReq() *APIRequest {
apiReq := &APIRequest{method: "GET", params: make(map[string]string)}
return apiReq
}
// Add resource to the API request
func (apiRep *APIRequest) WithResource(resource string) *APIRequest {
apiRep.resource = resource
return apiRep
}
func (client *Client) buildHttpReq(request *APIRequest) (*http.Request, error) {
req, err := http.NewRequest(request.method, client.urlWith(request.resource), nil)
if err != nil {
log.Println("buildHttpReq:", err)
return nil, err
}
q := req.URL.Query()
for key, value := range request.params {
q.Add(key, value)
}
req.URL.RawQuery = q.Encode()
return req, nil
}
func (client *Client) urlWith(resource string) string {
return client.conf.URL + resource
}