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

enhance: support multiple auth providers #1720

Merged
merged 1 commit into from
Feb 12, 2025

Conversation

g-linville
Copy link
Contributor

for #1719

This makes it so that a new identity will be mapped to an existing user, if the existing user has the same email address as the new identity. Previously we were doing this based on username, but while usernames in GitHub can be set by the user, the username in Google is just a random number, so this doesn't work.

I also removed the restrictions (in both the frontend and the backend) that prevent you from configuring more than one auth provider at once.

Google and GitHub both require you to verify that you have access to the email for your account, so this implementation is secure. It is important that future auth providers that we add also adhere to this constraint, and do not allow you to have an email address that you don't really own.

@@ -63,7 +63,7 @@ func ensureIdentity(tx *gorm.DB, id *types.Identity, timezone string, role types
if user.ID != 0 {
userQuery = userQuery.Where("id = ?", user.ID)
} else {
userQuery = userQuery.Where("username = ?", user.Username)
userQuery = userQuery.Where("email = ?", user.Email)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Surprisingly, this is the only backend change that was necessary to reconcile identities from different auth providers down to the same user.

Copy link
Contributor

@ryanhopperlowe ryanhopperlowe left a comment

Choose a reason for hiding this comment

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

+7 -62 ❤️

@g-linville g-linville merged commit f9ab72b into obot-platform:main Feb 12, 2025
3 checks passed
@g-linville g-linville deleted the multiple-auth-providers branch February 12, 2025 19:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants