-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathauth.go
More file actions
272 lines (245 loc) · 6.21 KB
/
auth.go
File metadata and controls
272 lines (245 loc) · 6.21 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
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
package salesforce
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/golang-jwt/jwt/v5"
)
// AuthFlowType represents the type of authentication flow used
type AuthFlowType int
const (
AuthFlowUnknown AuthFlowType = iota
AuthFlowUsernamePassword
AuthFlowClientCredentials
AuthFlowAccessToken
AuthFlowJWT
)
func (a AuthFlowType) String() string {
switch a {
case AuthFlowUsernamePassword:
return "Username/Password"
case AuthFlowClientCredentials:
return "Client Credentials"
case AuthFlowAccessToken:
return "Access Token"
case AuthFlowJWT:
return "JWT"
default:
return "Unknown"
}
}
type authentication struct {
AccessToken string `json:"access_token"`
InstanceUrl string `json:"instance_url"`
Id string `json:"id"`
TokenType string `json:"token_type"`
Scope string `json:"scope"`
IssuedAt string `json:"issued_at"`
Signature string `json:"signature"`
grantType string
creds Creds
}
type Creds struct {
Domain string
Username string
Password string
SecurityToken string
ConsumerKey string
ConsumerSecret string
ConsumerRSAPem string
AccessToken string
}
const JwtExpirationTime = 5 * time.Minute
const (
grantTypeUsernamePassword = "password"
grantTypeClientCredentials = "client_credentials"
grantTypeAccessToken = "access_token"
grantTypeJWT = "urn:ietf:params:oauth:grant-type:jwt-bearer"
)
func validateAuth(sf Salesforce) error {
if sf.auth == nil || sf.auth.AccessToken == "" {
return errors.New("not authenticated: please use salesforce.Init()")
}
return nil
}
func (conf *configuration) validateAuthentication(auth authentication) error {
if err := validateAuth(Salesforce{auth: &auth}); err != nil {
return err
}
_, err := doRequest(&auth, conf, requestPayload{
method: http.MethodGet,
uri: "/limits",
content: jsonType,
})
if err != nil {
return err
}
return nil
}
func refreshSession(auth *authentication) error {
var refreshedAuth *authentication
var err error
switch grantType := auth.grantType; grantType {
case grantTypeClientCredentials:
refreshedAuth, err = clientCredentialsFlow(
auth.InstanceUrl,
auth.creds.ConsumerKey,
auth.creds.ConsumerSecret,
)
case grantTypeUsernamePassword:
refreshedAuth, err = usernamePasswordFlow(
auth.InstanceUrl,
auth.creds.Username,
auth.creds.Password,
auth.creds.SecurityToken,
auth.creds.ConsumerKey,
auth.creds.ConsumerSecret,
)
case grantTypeJWT:
refreshedAuth, err = jwtFlow(
auth.InstanceUrl,
auth.creds.Username,
auth.creds.ConsumerKey,
auth.creds.ConsumerRSAPem,
JwtExpirationTime,
)
default:
return errors.New("invalid session, unable to refresh session")
}
if err != nil {
return err
}
if refreshedAuth == nil {
return errors.New("missing refresh auth")
}
auth.AccessToken = refreshedAuth.AccessToken
auth.IssuedAt = refreshedAuth.IssuedAt
auth.Signature = refreshedAuth.Signature
auth.Id = refreshedAuth.Id
return nil
}
func doAuth(url string, body *strings.Reader) (*authentication, error) {
resp, err := http.Post(url, "application/x-www-form-urlencoded", body)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, errors.New(string(resp.Status) + ":" + " failed authentication")
}
respBody, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
auth := &authentication{}
jsonError := json.Unmarshal(respBody, &auth)
if jsonError != nil {
return nil, jsonError
}
defer func() {
err = resp.Body.Close()
}()
return auth, err
}
func usernamePasswordFlow(
domain string,
username string,
password string,
securityToken string,
consumerKey string,
consumerSecret string,
) (*authentication, error) {
payload := url.Values{
"grant_type": {grantTypeUsernamePassword},
"client_id": {consumerKey},
"client_secret": {consumerSecret},
"username": {username},
"password": {password + securityToken},
}
endpoint := "/services/oauth2/token"
body := strings.NewReader(payload.Encode())
auth, err := doAuth(domain+endpoint, body)
if err != nil {
return nil, err
}
auth.grantType = grantTypeUsernamePassword
return auth, nil
}
func clientCredentialsFlow(
domain string,
consumerKey string,
consumerSecret string,
) (*authentication, error) {
payload := url.Values{
"grant_type": {grantTypeClientCredentials},
"client_id": {consumerKey},
"client_secret": {consumerSecret},
}
endpoint := "/services/oauth2/token"
body := strings.NewReader(payload.Encode())
auth, err := doAuth(domain+endpoint, body)
if err != nil {
return nil, err
}
auth.grantType = grantTypeClientCredentials
return auth, nil
}
func (conf *configuration) getAccessTokenAuthentication(
domain string,
accessToken string,
) (*authentication, error) {
auth := &authentication{InstanceUrl: domain, AccessToken: accessToken}
if conf.shouldValidateAuthentication {
if err := conf.validateAuthentication(*auth); err != nil {
return nil, err
}
}
auth.grantType = grantTypeAccessToken
return auth, nil
}
func jwtFlow(
domain string,
username string,
consumerKey string,
consumerRSAPem string,
expirationTime time.Duration,
) (*authentication, error) {
audience := domain
if strings.Contains(audience, "test.salesforce") || strings.Contains(audience, "sandbox") {
audience = "https://test.salesforce.com"
} else {
audience = "https://login.salesforce.com"
}
claims := &jwt.MapClaims{
"exp": strconv.Itoa(int(time.Now().Unix() + int64(expirationTime.Seconds()))),
"aud": audience,
"iss": consumerKey,
"sub": username,
}
token := jwt.NewWithClaims(jwt.SigningMethodRS256, claims)
signKey, err := jwt.ParseRSAPrivateKeyFromPEM([]byte(consumerRSAPem))
if err != nil {
return nil, fmt.Errorf("ParseRSAPrivateKeyFromPEM: %w", err)
}
tokenString, err := token.SignedString(signKey)
if err != nil {
return nil, fmt.Errorf("jwt.SignedString: %w", err)
}
payload := url.Values{
"grant_type": {grantTypeJWT},
"assertion": {tokenString},
}
endpoint := "/services/oauth2/token"
body := strings.NewReader(payload.Encode())
auth, err := doAuth(domain+endpoint, body)
if err != nil {
return nil, err
}
auth.grantType = grantTypeJWT
return auth, nil
}