forked from jarias/stormpath-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.go
440 lines (348 loc) · 12.3 KB
/
application.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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
package stormpath
import (
"bytes"
"encoding/base64"
"errors"
"fmt"
"net/url"
"time"
"github.com/nu7hatch/gouuid"
)
//Application represents a Stormpath application object
//
//See: http://docs.stormpath.com/rest/product-guide/#applications
type Application struct {
accountStoreResource
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Status string `json:"status,omitempty"`
Groups *Groups `json:"groups,omitempty"`
Tenant *Tenant `json:"tenant,omitempty"`
PasswordResetTokens *resource `json:"passwordResetTokens,omitempty"`
AccountStoreMappings *ApplicationAccountStoreMappings `json:"accountStoreMappings,omitempty"`
DefaultAccountStoreMapping *ApplicationAccountStoreMapping `json:"defaultAccountStoreMapping,omitempty"`
DefaultGroupStoreMapping *ApplicationAccountStoreMapping `json:"defaultGroupStoreMapping,omitempty"`
OAuthPolicy *OAuthPolicy `json:"oAuthPolicy,omitempty"`
APIKeys *APIKeys `json:"apiKeys,omitempty"`
}
//Applications represents a paged result or applications
type Applications struct {
collectionResource
Items []Application `json:"items,omitempty"`
}
//CallbackResult holds the ID Site callback parsed JWT token information + the acccount if one was given
type CallbackResult struct {
Account *Account
State string
IsNew bool
Status string
}
type IDSiteOptions struct {
Logout bool
Path string
CallbackURL string
State string
}
//NewApplication creates a new application
func NewApplication(name string) *Application {
return &Application{Name: name}
}
//GetApplication loads an application by href and criteria
func GetApplication(href string, criteria Criteria) (*Application, error) {
application := &Application{}
err := client.get(
buildAbsoluteURL(href, criteria.ToQueryString()),
application,
)
return application, err
}
//Refresh refreshes the resource by doing a GET to the resource href endpoint
func (app *Application) Refresh() error {
return client.get(app.Href, app)
}
//Update updates the given resource, by doing a POST to the resource Href
func (app *Application) Update() error {
return client.post(app.Href, app, app)
}
//Purge deletes all the account stores before deleting the application
//
//See: http://docs.stormpath.com/rest/product-guide/#delete-an-application
func (app *Application) Purge() error {
accountStoreMappings, err := app.GetAccountStoreMappings(MakeApplicationAccountStoreMappingCriteria().Offset(0).Limit(25))
if err != nil {
return err
}
for _, m := range accountStoreMappings.Items {
client.delete(m.AccountStore.Href)
}
return app.Delete()
}
//GetAccountStoreMappings returns all the applications account store mappings
//
//See: http://docs.stormpath.com/rest/product-guide/#application-account-store-mappings
func (app *Application) GetAccountStoreMappings(criteria Criteria) (*ApplicationAccountStoreMappings, error) {
accountStoreMappings := &ApplicationAccountStoreMappings{}
err := client.get(
buildAbsoluteURL(app.AccountStoreMappings.Href, criteria.ToQueryString()),
accountStoreMappings,
)
if err != nil {
return nil, err
}
return accountStoreMappings, nil
}
func (app *Application) GetDefaultAccountStoreMapping(criteria Criteria) (*ApplicationAccountStoreMapping, error) {
err := client.get(
buildAbsoluteURL(app.DefaultAccountStoreMapping.Href, criteria.ToQueryString()),
app.DefaultAccountStoreMapping,
)
if err != nil {
return nil, err
}
return app.DefaultAccountStoreMapping, nil
}
//RegisterAccount registers a new account into the application
//
//See: http://docs.stormpath.com/rest/product-guide/#application-accounts
func (app *Application) RegisterAccount(account *Account) error {
err := client.post(app.Accounts.Href, account, account)
if err == nil {
//Password should be cleanup so we don't keep an unhash password in memory
account.Password = ""
}
return err
}
//RegisterSocialAccount registers a new account into the application using an external provider Google, Facebook
//
//See: http://docs.stormpath.com/rest/product-guide/#accessing-accounts-with-google-authorization-codes-or-an-access-tokens
func (app *Application) RegisterSocialAccount(socialAccount *SocialAccount) (*Account, error) {
account := &Account{}
err := client.post(app.Accounts.Href, socialAccount, account)
if err != nil {
return nil, err
}
return account, nil
}
//AuthenticateAccount authenticates an account against the application
//
//See: http://docs.stormpath.com/rest/product-guide/#authenticate-an-account
func (app *Application) AuthenticateAccount(username string, password string, accountStoreHref string) (*Account, error) {
accountRef := &accountRef{Account: &Account{}}
loginAttemptPayload := make(map[string]interface{})
loginAttemptPayload["type"] = "basic"
loginAttemptPayload["value"] = base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
if accountStoreHref != "" {
loginAttemptPayload["accountStore"] = map[string]string{
"href": accountStoreHref,
}
}
err := client.post(buildAbsoluteURL(app.Href, "loginAttempts"), loginAttemptPayload, accountRef)
if err != nil {
return nil, err
}
account := accountRef.Account
err = account.Refresh()
if err != nil {
return nil, err
}
return account, nil
}
//ResendVerificationEmail resends the verification email to the given email address
//
//See: https://docs.stormpath.com/rest/product-guide/latest/accnt_mgmt.html#how-to-verify-an-account-s-email
func (app *Application) ResendVerificationEmail(email string) error {
resendVerificationEmailPayload := map[string]string{
"login": email,
}
return client.post(buildAbsoluteURL(app.Href, "verificationEmails"), resendVerificationEmailPayload, nil)
}
//SendPasswordResetEmail sends a password reset email to the given user
//
//See: http://docs.stormpath.com/rest/product-guide/#reset-an-accounts-password
func (app *Application) SendPasswordResetEmail(email string) (*AccountPasswordResetToken, error) {
passwordResetToken := &AccountPasswordResetToken{}
passwordResetPayload := make(map[string]string)
passwordResetPayload["email"] = email
err := client.post(buildAbsoluteURL(app.Href, "passwordResetTokens"), passwordResetPayload, passwordResetToken)
if err != nil {
return nil, err
}
return passwordResetToken, nil
}
//ValidatePasswordResetToken validates a password reset token
//
//See: http://docs.stormpath.com/rest/product-guide/#reset-an-accounts-password
func (app *Application) ValidatePasswordResetToken(token string) (*AccountPasswordResetToken, error) {
passwordResetToken := &AccountPasswordResetToken{}
err := client.get(buildAbsoluteURL(app.Href, "passwordResetTokens", token), passwordResetToken)
if err != nil {
return nil, err
}
return passwordResetToken, nil
}
//ResetPassword resets a user password based on the reset token
//
//See: http://docs.stormpath.com/rest/product-guide/#reset-an-accounts-password
func (app *Application) ResetPassword(token string, newPassword string) (*Account, error) {
accountRef := &accountRef{}
account := &Account{}
resetPasswordPayload := make(map[string]string)
resetPasswordPayload["password"] = newPassword
err := client.post(buildAbsoluteURL(app.Href, "passwordResetTokens", token), resetPasswordPayload, accountRef)
if err != nil {
return nil, err
}
account.Href = accountRef.Account.Href
return account, nil
}
//CreateGroup creates a new group in the application
//
//See: http://docs.stormpath.com/rest/product-guide/#application-groups
func (app *Application) CreateGroup(group *Group) error {
return client.post(app.Groups.Href, group, group)
}
//GetGroups returns all the application groups
//
//See: http://docs.stormpath.com/rest/product-guide/#application-groups
func (app *Application) GetGroups(criteria Criteria) (*Groups, error) {
groups := &Groups{}
err := client.get(
buildAbsoluteURL(app.Groups.Href, criteria.ToQueryString()),
groups,
)
if err != nil {
return nil, err
}
return groups, nil
}
//CreateIDSiteURL creates the IDSite URL for the application
func (app *Application) CreateIDSiteURL(options IDSiteOptions) (string, error) {
nonce, _ := uuid.NewV4()
if options.Path == "" {
options.Path = "/"
}
claims := SSOTokenClaims{}
claims.Id = nonce.String()
claims.IssuedAt = time.Now().Unix()
claims.Issuer = client.ClientConfiguration.APIKeyID
claims.Subject = app.Href
claims.State = options.State
claims.Path = options.Path
claims.CallbackURI = options.CallbackURL
jwtString := JWT(claims, map[string]interface{}{})
p, _ := url.Parse(app.Href)
ssoURL := p.Scheme + "://" + p.Host + "/sso"
if options.Logout {
ssoURL = ssoURL + "/logout" + "?jwtRequest=" + jwtString
} else {
ssoURL = ssoURL + "?jwtRequest=" + jwtString
}
return ssoURL, nil
}
//HandleCallback handles the URL from an ID Site callback or SAML callback it parses the JWT token
//validates it and return an CallbackResult with the token info + the Account if the sub was given
func (app *Application) HandleCallback(URL string) (*CallbackResult, error) {
result := &CallbackResult{}
cbURL, err := url.Parse(URL)
if err != nil {
return nil, err
}
jwtResponse := cbURL.Query().Get("jwtResponse")
claims := &IDSiteAssertionTokenClaims{}
ParseJWT(jwtResponse, claims)
if claims.Audience != client.ClientConfiguration.APIKeyID {
return nil, errors.New("ID Site invalid aud")
}
if time.Now().Unix() > claims.ExpiresAt {
return nil, errors.New("ID Site JWT has expired")
}
if claims.Subject != "" {
account, err := GetAccount(claims.Subject, MakeAccountCriteria())
if err != nil {
return nil, err
}
result.Account = account
}
result.State = claims.State
result.Status = claims.Status
return result, nil
}
//GetOAuthToken creates a OAuth2 token response for a given user credentials
func (app *Application) GetOAuthToken(username string, password string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"password"},
"username": {username},
"password": {password},
}
return app.getOAuthTokenCommon(values)
}
func (app *Application) GetOAuthTokenStormpathGrantType(token string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"stormpath_token"},
"token": {token},
}
return app.getOAuthTokenCommon(values)
}
//GetOAuthTokenSocialGrantType creates a OAuth2 token response for a given social provider token
func (app *Application) GetOAuthTokenSocialGrantType(providerID string, token string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"stormpath_social"},
"providerId": {providerID},
"accessToken": {token},
}
return app.getOAuthTokenCommon(values)
}
func (app *Application) getOAuthTokenCommon(values url.Values) (*OAuthResponse, error) {
response := &OAuthResponse{}
err := client.postURLEncodedForm(
buildAbsoluteURL(app.Href, "oauth/token"),
values.Encode(),
response,
)
if err != nil {
return nil, err
}
return response, nil
}
//RefreshOAuthToken refreshes an OAuth2 token using the provided refresh_token and returns a new OAuth reponse
func (app *Application) RefreshOAuthToken(refreshToken string) (*OAuthResponse, error) {
response := &OAuthResponse{}
values := url.Values{
"grant_type": {"refresh_token"},
"refresh_token": {refreshToken},
}
body := &bytes.Buffer{}
canonicalizeQueryString(body, values)
err := client.postURLEncodedForm(
buildAbsoluteURL(app.Href, "oauth/token"),
body.String(),
response,
)
if err != nil {
return nil, err
}
return response, nil
}
//ValidateToken against the application
func (app *Application) ValidateToken(token string) (*OAuthToken, error) {
response := &OAuthToken{}
err := client.get(
buildAbsoluteURL(app.Href, "authTokens", token),
response,
)
if err != nil {
return nil, err
}
return response, nil
}
func (app *Application) GetAPIKey(apiKeyID string, criteria APIKeyCriteria) (*APIKey, error) {
apiKeys := &APIKeys{}
err := client.get(buildAbsoluteURL(app.APIKeys.Href, criteria.idEq(apiKeyID).ToQueryString()), apiKeys)
if err != nil {
return nil, err
}
if len(apiKeys.Items) == 0 {
return nil, fmt.Errorf("API Key not found")
}
return &apiKeys.Items[0], nil
}