Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

ethancanne
Copy link

This PR adds support for including a recovery email when creating MFA methods via the mfaCreate function.

Addition

  • Updated the mfaCreate method in IdBrokerClient.php to include a new recovery_email parameter.
  • Modified the ID Broker API description in id-broker-api.php to define the new recovery_email field as an optional string in the request body.
  • Added a recovery type to the enum list of valid MFA types.
  • Updated the feature file (request.feature) to include a test scenario for the recovery_email field.

@ethancanne ethancanne self-assigned this Apr 3, 2025
@ethancanne ethancanne requested a review from a team as a code owner April 3, 2025 15:04
@ethancanne ethancanne requested review from briskt, forevermatt, mtompset and jason-jackson and removed request for a team April 3, 2025 15:04
Copy link
Contributor

@jason-jackson jason-jackson left a 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.

Comment on lines 477 to 492
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'],
);
}
Copy link
Contributor

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?

Suggested change
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'],
);

Copy link
Author

@ethancanne ethancanne Apr 3, 2025

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.

Copy link
Contributor

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.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, that makes sense

Comment on lines 321 to 338
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,
]);
}

Copy link
Contributor

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?

Suggested change
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,
]);

Copy link
Contributor

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.

Copy link
Contributor

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);
Copy link
Contributor

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.

Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants