mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 07:58:18 +02:00
Summary: Ref T1536. This is similar to D6172 but much simpler: we don't need to retain external interfaces here and can do a straight migration. Test Plan: TBA Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1536 Differential Revision: https://secure.phabricator.com/D6173
92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorSettingsPanelLDAP
|
|
extends PhabricatorSettingsPanel {
|
|
|
|
public function getPanelKey() {
|
|
return 'ldap';
|
|
}
|
|
|
|
public function getPanelName() {
|
|
return pht('LDAP');
|
|
}
|
|
|
|
public function getPanelGroup() {
|
|
return pht('Linked Accounts');
|
|
}
|
|
|
|
public function isEnabled() {
|
|
$ldap_provider = new PhabricatorLDAPProvider();
|
|
return $ldap_provider->isProviderEnabled();
|
|
}
|
|
|
|
public function processRequest(AphrontRequest $request) {
|
|
$user = $request->getUser();
|
|
|
|
$ldap_account = id(new PhabricatorExternalAccount())->loadOneWhere(
|
|
'userPHID = %s AND accountType = %s AND accountDomain = %s',
|
|
$user->getPHID(),
|
|
'ldap',
|
|
'self');
|
|
|
|
$forms = array();
|
|
|
|
if (!$ldap_account) {
|
|
$unlink = pht('Link LDAP Account');
|
|
$unlink_form = new AphrontFormView();
|
|
$unlink_form
|
|
->setUser($user)
|
|
->setAction('/ldap/login/')
|
|
->appendChild(hsprintf(
|
|
'<p class="aphront-form-instructions">%s</p>',
|
|
pht('There is currently no LDAP account linked to your Phabricator '.
|
|
'account. You can link an account, which will allow you to use it '.
|
|
'to log into Phabricator.')))
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('LDAP username'))
|
|
->setName('username'))
|
|
->appendChild(
|
|
id(new AphrontFormPasswordControl())
|
|
->setLabel(pht('Password'))
|
|
->setName('password'))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht("Link LDAP Account \xC2\xBB")));
|
|
|
|
$forms['Link Account'] = $unlink_form;
|
|
} else {
|
|
$unlink = pht('Unlink LDAP Account');
|
|
$unlink_form = new AphrontFormView();
|
|
$unlink_form
|
|
->setUser($user)
|
|
->appendChild(hsprintf(
|
|
'<p class="aphront-form-instructions">%s</p>',
|
|
pht('You may unlink this account from your LDAP account. This will '.
|
|
'prevent you from logging in with your LDAP credentials.')))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->addCancelButton('/ldap/unlink/', $unlink));
|
|
|
|
$forms['Unlink Account'] = $unlink_form;
|
|
}
|
|
|
|
$header = new PhabricatorHeaderView();
|
|
$header->setHeader(pht('LDAP Account Settings'));
|
|
|
|
$formbox = new PHUIBoxView();
|
|
foreach ($forms as $name => $form) {
|
|
if ($name) {
|
|
$head = new PhabricatorHeaderView();
|
|
$head->setHeader($name);
|
|
$formbox->appendChild($head);
|
|
}
|
|
$formbox->appendChild($form);
|
|
}
|
|
|
|
return array(
|
|
$header,
|
|
$formbox,
|
|
);
|
|
}
|
|
}
|