[8.x] Modify UserRepository to check for 'findAndValidateForPassport' method #1144
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR updates the UserRepository to check if the
findAndValidateForPassport
method exists on theUser
model. It allows you to combine the existingfindForPassport
andvalidateForPassportPasswordGrant
methods.Why would you want to use this
findAndValidateForPassport
method on yourUser
model?Passport assumes the user with the username always already exists and always uses a traditional password to authenticate. That is not the case in certain applications. For example, if a user authenticates with his phone number and a verification code is received via SMS. You don't want to create that user unless he authenticates with his phone number and the correct verification code. By adding the
findAndValidateForPassport
method, you allow a lot more flexibility in the way you can customize Passport.An example of how you could use this method:
If this PR gets accepted, I will create a PR to update the docs.