This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
application.go
466 lines (370 loc) · 15.2 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
package stormpath
import (
"encoding/base64"
"errors"
"fmt"
"net/url"
"time"
"github.com/nu7hatch/gouuid"
)
//Application is resource in Stormpath contains information about any real-world software that communicates with Stormpath via REST APIs. You control who may log in to an application by assigning (or ‘mapping’) one or more Directory, Group, or Organization resources (generically called Account Stores) to an Application resource. The Accounts in these associated Account Stores collectively form the application’s user base.
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 is the collection resource of applications.
//
//For more on Stormpath collection resources see: http://docs.stormpath.com/rest/product-guide/latest/reference.html#collection-resource
type Applications struct {
collectionResource
Items []Application `json:"items,omitempty"`
}
//CallbackResult is the parsed IDSite callback JWT token information and an optional account if the tocken contain one.
type CallbackResult struct {
Account *Account
State string
IsNew bool
Status string
}
//IDSiteOptions represents the posible options to generate an new IDSite URL.
type IDSiteOptions struct {
Logout bool
Path string
CallbackURL string
State string
}
//CreateApplication creates a new application in Stormpath.
//It also passes the createDirectory param as true so the default directory would be created and mapped to the application.
func CreateApplication(app *Application) error {
var extraParams = url.Values{}
extraParams.Add("createDirectory", "true")
return client.post(buildRelativeURL("applications", requestParams(extraParams)), app, app)
}
//GetApplication loads an application by href.
//It can optionally have its attributes expanded depending on the ApplicationCriteria value.
func GetApplication(href string, criteria ApplicationCriteria) (*Application, error) {
application := &Application{}
err := client.get(
buildAbsoluteURL(href, criteria.toQueryString()),
application,
)
if err != nil {
return nil, err
}
return application, nil
}
//Refresh refreshes the application based on the latest state from Stormpath.
func (app *Application) Refresh() error {
return client.get(app.Href, app)
}
//Update updates the application in Stormpath.
func (app *Application) Update() error {
return client.post(app.Href, app, app)
}
//Purge deletes the application and all its account stores.
func (app *Application) Purge() error {
accountStoreMappings, err := app.GetAccountStoreMappings(MakeApplicationAccountStoreMappingsCriteria())
if err != nil {
return err
}
for _, m := range accountStoreMappings.Items {
client.delete(m.AccountStore.Href)
}
return app.Delete()
}
//GetAccountStoreMappings retrives the collection of all account store mappings associated with the Application.
//
//The collection can be filtered and/or paginated by passing the desire ApplicationAccountStoreMappingCriteria value
func (app *Application) GetAccountStoreMappings(criteria ApplicationAccountStoreMappingCriteria) (*ApplicationAccountStoreMappings, error) {
accountStoreMappings := &ApplicationAccountStoreMappings{}
err := client.get(
buildAbsoluteURL(app.AccountStoreMappings.Href, criteria.toQueryString()),
accountStoreMappings,
)
if err != nil {
return nil, err
}
return accountStoreMappings, nil
}
//GetDefaultAccountStoreMapping retrieves the application default application account store mapping.
//
//It can optionally have its attributes expanded depending on the ApplicationAccountStoreMappingCriteria value.
func (app *Application) GetDefaultAccountStoreMapping(criteria ApplicationAccountStoreMappingCriteria) (*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.
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 social provider Google, Facebook, GitHub or LinkedIn.
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, using its username and password.
//It can also include an optional account store HREF, if the accountStoreHref is a zero value string, then it won't be used.
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
//Refresh the account since we only get the account href from the loginAttempts endpoit.
err = account.Refresh()
if err != nil {
return nil, err
}
return account, nil
}
//ResendVerificationEmail triggers a resend of the account verification email in Stormpath for a given email address.
//
//For more info on the Stormpath verification workflow see: http://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 triggers a send of the password reset email in Stormpath for a given email address.
//
//For more info on the Stormpath password reset workflow see: http://docs.stormpath.com/rest/product-guide/latest/accnt_mgmt.html#password-reset-flow
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 the given password reset token against Stormpath.
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 password token.
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 application group.
//Creating a group for an application automatically creates the proper account store mapping between the group and the application.
func (app *Application) CreateGroup(group *Group) error {
return client.post(app.Groups.Href, group, group)
}
//GetGroups retrives the collection of all groups associated with the Application.
//
//The collection can be filtered and/or paginated by passing the desire GroupCriteria value.
func (app *Application) GetGroups(criteria GroupCriteria) (*Groups, error) {
groups := &Groups{}
err := client.get(
buildAbsoluteURL(app.Groups.Href, criteria.toQueryString()),
groups,
)
if err != nil {
return nil, err
}
return groups, nil
}
//CreateIDSiteURL generates the IDSite URL for the application. This URL is used to initiate an IDSite workflow.
//You can pass an IDSiteOptions values to customize the IDSite workflow.
//
//For more information on Stormpath's IDSite feature see: http://docs.stormpath.com/rest/product-guide/latest/idsite.html
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 or SAML callback it parses the JWT token
//validates it and returns a CallbackResult, if the JWT was valid.
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 an account, using the password grant type.
func (app *Application) GetOAuthToken(username string, password string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"password"},
"username": {username},
"password": {password},
}
return app.getOAuthTokenCommon(values)
}
//GetOAuthTokenStormpathGrantType creates an OAuth2 token response, for a given Stormpath JWT, using the stormpath_token grant type.
//This grant type is use together with IDSite.
//
//For more information on the stormpath_token grant type see: http://docs.stormpath.com/rest/product-guide/latest/idsite.html#exchanging-the-id-site-jwt-for-an-oauth-token
func (app *Application) GetOAuthTokenStormpathGrantType(token string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"stormpath_token"},
"token": {token},
}
return app.getOAuthTokenCommon(values)
}
func (app *Application) GetOAuthTokenClientCredentialsGrantType(apiKeyID, apiKeySecret string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"client_credentials"},
"apiKeyId": {apiKeyID},
"apiKeySecret": {apiKeySecret},
}
return app.getOAuthTokenCommon(values)
}
//GetOAuthTokenSocialGrantType creates a OAuth2 token response, for an account using a socical provider via the stormpath_social grant type.
//This grant type supports exchanging a social provider accessToken or code for a Stormpath access/refresh tokens.
//You can either pass an accessToken or code but not both, the one that is not used should be pass as a zero value string.
//If both values are empty or both values are not empty an error is return.
//
//For more information on the stormpath_social grant type see: http://docs.stormpath.com/rest/product-guide/latest/auth_n.html#social
func (app *Application) GetOAuthTokenSocialGrantType(providerID, accessToken, code string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"stormpath_social"},
"providerId": {providerID},
}
if accessToken == "" && code == "" {
return nil, fmt.Errorf("You must either pass a valid accessToken or code.")
}
if accessToken != "" && code != "" {
return nil, fmt.Errorf("You must either pass a valid accessToken or code but not both.")
}
if accessToken != "" {
values.Add("accessToken", accessToken)
}
if code != "" {
values.Add("code", code)
}
return app.getOAuthTokenCommon(values)
}
//RefreshOAuthToken creates an OAuth2 response using the refresh_token grant type.
func (app *Application) RefreshOAuthToken(refreshToken string) (*OAuthResponse, error) {
values := url.Values{
"grant_type": {"refresh_token"},
"refresh_token": {refreshToken},
}
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
}
//ValidateToken validates either an OAuth2 access or refresh token against Stormpath.
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
}
//GetAPIKey retrives an APIKey from the application by its ID.
//
//It can optionally have its attributes expanded depending on the APIKeyCriteria value.
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
}