forked from okta/okta-idx-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset_password.go
More file actions
419 lines (389 loc) · 12.2 KB
/
Copy pathreset_password.go
File metadata and controls
419 lines (389 loc) · 12.2 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
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
/**
* Copyright (c) 2021-Present, Okta, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package idx
import (
"context"
"encoding/json"
"fmt"
)
type ResetPasswordResponse struct {
idxContext *Context
token *Token
availableSteps []ResetPasswordStep
sq *SecurityQuestion
}
type IdentifyRequest struct {
Identifier string `json:"identifier"`
Credentials Credentials `json:"credentials"`
RememberMe bool `json:"rememberMe"`
}
type Credentials struct {
Password string `json:"passcode"`
}
// InitPasswordReset Initialize password reset.
func (c *Client) InitPasswordReset(ctx context.Context, ir *IdentifyRequest) (*ResetPasswordResponse, error) {
idxContext, err := c.Interact(ctx)
if err != nil {
return nil, err
}
resp, err := identifyAndRecover(ctx, idxContext.InteractionHandle, ir)
if err != nil {
return nil, err
}
rpr := &ResetPasswordResponse{
idxContext: idxContext,
}
err = rpr.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
return rpr, nil
}
// Restart Restart password reset.
func (r *ResetPasswordResponse) Restart(ctx context.Context, ir *IdentifyRequest) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepRestart) {
return r.missingStepError(ResetPasswordStepRestart)
}
resp, err := identifyAndRecover(ctx, r.idxContext.InteractionHandle, ir)
if err != nil {
return nil, err
}
err = r.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
return r, nil
}
func identifyAndRecover(ctx context.Context, ih *InteractionHandle, ir *IdentifyRequest) (*Response, error) {
resp, err := idx.introspect(ctx, ih)
if err != nil {
return nil, err
}
if resp.CurrentAuthenticator != nil {
resp, err = resp.CurrentAuthenticator.Value.Recover.proceed(ctx, nil)
if err != nil {
return nil, err
}
var ro *RemediationOption
ro, err = resp.remediationOption("identify-recovery")
if err != nil {
return nil, err
}
b, _ := json.Marshal(ir)
resp, err = ro.proceed(ctx, b)
if err != nil {
return resp, err
}
return resp, nil
}
ro, err := resp.remediationOption("identify")
if err != nil {
return nil, err
}
b, _ := json.Marshal(ir)
resp, err = ro.proceed(ctx, b)
if err != nil {
return nil, err
}
return recoverProceed(ctx, resp)
}
func recoverProceed(ctx context.Context, resp *Response) (*Response, error) {
if resp.CurrentAuthenticatorEnrollment != nil {
return resp.CurrentAuthenticatorEnrollment.Value.Recover.proceed(ctx, nil)
}
ro, authID, err := resp.authenticatorOption("select-authenticator-authenticate", "Password", true)
if err != nil {
return nil, err
}
authenticator := []byte(`{
"authenticator": {
"id": "` + authID + `"
}
}`)
resp, err = ro.proceed(ctx, authenticator)
if err != nil {
return nil, err
}
if resp.CurrentAuthenticatorEnrollment == nil {
return nil, fmt.Errorf("falied to init password recovery: 'currentAuthenticatorEnrollment' " +
"field is missing from the response")
}
return resp.CurrentAuthenticatorEnrollment.Value.Recover.proceed(ctx, nil)
}
// VerifyEmail Verify email.
func (r *ResetPasswordResponse) VerifyEmail(ctx context.Context) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepEmailVerification) {
return r.missingStepError(ResetPasswordStepEmailVerification)
}
resp, err := idx.introspect(ctx, r.idxContext.InteractionHandle)
if err != nil {
return nil, err
}
resp, err = recoverProceed(ctx, resp)
if err != nil {
return nil, err
}
ro, authID, err := resp.authenticatorOption("select-authenticator-authenticate", "Email", true)
if err != nil {
return nil, err
}
authenticator := []byte(`{
"authenticator": {
"id": "` + authID + `"
}
}`)
resp, err = ro.proceed(ctx, authenticator)
if err != nil {
return nil, err
}
err = r.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
r.appendStep(ResetPasswordStepEmailConfirmation)
return r, nil
}
// ConfirmEmail Confirm email.
func (r *ResetPasswordResponse) ConfirmEmail(ctx context.Context, code string) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepEmailConfirmation) {
return r.missingStepError(ResetPasswordStepEmailConfirmation)
}
return r.confirmWithCode(ctx, code)
}
// AnswerSecurityQuestion Answer security question.
func (r *ResetPasswordResponse) AnswerSecurityQuestion(ctx context.Context, answer string) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepAnswerSecurityQuestion) {
return r.missingStepError(ResetPasswordStepAnswerSecurityQuestion)
}
resp, err := idx.introspect(ctx, r.idxContext.InteractionHandle)
if err != nil {
return nil, err
}
ro, err := resp.remediationOption("challenge-authenticator")
if err != nil {
return nil, err
}
credentials := []byte(fmt.Sprintf(`{
"credentials": {
"%s": "%s",
"answer": "%s"
}
}`, questionKey, r.sq.QuestionKey, answer))
resp, err = ro.proceed(ctx, credentials)
if err != nil {
return nil, err
}
defer func() { r.sq = nil }() // remove security question to avid confusion
err = r.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
return r, nil
}
// SetNewPassword Set new password.
func (r *ResetPasswordResponse) SetNewPassword(ctx context.Context, password string) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepNewPassword) {
return r.missingStepError(ResetPasswordStepNewPassword)
}
resp, err := setPassword(ctx, r.idxContext, "reset-authenticator", password)
if err != nil {
return nil, err
}
err = r.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
return r, nil
}
// Cancel the whole reset password process.
func (r *ResetPasswordResponse) Cancel(ctx context.Context) (*ResetPasswordResponse, error) {
if !r.HasStep(ResetPasswordStepCancel) {
return r.missingStepError(ResetPasswordStepCancel)
}
resp, err := idx.introspect(ctx, r.idxContext.InteractionHandle)
if err != nil {
return nil, err
}
resp, err = resp.Cancel(ctx)
if err != nil {
return nil, err
}
err = r.setupNextSteps(ctx, resp)
if err != nil {
return nil, err
}
r.appendStep(ResetPasswordStepRestart)
return r, nil
}
// SecurityQuestion should return SecurityQuestion object in case there is step
// 'ANSWER SECURITY_QUESTION' present in the available steps. It will have
// non-empty 'questionKey' (unique identifier) and 'question' (human readable
// question) fields In case 'ANSWER SECURITY_QUESTION' is not in the list of
// available steps, response will be nil.
func (r *ResetPasswordResponse) SecurityQuestion() *SecurityQuestion {
return r.sq
}
// AvailableSteps returns list of steps that can be executed next. In case of
// successful authentication, list will contain only one "SUCCESS" step.
func (r *ResetPasswordResponse) AvailableSteps() []ResetPasswordStep {
return r.availableSteps
}
// HasStep checks if the provided step is present in the list of available
// steps.
func (r *ResetPasswordResponse) HasStep(s ResetPasswordStep) bool {
for i := range r.availableSteps {
if r.availableSteps[i] == s {
return true
}
}
return false
}
// IsAuthenticated returns true in case "SUCCESS"is present in the list of
// available steps.
func (r *ResetPasswordResponse) IsAuthenticated() bool {
return r.HasStep(ResetPasswordStepSuccess)
}
// Token returns authorization token. This method should be called when there is
// "SUCCESS" step present in the list of available steps.
func (r *ResetPasswordResponse) Token() *Token {
return r.token
}
type ResetPasswordStep int
// String String representation of ResetPasswordStep.
func (s ResetPasswordStep) String() string {
v, ok := resetStepText[s]
if ok {
return v
}
return unknownStep
}
var resetStepText = map[ResetPasswordStep]string{
ResetPasswordStepEmailVerification: "EMAIL_VERIFICATION",
ResetPasswordStepEmailConfirmation: "EMAIL_CONFIRMATION",
ResetPasswordStepAnswerSecurityQuestion: "ANSWER SECURITY_QUESTION",
ResetPasswordStepNewPassword: "NEW_PASSWORD",
ResetPasswordStepCancel: "CANCEL",
ResetPasswordStepRestart: "RESTART",
ResetPasswordStepSkip: "SKIP",
ResetPasswordStepSuccess: "SUCCESS",
}
// These codes indicate what method(s) can be called in the next step.
const (
ResetPasswordStepEmailVerification ResetPasswordStep = iota + 1 // 'VerifyEmail'
ResetPasswordStepEmailConfirmation // 'ConfirmEmail'
ResetPasswordStepAnswerSecurityQuestion // 'AnswerSecurityQuestion'
ResetPasswordStepNewPassword // 'SetNewPassword'
ResetPasswordStepCancel // 'Cancel'
ResetPasswordStepRestart // 'Restart'
ResetPasswordStepSkip // 'Skip'
ResetPasswordStepSuccess // 'Token'
)
const (
questionKey = "questionKey"
unknownStep = "UNKNOWN"
)
// nolint
func (r *ResetPasswordResponse) setupNextSteps(ctx context.Context, resp *Response) error {
if resp.LoginSuccess() {
exchangeForm := []byte(`{
"client_secret": "` + idx.ClientSecret() + `",
"code_verifier": "` + r.idxContext.CodeVerifier + `"
}`)
tokens, err := resp.SuccessResponse.exchangeCode(ctx, exchangeForm)
if err != nil {
return err
}
r.token = tokens
// reset steps
r.availableSteps = []ResetPasswordStep{ResetPasswordStepSuccess}
return nil
}
// reset steps
r.availableSteps = []ResetPasswordStep{}
if resp.CancelResponse != nil {
r.appendStep(ResetPasswordStepCancel)
}
_, _, err := resp.authenticatorOption("select-authenticator-authenticate", "Email", false)
if err == nil {
r.appendStep(ResetPasswordStepEmailVerification)
}
_, err = resp.remediationOption("skip")
if err == nil {
r.appendStep(ResetPasswordStepSkip)
}
ro, err := resp.remediationOption("challenge-authenticator")
if err == nil {
loop:
for i := range ro.FormValues {
if ro.FormValues[i].Form != nil && len(ro.FormValues[i].Form.FormValues) > 0 {
for j := range ro.FormValues[i].Form.FormValues {
if ro.FormValues[i].Form.FormValues[j].Name == questionKey {
r.sq = &SecurityQuestion{
QuestionKey: ro.FormValues[i].Form.FormValues[j].Value.String(),
Question: ro.FormValues[i].Form.FormValues[j].Label,
}
r.appendStep(ResetPasswordStepAnswerSecurityQuestion)
break loop
}
}
}
}
}
ro, err = resp.remediationOption("reset-authenticator")
if err == nil {
loop2:
for i := range ro.FormValues {
if ro.FormValues[i].Form != nil && len(ro.FormValues[i].Form.FormValues) > 0 {
for j := range ro.FormValues[i].Form.FormValues {
if ro.FormValues[i].Form.FormValues[j].Label == "New password" {
r.appendStep(ResetPasswordStepNewPassword)
break loop2
}
}
}
}
}
if len(r.availableSteps) == 0 {
return fmt.Errorf("there are no more steps available: %v", resp.Messages.Values)
}
return nil
}
func (r *ResetPasswordResponse) confirmWithCode(ctx context.Context, code string) (*ResetPasswordResponse, error) {
resp, err := passcodeAuth(ctx, r.idxContext, "challenge-authenticator", code)
if err != nil {
return nil, err
}
err = r.setupNextSteps(ctx, resp)
return r, err
}
func (r *ResetPasswordResponse) missingStepError(missingStep ResetPasswordStep) (*ResetPasswordResponse, error) {
steps := ""
for index, step := range r.availableSteps {
if index != 0 {
steps = fmt.Sprintf("%s, ", steps)
}
steps = fmt.Sprintf("%s%q", steps, step)
}
return nil, fmt.Errorf("%q reset password step is not available, please try one of %s", missingStep, steps)
}
func (r *ResetPasswordResponse) appendStep(step ResetPasswordStep) {
for _, _step := range r.availableSteps {
if step == _step {
return
}
}
r.availableSteps = append(r.availableSteps, step)
}