-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoauth2.go
More file actions
232 lines (202 loc) · 5.77 KB
/
oauth2.go
File metadata and controls
232 lines (202 loc) · 5.77 KB
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
// Copyright 2017-2026 Allow2 Pty Ltd. All rights reserved.
// Use of this source code is governed by the Allow2 API and SDK Licence.
package allow2service
import (
"fmt"
"net/url"
)
// oauth2Manager handles the OAuth2 authorization flow for Allow2 Service API integrations.
type oauth2Manager struct {
clientID string
clientSecret string
tokenStorage TokenStorage
httpClient HTTPClient
apiHost string
}
// refreshBuffer is the number of seconds before actual expiry to trigger a refresh.
const refreshBuffer = 300
// GetAuthorizeURL builds the OAuth2 authorization URL.
func (m *oauth2Manager) GetAuthorizeURL(userID, redirectURI, state string) string {
params := url.Values{}
params.Set("response_type", "code")
params.Set("client_id", m.clientID)
params.Set("redirect_uri", redirectURI)
params.Set("user_id", userID)
if state != "" {
params.Set("state", state)
}
return m.apiHost + "/oauth2/authorize?" + params.Encode()
}
// ExchangeCode exchanges an authorization code for access and refresh tokens.
func (m *oauth2Manager) ExchangeCode(userID, code, redirectURI string) (*OAuthTokens, error) {
response, err := m.httpClient.Post(
m.apiHost+"/oauth2/token",
map[string]interface{}{
"grant_type": "authorization_code",
"code": code,
"redirect_uri": redirectURI,
"client_id": m.clientID,
"client_secret": m.clientSecret,
},
nil,
)
if err != nil {
return nil, &ApiError{
Allow2Error: Allow2Error{Message: fmt.Sprintf("OAuth2 token exchange request failed: %v", err)},
}
}
if !response.IsSuccess() {
body := response.JSON()
desc := ""
if body != nil {
if d, ok := body["error_description"].(string); ok {
desc = d
}
}
if desc == "" {
desc = response.Body
}
return nil, &ApiError{
Allow2Error: Allow2Error{Message: "OAuth2 token exchange failed: " + desc},
HTTPStatusCode: response.StatusCode,
ResponseBody: body,
}
}
body := response.JSON()
if body == nil {
return nil, &ApiError{
Allow2Error: Allow2Error{Message: "OAuth2 token exchange returned invalid JSON"},
HTTPStatusCode: response.StatusCode,
}
}
tokens := OAuthTokensFromAPIResponse(body)
if err := m.tokenStorage.Store(userID, tokens); err != nil {
return nil, &Allow2Error{Message: fmt.Sprintf("Failed to store tokens: %v", err)}
}
return tokens, nil
}
// GetAccessToken returns a valid access token, refreshing if necessary.
func (m *oauth2Manager) GetAccessToken(userID string) (string, error) {
tokens, err := m.tokenStorage.Retrieve(userID)
if err != nil {
return "", &TokenExpiredError{
Allow2Error: Allow2Error{Message: fmt.Sprintf("Failed to retrieve tokens: %v", err)},
UserID: userID,
}
}
if tokens == nil {
return "", &TokenExpiredError{
Allow2Error: Allow2Error{Message: "No tokens stored for user. Authorization required."},
UserID: userID,
}
}
if !tokens.IsExpired(refreshBuffer) {
return tokens.AccessToken, nil
}
refreshed, err := m.RefreshTokens(userID, tokens)
if err != nil {
return "", err
}
return refreshed.AccessToken, nil
}
// RefreshTokens refreshes the OAuth2 tokens using the refresh token.
func (m *oauth2Manager) RefreshTokens(userID string, tokens *OAuthTokens) (*OAuthTokens, error) {
response, err := m.httpClient.Post(
m.apiHost+"/oauth2/token",
map[string]interface{}{
"grant_type": "refresh_token",
"refresh_token": tokens.RefreshToken,
"client_id": m.clientID,
"client_secret": m.clientSecret,
},
nil,
)
if err != nil {
_ = m.tokenStorage.Delete(userID)
return nil, &TokenExpiredError{
Allow2Error: Allow2Error{Message: fmt.Sprintf("OAuth2 token refresh request failed: %v", err)},
UserID: userID,
}
}
if !response.IsSuccess() {
_ = m.tokenStorage.Delete(userID)
return nil, &TokenExpiredError{
Allow2Error: Allow2Error{
Message: fmt.Sprintf("OAuth2 token refresh failed. Re-authorization required. HTTP %d", response.StatusCode),
},
UserID: userID,
}
}
body := response.JSON()
if body == nil {
_ = m.tokenStorage.Delete(userID)
return nil, &TokenExpiredError{
Allow2Error: Allow2Error{Message: "OAuth2 token refresh returned invalid JSON"},
UserID: userID,
}
}
newTokens := OAuthTokensFromAPIResponse(body)
if err := m.tokenStorage.Store(userID, newTokens); err != nil {
return nil, &Allow2Error{Message: fmt.Sprintf("Failed to store refreshed tokens: %v", err)}
}
return newTokens, nil
}
// CheckPairingStatus checks whether a user's service account pairing is still valid.
func (m *oauth2Manager) CheckPairingStatus(userID string) bool {
exists, err := m.tokenStorage.Exists(userID)
if err != nil || !exists {
return false
}
accessToken, err := m.GetAccessToken(userID)
if err != nil {
return false
}
response, err := m.httpClient.Post(
m.apiHost+"/oauth2/checkStatus",
map[string]interface{}{
"access_token": accessToken,
"client_id": m.clientID,
"client_secret": m.clientSecret,
},
nil,
)
if err != nil || !response.IsSuccess() {
return false
}
body := response.JSON()
if body == nil {
return false
}
if paired, ok := body["paired"]; ok {
return toBool(paired)
}
if active, ok := body["active"]; ok {
return toBool(active)
}
return false
}
// Unpair deletes stored tokens for a user.
func (m *oauth2Manager) Unpair(userID string) error {
return m.tokenStorage.Delete(userID)
}
// HasTokens checks whether tokens exist for the given user.
func (m *oauth2Manager) HasTokens(userID string) bool {
exists, err := m.tokenStorage.Exists(userID)
if err != nil {
return false
}
return exists
}
// toBool converts an interface{} value to bool.
func toBool(v interface{}) bool {
switch val := v.(type) {
case bool:
return val
case float64:
return val != 0
case string:
return val == "true" || val == "1"
default:
return false
}
}