-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
77 lines (60 loc) · 1.46 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
package apigee
import (
b64 "encoding/base64"
"fmt"
"io"
"net/http"
"time"
)
const Host string = "https://apigee.googleapis.com"
type Client struct {
HTTPClient *http.Client
Host string
OAuthToken string
Username string
Password string
}
func NewClient(host, oAuthToken string, username string, password string) (*Client, error) {
c := Client{
HTTPClient: &http.Client{Timeout: 10 * time.Second},
Host: Host,
}
if host != "" {
c.Host = host
}
if oAuthToken == "" {
if username == "" || password == "" {
return nil, fmt.Errorf("define oAuthToken or username and password")
} else {
c.Username = username
c.Password = password
}
} else {
c.OAuthToken = oAuthToken
}
return &c, nil
}
func (c *Client) doRequest(req *http.Request) ([]byte, error) {
if c.Username != "" && c.Password != "" {
creds := fmt.Sprintf("%s:%s", c.Username, c.Password)
b64Creds := b64.StdEncoding.EncodeToString([]byte(creds))
req.Header.Set("Authorization", fmt.Sprintf("Basic %s", b64Creds))
}
if c.OAuthToken != "" {
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.OAuthToken))
}
req.Header.Set("Content-Type", "application/json")
res, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
return nil, err
}
if res.StatusCode >= 400 {
return nil, fmt.Errorf("status: %d, body: %s", res.StatusCode, body)
}
return body, err
}