-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
105 lines (88 loc) · 2.32 KB
/
api.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
package api
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
)
type APIResponse struct {
Kind string `json:"kind"`
Message string `json:"message"`
Data json.RawMessage `json:"data"`
}
type ClientConfig struct {
StartTime int64 `json:"startTime"`
//EndTime int64 `json:"endTime"`
}
type ChallengeSolve struct {
ID string `json:"id"`
CreatedAt int64 `json:"createdAt"`
UserID string `json:"userId"`
UserName string `json:"userName"`
}
type ChallengeSolvesData struct {
Solves []ChallengeSolve `json:"solves"`
}
type GetChallengeSolvesParams struct {
Limit int
Offset int
}
type ResponseError = APIResponse
func (e *ResponseError) Error() string {
return e.Kind + ": " + e.Message
}
func parseResponse(resp *http.Response, expectedKind string, data interface{}) error {
var apiResp APIResponse
if err := json.NewDecoder(resp.Body).Decode(&apiResp); err != nil {
return err
}
if apiResp.Kind != expectedKind {
err := ResponseError(apiResp)
return &err
}
if data != nil {
if err := json.Unmarshal(apiResp.Data, data); err != nil {
return err
}
}
return nil
}
type APIClient struct {
baseURL string
httpClient *http.Client
}
func NewClient(baseURL string) *APIClient {
return NewClientWithHTTPClient(baseURL, http.DefaultClient)
}
func NewClientWithHTTPClient(baseURL string, httpClient *http.Client) *APIClient {
return &APIClient{
baseURL: strings.TrimRight(baseURL, "/"),
httpClient: httpClient,
}
}
func (c *APIClient) GetChallengeSolves(challID string, params GetChallengeSolvesParams) ([]ChallengeSolve, error) {
qs := url.Values{}
qs.Add("limit", fmt.Sprint(params.Limit))
qs.Add("offset", fmt.Sprint(params.Offset))
resp, err := c.httpClient.Get(c.baseURL + fmt.Sprintf("/api/v1/challs/%s/solves?%s", url.PathEscape(challID), qs.Encode()))
if err != nil {
return nil, err
}
var data ChallengeSolvesData
if err := parseResponse(resp, "goodChallengeSolves", &data); err != nil {
return nil, err
}
return data.Solves, nil
}
func (c *APIClient) GetClientConfig() (*ClientConfig, error) {
resp, err := c.httpClient.Get(c.baseURL + "/api/v1/integrations/client/config")
if err != nil {
return nil, err
}
var data ClientConfig
if err := parseResponse(resp, "goodClientConfig", &data); err != nil {
return nil, err
}
return &data, nil
}