-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathoauth_keys_credentials.go
138 lines (118 loc) · 2.98 KB
/
oauth_keys_credentials.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
package configuration
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/url"
"strings"
"time"
"github.com/checkout/checkout-sdk-go/errors"
)
type (
OAuthSdkCredentials struct {
//HttpClient
ClientId string
ClientSecret string
AuthorizationUri string
Scopes []string
AccessToken *OAuthAccessToken
Log StdLogger
}
OAuthAccessToken struct {
Token string
ExpirationDate time.Time
}
OAuthServiceResponse struct {
AccessToken string `json:"access_token,omitempty"`
ExpiresIn time.Duration `json:"expires_in,omitempty"`
}
)
func NewOAuthSdkCredentials(
clientId,
clientSecret,
authorizationUri string,
scopes []string,
logger StdLogger,
) (*OAuthSdkCredentials, error) {
if logger == nil {
logger = DefaultLogger()
}
sdkCredentials := OAuthSdkCredentials{
ClientId: clientId,
ClientSecret: clientSecret,
AuthorizationUri: authorizationUri,
Scopes: scopes,
Log: logger,
}
err := sdkCredentials.GetAccessToken()
if err != nil {
return nil, err
}
return &sdkCredentials, nil
}
func (f *OAuthSdkCredentials) GetAuthorization(authorizationType AuthorizationType) (*SdkAuthorization, error) {
switch authorizationType {
case PublicKeyOrOauth, SecretKeyOrOauth, OAuth:
err := f.GetAccessToken()
if err != nil {
return nil, err
}
return &SdkAuthorization{
PlatformType: DefaultOAuth,
Credential: f.AccessToken.Token,
}, nil
default:
return nil, errors.CheckoutAuthorizationError("Invalid authorization type")
}
}
func (f *OAuthSdkCredentials) GetAccessToken() error {
if f.AccessToken != nil && f.AccessToken.IsValid() {
return nil
}
data := url.Values{}
data.Set("client_id", f.ClientId)
data.Set("client_secret", f.ClientSecret)
data.Set("grant_type", "client_credentials")
data.Set("scope", strings.Join(f.Scopes, " "))
req, err := http.NewRequest(http.MethodPost, f.AuthorizationUri, strings.NewReader(data.Encode()))
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
client := http.Client{Timeout: time.Duration(5) * time.Second}
f.Log.Printf("post: %s", f.AuthorizationUri)
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
var oauthResp OAuthServiceResponse
err = json.Unmarshal(body, &oauthResp)
if err != nil {
return err
}
if resp.StatusCode >= http.StatusBadRequest {
var oauthErr errors.CheckoutOAuthError
err = json.Unmarshal(body, &oauthErr)
if err != nil {
return err
}
return errors.CheckoutAuthorizationError(oauthErr.Description)
}
accessToken := &OAuthAccessToken{
Token: oauthResp.AccessToken,
ExpirationDate: time.Now().Add(oauthResp.ExpiresIn * time.Second),
}
f.AccessToken = accessToken
return nil
}
func (t *OAuthAccessToken) IsValid() bool {
if t.Token == "" {
return false
}
return t.ExpirationDate.After(time.Now())
}