-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ | |
|
||
public class VercelMPIdentityProvider extends OIDCIdentityProvider implements SocialIdentityProvider<OIDCIdentityProviderConfig> { | ||
private static final String BROKER_NONCE_PARAM = "BROKER_NONCE"; | ||
private static final String EMAIL_FALLBACK_TEMPLATE = "%[email protected]"; | ||
|
||
private static final Logger logger = Logger.getLogger(VercelMPIdentityProvider.class); | ||
//private static final String AUTH_URL = "https://api.vercel.com/oauth/authorize"; | ||
|
@@ -152,7 +153,7 @@ protected BrokeredIdentityContext extractIdentity(AccessTokenResponse tokenRespo | |
String userIdPerInstallation = (String) idToken.getOtherClaims().get("user_id") | ||
|
||
if (email == null || email.isEmpty()) { | ||
email = userIdPerInstallation + "@vercel-marketplace.com"; | ||
email = EMAIL_FALLBACK_TEMPLATE.formatted(userIdPerInstallation); | ||
} | ||
// Global user ID is provided by Vercel only for Neon integrations! | ||
// For other marketplace integrations it provides only user ID per each integration installation. | ||
|