mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
36103dfa18
Summary: Updates Auth app for handleRequest Test Plan: Tested what I could, Log in, Log out, Change Password, New account, Verify account... but extra eyes very helpful here. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8628 Differential Revision: https://secure.phabricator.com/D13748
130 lines
3.4 KiB
PHP
130 lines
3.4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuthLinkController
|
|
extends PhabricatorAuthController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $this->getViewer();
|
|
$action = $request->getURIData('action');
|
|
$provider_key = $request->getURIData('pkey');
|
|
|
|
$provider = PhabricatorAuthProvider::getEnabledProviderByKey(
|
|
$provider_key);
|
|
if (!$provider) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
switch ($action) {
|
|
case 'link':
|
|
if (!$provider->shouldAllowAccountLink()) {
|
|
return $this->renderErrorPage(
|
|
pht('Account Not Linkable'),
|
|
array(
|
|
pht('This provider is not configured to allow linking.'),
|
|
));
|
|
}
|
|
break;
|
|
case 'refresh':
|
|
if (!$provider->shouldAllowAccountRefresh()) {
|
|
return $this->renderErrorPage(
|
|
pht('Account Not Refreshable'),
|
|
array(
|
|
pht('This provider does not allow refreshing.'),
|
|
));
|
|
}
|
|
break;
|
|
default:
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$account = id(new PhabricatorExternalAccount())->loadOneWhere(
|
|
'accountType = %s AND accountDomain = %s AND userPHID = %s',
|
|
$provider->getProviderType(),
|
|
$provider->getProviderDomain(),
|
|
$viewer->getPHID());
|
|
|
|
switch ($action) {
|
|
case 'link':
|
|
if ($account) {
|
|
return $this->renderErrorPage(
|
|
pht('Account Already Linked'),
|
|
array(
|
|
pht(
|
|
'Your Phabricator account is already linked to an external '.
|
|
'account for this provider.'),
|
|
));
|
|
}
|
|
break;
|
|
case 'refresh':
|
|
if (!$account) {
|
|
return $this->renderErrorPage(
|
|
pht('No Account Linked'),
|
|
array(
|
|
pht(
|
|
'You do not have a linked account on this provider, and thus '.
|
|
'can not refresh it.'),
|
|
));
|
|
}
|
|
break;
|
|
default:
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$panel_uri = '/settings/panel/external/';
|
|
|
|
PhabricatorCookies::setClientIDCookie($request);
|
|
|
|
switch ($action) {
|
|
case 'link':
|
|
id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession(
|
|
$viewer,
|
|
$request,
|
|
$panel_uri);
|
|
|
|
$form = $provider->buildLinkForm($this);
|
|
break;
|
|
case 'refresh':
|
|
$form = $provider->buildRefreshForm($this);
|
|
break;
|
|
default:
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
if ($provider->isLoginFormAButton()) {
|
|
require_celerity_resource('auth-css');
|
|
$form = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-link-button pl',
|
|
),
|
|
$form);
|
|
}
|
|
|
|
switch ($action) {
|
|
case 'link':
|
|
$name = pht('Link Account');
|
|
$title = pht('Link %s Account', $provider->getProviderName());
|
|
break;
|
|
case 'refresh':
|
|
$name = pht('Refresh Account');
|
|
$title = pht('Refresh %s Account', $provider->getProviderName());
|
|
break;
|
|
default:
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(pht('Link Account'), $panel_uri);
|
|
$crumbs->addTextCrumb($provider->getProviderName($name));
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$form,
|
|
),
|
|
array(
|
|
'title' => $title,
|
|
));
|
|
}
|
|
|
|
}
|