-
Notifications
You must be signed in to change notification settings - Fork 5
/
token_client.go
80 lines (64 loc) · 1.53 KB
/
token_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
package incognia
import (
"encoding/json"
"errors"
"net/http"
"strconv"
"time"
)
const (
tokenNetClientTimeout = 5 * time.Second
)
var (
ErrInvalidCredentials = errors.New("invalid credentials")
)
type TokenClient struct {
ClientID string
ClientSecret string
netClient *http.Client
tokenEndpoint string
}
type TokenClientConfig struct {
ClientID string
ClientSecret string
Timeout time.Duration
}
func NewTokenClient(config *TokenClientConfig) *TokenClient {
incogniaEndpoints := getEndpoints()
timeout := config.Timeout
if timeout == 0 {
timeout = tokenNetClientTimeout
}
return &TokenClient{
ClientID: config.ClientID,
ClientSecret: config.ClientSecret,
netClient: &http.Client{Timeout: timeout},
tokenEndpoint: incogniaEndpoints.Token,
}
}
func (tm TokenClient) requestToken() (Token, error) {
req, err := http.NewRequest("POST", tm.tokenEndpoint, nil)
if err != nil {
return nil, err
}
req.SetBasicAuth(tm.ClientID, tm.ClientSecret)
req.Header.Add("content-type", "application/x-www-form-urlencoded")
res, err := tm.netClient.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if res.StatusCode == http.StatusUnauthorized {
return nil, ErrInvalidCredentials
}
if res.StatusCode != http.StatusOK {
return nil, errors.New("Error refreshing token: " + strconv.Itoa(res.StatusCode))
}
result := &accessToken{
CreatedAt: time.Now().Unix(),
}
if err := json.NewDecoder(res.Body).Decode(result); err != nil {
return nil, err
}
return result, nil
}