mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 04:20:55 +01:00
f46e3badae
Summary: somewhat. de-uglified panels, add dust, etc. you get it. Test Plan: Visited, looked at nice new form. Visited `http://phab.van/people/ldap/?import=true&usernames[]=anh&usernames[]=han&email[anh]=anh%40nhan.com&email[han]=han%40nhan.com&name[anh]=Nhan&name[han]=Nguyen` to hack in a few users. Did not work (CSRF ¬.¬), but saw what I wanted. Beautiful `PhabricatorObjectItemView`s. With color bars These images where before the diff update. Error messages would appear as attributes (good for you that I did not include them, since it looks horrible) The looks of it (refuse to take THIS in mobile): {F36428} {F36429} Reviewers: epriestley, chad, btrahan Reviewed By: btrahan CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5387
203 lines
5.4 KiB
PHP
203 lines
5.4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorPeopleLdapController
|
|
extends PhabricatorPeopleController {
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
$admin = $request->getUser();
|
|
|
|
$content = array();
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setAction($request->getRequestURI()
|
|
->alter('search', 'true')->alter('import', null))
|
|
->setUser($admin)
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('LDAP username'))
|
|
->setName('username'))
|
|
->appendChild(
|
|
id(new AphrontFormPasswordControl())
|
|
->setLabel(pht('Password'))
|
|
->setName('password'))
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('LDAP query'))
|
|
->setCaption(pht('A filter such as (objectClass=*)'))
|
|
->setName('query'))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Search')));
|
|
|
|
$panel = id(new AphrontPanelView())
|
|
->setHeader(pht('Import LDAP Users'))
|
|
->setNoBackground()
|
|
->setWidth(AphrontPanelView::WIDTH_FORM)
|
|
->appendChild($form);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addCrumb(
|
|
id(new PhabricatorCrumbView())
|
|
->setName(pht('Import Ldap Users'))
|
|
->setHref($this->getApplicationURI('/ldap/')));
|
|
|
|
$nav = $this->buildSideNavView();
|
|
$nav->setCrumbs($crumbs);
|
|
$nav->selectFilter('ldap');
|
|
$nav->appendChild($content);
|
|
|
|
if ($request->getStr('import')) {
|
|
$nav->appendChild($this->processImportRequest($request));
|
|
}
|
|
|
|
$nav->appendChild($panel);
|
|
|
|
if ($request->getStr('search')) {
|
|
$nav->appendChild($this->processSearchRequest($request));
|
|
}
|
|
|
|
return $this->buildApplicationPage(
|
|
$nav,
|
|
array(
|
|
'title' => pht('Import Ldap Users'),
|
|
'device' => true,
|
|
'dust' => true,
|
|
));
|
|
}
|
|
|
|
private function processImportRequest($request) {
|
|
$admin = $request->getUser();
|
|
$usernames = $request->getArr('usernames');
|
|
$emails = $request->getArr('email');
|
|
$names = $request->getArr('name');
|
|
|
|
$notice_view = new AphrontErrorView();
|
|
$notice_view->setSeverity(AphrontErrorView::SEVERITY_NOTICE);
|
|
$notice_view->setTitle(pht("Import Successful"));
|
|
$notice_view->setErrors(array(
|
|
pht("Successfully imported users from LDAP"),
|
|
));
|
|
|
|
$list = new PhabricatorObjectItemListView();
|
|
$list->setNoDataString(pht("No users imported?"));
|
|
|
|
foreach ($usernames as $username) {
|
|
$user = new PhabricatorUser();
|
|
$user->setUsername($username);
|
|
$user->setRealname($names[$username]);
|
|
|
|
$email_obj = id(new PhabricatorUserEmail())
|
|
->setAddress($emails[$username])
|
|
->setIsVerified(1);
|
|
try {
|
|
id(new PhabricatorUserEditor())
|
|
->setActor($admin)
|
|
->createNewUser($user, $email_obj);
|
|
|
|
$ldap_info = new PhabricatorUserLDAPInfo();
|
|
$ldap_info->setLDAPUsername($username);
|
|
$ldap_info->setUserID($user->getID());
|
|
$ldap_info->save();
|
|
|
|
$header = pht('Successfully added %s', $username);
|
|
$attribute = null;
|
|
$color = 'green';
|
|
} catch (Exception $ex) {
|
|
$header = pht('Failed to add %s', $username);
|
|
$attribute = $ex->getMessage();
|
|
$color = 'red';
|
|
}
|
|
|
|
$item = id(new PhabricatorObjectItemView())
|
|
->setHeader($header)
|
|
->addAttribute($attribute)
|
|
->setBarColor($color);
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return array(
|
|
$notice_view,
|
|
$list,
|
|
);
|
|
|
|
}
|
|
|
|
private function processSearchRequest($request) {
|
|
$panel = new AphrontPanelView();
|
|
|
|
$admin = $request->getUser();
|
|
|
|
$username = $request->getStr('username');
|
|
$password = $request->getStr('password');
|
|
$search = $request->getStr('query');
|
|
|
|
try {
|
|
$ldap_provider = new PhabricatorLDAPProvider();
|
|
$envelope = new PhutilOpaqueEnvelope($password);
|
|
$ldap_provider->auth($username, $envelope);
|
|
$results = $ldap_provider->search($search);
|
|
foreach ($results as $key => $result) {
|
|
$results[$key][] = $this->renderUserInputs($result);
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($admin);
|
|
|
|
$table = new AphrontTableView($results);
|
|
$table->setHeaders(
|
|
array(
|
|
pht('Username'),
|
|
pht('Email'),
|
|
pht('Real Name'),
|
|
pht('Import?'),
|
|
));
|
|
$form->appendChild($table);
|
|
$form->setAction($request->getRequestURI()
|
|
->alter('import', 'true')->alter('search', null))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Import')));
|
|
|
|
|
|
$panel->appendChild($form);
|
|
} catch (Exception $ex) {
|
|
$error_view = new AphrontErrorView();
|
|
$error_view->setTitle(pht('LDAP Search Failed'));
|
|
$error_view->setErrors(array($ex->getMessage()));
|
|
return $error_view;
|
|
}
|
|
return $panel;
|
|
|
|
}
|
|
|
|
private function renderUserInputs($user) {
|
|
$username = $user[0];
|
|
return hsprintf(
|
|
'%s%s%s',
|
|
phutil_tag(
|
|
'input',
|
|
array(
|
|
'type' => 'checkbox',
|
|
'name' => 'usernames[]',
|
|
'value' => $username,
|
|
)),
|
|
phutil_tag(
|
|
'input',
|
|
array(
|
|
'type' => 'hidden',
|
|
'name' => "email[$username]",
|
|
'value' => $user[1],
|
|
)),
|
|
phutil_tag(
|
|
'input',
|
|
array(
|
|
'type' => 'hidden',
|
|
'name' => "name[$username]",
|
|
'value' => $user[2],
|
|
)));
|
|
}
|
|
|
|
}
|