-
Notifications
You must be signed in to change notification settings - Fork 55
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
Lowercase input filter #4906
base: devel
Are you sure you want to change the base?
Lowercase input filter #4906
Conversation
⛔ Feature branch deployment currently inactive.If the PR is still open, you can add the |
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.
Looking great already, thanks a lot for contributing!
One part of one point of the spec isn't met yet, see comment.
Also, the data migration seems more and more of a requirement to me, the longer I think about it. To implement a data migration, you could just copy pone of the migrations in api/migrations/schema and write SQL code inside which looks something like UPDATE xy SET email=LOWER(email)
. No need for a down
implementation in the migration in this case.
$profiles = $profileRepository->findBy(['email' => strtolower($email)]); | ||
$profile = count($profiles) > 0 ? $profiles[0] : null; |
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.
As long as we don't do the data migration, this will break the login for people who log in via OAuth and have capital letters in their email address on the external identity provider.
We should probably do the data migration, and also make sure that the email address which we get from the OAuth providers (here and here) is lower cased.
Another idea I had to go without data migration would be to compare here in the authenticators using SQL WHERE LOWER("email") = ?
. But that might introduce be a security issue, and would break our undocumented feature which allows users to have both a normal login and an OAuth login to the same account.
Hey @krm-shrftdnv |
Fixes #4880
I did not implement migration to change existing data, because this is a rather crucial moment, and I have not yet fully figured out the scheme