-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add recovery email parameter to MFA creation #82
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, though a new test should be made instead of updating an existing test.
features/request/RequestContext.php
Outdated
if (empty($this->requestData['recovery_email'])) { | ||
$this->getIdBrokerClient()->mfaCreate( | ||
$this->requestData['employee_id'], | ||
$this->requestData['type'], | ||
$this->requestData['label'], | ||
$this->rpOrigin, | ||
); | ||
} else { | ||
$this->getIdBrokerClient()->mfaCreate( | ||
$this->requestData['employee_id'], | ||
$this->requestData['type'], | ||
$this->requestData['label'], | ||
$this->rpOrigin, | ||
$this->requestData['recovery_email'], | ||
); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just do this?
if (empty($this->requestData['recovery_email'])) { | |
$this->getIdBrokerClient()->mfaCreate( | |
$this->requestData['employee_id'], | |
$this->requestData['type'], | |
$this->requestData['label'], | |
$this->rpOrigin, | |
); | |
} else { | |
$this->getIdBrokerClient()->mfaCreate( | |
$this->requestData['employee_id'], | |
$this->requestData['type'], | |
$this->requestData['label'], | |
$this->rpOrigin, | |
$this->requestData['recovery_email'], | |
); | |
} | |
$this->getIdBrokerClient()->mfaCreate( | |
$this->requestData['employee_id'], | |
$this->requestData['type'], | |
$this->requestData['label'], | |
$this->rpOrigin, | |
$this->requestData['recovery_email'], | |
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mfaCreate
test without type: recovery
was failing since it was adding a recovery_email: null
into the body.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be fine to add that to that test instead of doing if/else here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, that makes sense
src/IdBrokerClient.php
Outdated
if ($recovery_email === null) { | ||
$result = $this->mfaCreateInternal([ | ||
'employee_id' => $employee_id, | ||
'type' => $type, | ||
'label' => $label, | ||
'rpOrigin' => $rpOrigin, | ||
]); | ||
} | ||
else{ | ||
$result = $this->mfaCreateInternal([ | ||
'employee_id' => $employee_id, | ||
'type' => $type, | ||
'label' => $label, | ||
'rpOrigin' => $rpOrigin, | ||
'recovery_email' => $recovery_email, | ||
]); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to not do this?
if ($recovery_email === null) { | |
$result = $this->mfaCreateInternal([ | |
'employee_id' => $employee_id, | |
'type' => $type, | |
'label' => $label, | |
'rpOrigin' => $rpOrigin, | |
]); | |
} | |
else{ | |
$result = $this->mfaCreateInternal([ | |
'employee_id' => $employee_id, | |
'type' => $type, | |
'label' => $label, | |
'rpOrigin' => $rpOrigin, | |
'recovery_email' => $recovery_email, | |
]); | |
} | |
$result = $this->mfaCreateInternal([ | |
'employee_id' => $employee_id, | |
'type' => $type, | |
'label' => $label, | |
'rpOrigin' => $rpOrigin, | |
'recovery_email' => $recovery_email, | |
]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with you @jason-jackson but I don't see that as a reason to withhold PR approval.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or maybe it was for the null issue.
|
]); | ||
} | ||
|
||
var_dump($recovery_email); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a var_dump
got left behind.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I'm glad you noticed that, I'll make sure to remove that
This PR adds support for including a recovery email when creating MFA methods via the
mfaCreate
function.Addition
IdBrokerClient.php
to include a new recovery_email parameter.id-broker-api.php
to define the newrecovery_email
field as an optional string in the request body.recovery
type to the enum list of valid MFA types.(request.feature)
to include a test scenario for therecovery_email
field.