-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
521 lines (421 loc) · 11.7 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
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
package globalsign
import (
"bytes"
"context"
"crypto/tls"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"reflect"
"strings"
"sync"
"time"
)
const (
clientVersion = "0.0.1"
apiVersion = "v1"
defaultBaseURL = "https://emea.api.dss.globalsign.com:8443" // TODO (galihrivanto): update when have confirmation
baseAPI = "/v2"
userAgent = "globalSign/" + clientVersion
contentType = "application/json;charset=utf-8"
)
// Client manage communication with wdms ap
type Client struct {
sync.Mutex
// HTTP client used to communicate with the DO API.
client *http.Client
// Base URL for API requests.
baseURL *url.URL
// User agent for client
userAgent string
// Auth token for authorization
authToken string
// Optional function called after every successful request made to APIs
onRequestCompleted RequestCompletionCallback
// login / authentication service
LoginService LoginService
// digital signing service (dss)
DigitalSigningService DigitalSigningService
}
// Do sends an API request and returns the API response. The API response is JSON decoded and stored in the value
// pointed to by v, or returned as an error if an API error has occurred. If v implements the io.Writer interface,
// the raw response will be written to v, without attempting to decode it.
func (c *Client) Do(ctx context.Context, req *http.Request, v interface{}) (*Response, error) {
resp, err := DoRequestWithClient(ctx, c.client, req)
if err != nil {
return nil, err
}
if c.onRequestCompleted != nil {
c.onRequestCompleted(req, resp)
}
defer func() {
if rerr := resp.Body.Close(); err == nil {
err = rerr
}
}()
// wrap response
response := newResponse(resp)
err = CheckResponse(resp)
if err != nil {
return response, err
}
if v != nil {
// if v is io.Writer then simply copy response body
if w, ok := v.(io.Writer); ok {
_, err = io.Copy(w, resp.Body)
if err != nil {
return nil, err
}
} else {
err = json.NewDecoder(resp.Body).Decode(v)
if err != nil {
return nil, err
}
}
}
return response, err
}
// NewClient returns a new API client.
func NewClient(httpClient *http.Client) *Client {
if httpClient == nil {
httpClient = http.DefaultClient
}
baseURL, _ := url.Parse(defaultBaseURL)
c := &Client{client: httpClient, baseURL: baseURL, userAgent: userAgent}
c.LoginService = &loginService{client: c}
c.DigitalSigningService = &digitalSigningService{client: c}
return c
}
// ClientOpt are options for New.
type ClientOpt func(*Client) error
// New returns a new Globalsign API client instance.
func New(httpClient *http.Client, opts ...ClientOpt) (*Client, error) {
c := NewClient(httpClient)
for _, opt := range opts {
if err := opt(c); err != nil {
return nil, err
}
}
return c, nil
}
// SetBaseURL is a client option for setting the base URL.
func SetBaseURL(bu string) ClientOpt {
return func(c *Client) error {
u, err := url.Parse(bu)
if err != nil {
return err
}
c.baseURL = u
return nil
}
}
// SetUserAgent is a client option for setting the user agent.
func SetUserAgent(ua string) ClientOpt {
return func(c *Client) error {
c.userAgent = fmt.Sprintf("%s %s", ua, c.userAgent)
return nil
}
}
// SetAuthToken set authorization token which used request authorization
func (c *Client) SetAuthToken(token string) {
c.Lock()
defer c.Unlock()
c.authToken = token
}
// AuthToken get authorization token which used request authorization
func (c *Client) AuthToken() string {
c.Lock()
defer c.Unlock()
return c.authToken
}
// NewRequest creates an API request. A relative URL can be provided in urlStr, which will be resolved to the
// BaseURL of the Client. Relative URLS should always be specified without a preceding slash. If specified, the
// value pointed to by body is JSON encoded and included in as the request body.
func (c *Client) NewRequest(ctx context.Context, method, urlStr string, body interface{}) (*http.Request, error) {
c.Lock()
defer c.Unlock()
u, err := c.baseURL.Parse(urlStr)
if err != nil {
return nil, err
}
buf := new(bytes.Buffer)
if body != nil {
err = json.NewEncoder(buf).Encode(body)
if err != nil {
return nil, err
}
}
req, err := http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
req.Header.Add("Accept", contentType)
req.Header.Add("User-Agent", c.userAgent)
// if auth token is set
// then put token as Authorization header
if c.authToken != "" {
req.Header.Add("Authorization", "Bearer "+c.authToken)
}
return req, nil
}
// OnRequestCompleted sets the DO API request completion callback
func (c *Client) OnRequestCompleted(rc RequestCompletionCallback) {
c.onRequestCompleted = rc
}
// RequestCompletionCallback defines the type of the request callback function
type RequestCompletionCallback func(*http.Request, *http.Response)
// Response wraps standard http Response with default response fields
// which returned from wdms api
type Response struct {
*http.Response
}
// ErrorResponse wrap standard http Response along with error code
// and message which returned from wdms api
type ErrorResponse struct {
// original response
Response *http.Response
// Error code
Code int `json:"code"`
// Description of error
Message string `json:"detail"`
}
func (r *ErrorResponse) Error() string {
return fmt.Sprintf("%d. message: %v", r.Response.StatusCode, r.Message)
}
// ValidationError contains field to field validation error message
type ValidationError map[string]string
func (e ValidationError) Error() string {
s := ""
for k, v := range e {
s += fmt.Sprintf("%s: %v\n", k, v)
}
return s
}
// ListRequest contains common parameter for list request
type ListRequest struct {
Page int `json:"page,omitempty"`
// Number of results to return per page.
Limit int `json:"limit,omitempty"`
// search A search term.
Search string `json:"search,omitempty"`
// ordering
Ordering int `json:"ordering,omitempty"`
}
// ListResult contains common field from api result
type ListResult struct {
Count int `json:"count"`
// next page link
Next string `json:"next"`
Previous string `json:"previous"`
}
// newResponse creates a new Response for the provided http.Response
func newResponse(r *http.Response) *Response {
response := Response{Response: r}
return &response
}
// DoRequest submits an HTTP request.
func DoRequest(ctx context.Context, req *http.Request) (*http.Response, error) {
return DoRequestWithClient(ctx, http.DefaultClient, req)
}
// DoRequestWithClient submits an HTTP request using the specified client.
func DoRequestWithClient(
ctx context.Context,
client *http.Client,
req *http.Request) (*http.Response, error) {
req = req.WithContext(ctx)
return client.Do(req)
}
// CheckResponse checks the API response for errors, and returns them if present. A response is considered an
// error if it has a status code outside the 200 range. API error responses are expected to have either no response
// body, or a JSON response body that maps to ErrorResponse. Any other response body will be silently ignored.
func CheckResponse(r *http.Response) error {
if c := r.StatusCode; c >= 200 && c < 300 {
return nil
}
errorResponse := &ErrorResponse{Response: r}
data, err := ioutil.ReadAll(r.Body)
if err != nil || len(data) == 0 {
return errorResponse
}
// if error code is > 400 then unmarshal to validation error
// otherwise unmarshal to response error
if r.StatusCode > 400 {
validationResponse := &ValidationError{}
err := json.Unmarshal(data, validationResponse)
if err == nil {
return validationResponse
}
}
err = json.Unmarshal(data, errorResponse)
if err != nil {
errorResponse.Message = string(data)
}
// set code
errorResponse.Code = r.StatusCode
return errorResponse
}
// String is a helper routine that allocates a new string value
// to store v and returns a pointer to it.
func String(v string) *string {
p := new(string)
*p = v
return p
}
// Int is a helper routine that allocates a new int32 value
// to store v and returns a pointer to it, but unlike Int32
// its argument value is an int.
func Int(v int) *int {
p := new(int)
*p = v
return p
}
// Bool is a helper routine that allocates a new bool value
// to store v and returns a pointer to it.
func Bool(v bool) *bool {
p := new(bool)
*p = v
return p
}
// StreamToString converts a reader to a string
func StreamToString(stream io.Reader) string {
buf := new(bytes.Buffer)
_, _ = buf.ReadFrom(stream)
return buf.String()
}
// URLQueryEncoder .
type URLQueryEncoder interface {
MarshalURLQuery() string
}
// MarshalURLQuery encode struct into url queries
// using `json` tag as query name reference
func MarshalURLQuery(v interface{}) (queries url.Values) {
// init
queries = url.Values{}
t := reflect.TypeOf(v)
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
// input must be type of `struct`
if t.Kind() != reflect.Struct {
return
}
value := reflect.ValueOf(v)
if value.Kind() == reflect.Ptr {
value = value.Elem()
}
// enumerate the field to get the tag
for i := 0; i < t.NumField(); i++ {
field := t.Field(i)
if field.PkgPath != "" {
continue
}
var query string
var omitEmpty bool
parts := strings.Split(strings.TrimSpace(field.Tag.Get("json")), ",")
if len(parts) == 0 {
query = field.Name
} else {
query = strings.TrimSpace(parts[0])
if len(query) == 0 {
query = field.Name
}
if len(parts) > 1 {
for _, part := range parts[0:] {
if strings.TrimSpace(part) == "omitempty" {
omitEmpty = true
break
}
}
}
}
vv := value.Field(i)
// if field implement Query encoder interface
if encoder, ok := vv.Interface().(URLQueryEncoder); ok {
queries.Add(query, encoder.MarshalURLQuery())
// go to next field
continue
}
switch vv.Interface().(type) {
case string:
if vv.String() == "" && omitEmpty {
break
}
queries.Add(query, vv.String())
case float32, float64:
if vv.Float() == 0.0 && omitEmpty {
break
}
queries.Add(query, fmt.Sprintf("%f", vv.Float()))
case int, int64:
if vv.Int() == 0 && omitEmpty {
break
}
queries.Add(query, fmt.Sprintf("%d", vv.Int()))
case uint, uint64:
if vv.Uint() == 0 && omitEmpty {
break
}
queries.Add(query, fmt.Sprintf("%d", vv.Uint()))
case bool:
queries.Add(query, fmt.Sprintf("%v", vv.Bool()))
case time.Time:
if vv.String() == "" && omitEmpty {
break
}
queries.Add(query, vv.Interface().(time.Time).Format(time.RFC3339Nano))
default:
vqueries := MarshalURLQuery(vv.Interface())
if len(vqueries) > 0 {
queries = mergeQueries(queries, vqueries)
}
}
}
return
}
func mergeQueries(queries ...url.Values) url.Values {
if len(queries) == 0 {
return url.Values{}
}
if len(queries) == 1 {
return queries[0]
}
base := queries[0]
for _, query := range queries[0:] {
for k, v := range query {
if len(v) > 0 {
base[k] = v
}
}
}
return base
}
// NewHTTPClientWithCertificate .
func NewHTTPClientWithCertificate(certPath, keyPath string, options ...bool) (*http.Client, error) {
insecureSkipVerify := true
cert, err := tls.LoadX509KeyPair(certPath, keyPath)
if err != nil {
return nil, err
}
if len(options) > 0 {
insecureSkipVerify = options[0]
}
config := &tls.Config{
InsecureSkipVerify: insecureSkipVerify,
MinVersion: tls.VersionTLS12,
CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256},
PreferServerCipherSuites: true,
CipherSuites: []uint16{
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
},
Certificates: []tls.Certificate{cert},
}
tr := &http.Transport{TLSClientConfig: config}
return &http.Client{Transport: tr}, nil
}