Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15470727
D14319.id34573.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D14319.id34573.diff
View Options
diff --git a/src/applications/auth/controller/PhabricatorAuthLoginController.php b/src/applications/auth/controller/PhabricatorAuthLoginController.php
--- a/src/applications/auth/controller/PhabricatorAuthLoginController.php
+++ b/src/applications/auth/controller/PhabricatorAuthLoginController.php
@@ -113,6 +113,27 @@
$provider->getProviderName()));
}
} else {
+
+ // If the user already has a linked account of this type, prevent them
+ // from linking a second account. This can happen if they swap logins
+ // and then refresh the account link. See T6707. We will eventually
+ // allow this after T2549.
+ $existing_accounts = id(new PhabricatorExternalAccountQuery())
+ ->setViewer($viewer)
+ ->withUserPHIDs(array($viewer->getPHID()))
+ ->withAccountTypes(array($account->getAccountType()))
+ ->execute();
+ if ($existing_accounts) {
+ return $this->renderError(
+ pht(
+ 'Your Phabricator account is already connected to an external '.
+ 'account on this provider ("%s"), but you are currently logged '.
+ 'in to the provider with a different account. Log out of the '.
+ 'external service, then log back in with the correct account '.
+ 'before refreshing the account link.',
+ $provider->getProviderName()));
+ }
+
if ($provider->shouldAllowAccountLink()) {
return $this->processLinkUser($account);
} else {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 12:40 AM (18 h, 39 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7541147
Default Alt Text
D14319.id34573.diff (1 KB)
Attached To
Mode
D14319: Prevent duplicate account links from being created by swapping logins and then refreshing the link
Attached
Detach File
Event Timeline
Log In to Comment