mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
b8bc0aa2b0
Summary: Ref T4986. Instead of requiring users to know the name of an application search engine class, let them select from a list. Test Plan: Created a new panel. {F165468} Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T4986 Differential Revision: https://secure.phabricator.com/D9500
161 lines
4.1 KiB
PHP
161 lines
4.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Projects');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorApplicationProject';
|
|
}
|
|
|
|
public function getCustomFieldObject() {
|
|
return new PhabricatorProject();
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
$saved->setParameter(
|
|
'memberPHIDs',
|
|
$this->readUsersFromRequest($request, 'members'));
|
|
$saved->setParameter('status', $request->getStr('status'));
|
|
|
|
$this->readCustomFieldsFromRequest($request, $saved);
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new PhabricatorProjectQuery())
|
|
->needImages(true);
|
|
|
|
$member_phids = $saved->getParameter('memberPHIDs', array());
|
|
if ($member_phids && is_array($member_phids)) {
|
|
$query->withMemberPHIDs($member_phids);
|
|
}
|
|
|
|
$status = $saved->getParameter('status');
|
|
$status = idx($this->getStatusValues(), $status);
|
|
if ($status) {
|
|
$query->withStatus($status);
|
|
}
|
|
|
|
$this->applyCustomFieldsToQuery($query, $saved);
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved) {
|
|
|
|
$phids = $saved->getParameter('memberPHIDs', array());
|
|
$member_handles = id(new PhabricatorHandleQuery())
|
|
->setViewer($this->requireViewer())
|
|
->withPHIDs($phids)
|
|
->execute();
|
|
|
|
$status = $saved->getParameter('status');
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource('/typeahead/common/users/')
|
|
->setName('members')
|
|
->setLabel(pht('Members'))
|
|
->setValue($member_handles))
|
|
->appendChild(
|
|
id(new AphrontFormSelectControl())
|
|
->setLabel(pht('Status'))
|
|
->setName('status')
|
|
->setOptions($this->getStatusOptions())
|
|
->setValue($status));
|
|
|
|
$this->appendCustomFieldsToForm($form, $saved);
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/project/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
$names = array();
|
|
|
|
if ($this->requireViewer()->isLoggedIn()) {
|
|
$names['joined'] = pht('Joined');
|
|
}
|
|
|
|
$names['active'] = pht('Active');
|
|
$names['all'] = pht('All');
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
$viewer_phid = $this->requireViewer()->getPHID();
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
case 'active':
|
|
return $query
|
|
->setParameter('status', 'active');
|
|
case 'joined':
|
|
return $query
|
|
->setParameter('memberPHIDs', array($viewer_phid))
|
|
->setParameter('status', 'active');
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
private function getStatusOptions() {
|
|
return array(
|
|
'active' => pht('Show Only Active Projects'),
|
|
'all' => pht('Show All Projects'),
|
|
);
|
|
}
|
|
|
|
private function getStatusValues() {
|
|
return array(
|
|
'active' => PhabricatorProjectQuery::STATUS_ACTIVE,
|
|
'all' => PhabricatorProjectQuery::STATUS_ANY,
|
|
);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $projects,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
assert_instances_of($projects, 'PhabricatorProject');
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = new PHUIObjectItemListView();
|
|
$list->setUser($viewer);
|
|
foreach ($projects as $project) {
|
|
$id = $project->getID();
|
|
|
|
$item = id(new PHUIObjectItemView())
|
|
->setHeader($project->getName())
|
|
->setHref($this->getApplicationURI("view/{$id}/"))
|
|
->setImageURI($project->getProfileImageURI());
|
|
|
|
if ($project->getStatus() == PhabricatorProjectStatus::STATUS_ARCHIVED) {
|
|
$item->addIcon('delete-grey', pht('Archived'));
|
|
$item->setDisabled(true);
|
|
}
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|