2013-09-10 19:04:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class ManiphestTaskSearchEngine
|
|
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
|
2013-09-10 19:44:42 +02:00
|
|
|
$saved->setParameter(
|
|
|
|
'assignedPHIDs',
|
|
|
|
$this->readUsersFromRequest($request, 'assigned'));
|
|
|
|
|
|
|
|
$saved->setParameter('withUnassigned', $request->getBool('withUnassigned'));
|
|
|
|
|
|
|
|
$saved->setParameter(
|
|
|
|
'authorPHIDs',
|
|
|
|
$this->readUsersFromRequest($request, 'authors'));
|
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
$saved->setParameter('statuses', $request->getArr('statuses'));
|
2013-09-10 20:54:17 +02:00
|
|
|
$saved->setParameter('priorities', $request->getArr('priorities'));
|
2013-09-10 20:07:34 +02:00
|
|
|
$saved->setParameter('order', $request->getStr('order'));
|
|
|
|
|
2013-09-10 20:54:17 +02:00
|
|
|
$ids = $request->getStrList('ids');
|
|
|
|
foreach ($ids as $key => $id) {
|
|
|
|
$id = trim($id, ' Tt');
|
|
|
|
if (!$id || !is_numeric($id)) {
|
|
|
|
unset($ids[$key]);
|
|
|
|
} else {
|
|
|
|
$ids[$key] = $id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$saved->setParameter('ids', $ids);
|
|
|
|
|
2013-09-12 22:03:05 +02:00
|
|
|
$saved->setParameter('fulltext', $request->getStr('fulltext'));
|
|
|
|
|
2013-09-10 19:04:26 +02:00
|
|
|
return $saved;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
|
|
$query = id(new ManiphestTaskQuery());
|
|
|
|
|
2013-09-10 19:44:42 +02:00
|
|
|
$author_phids = $saved->getParameter('authorPHIDs');
|
|
|
|
if ($author_phids) {
|
|
|
|
$query->withAuthors($author_phids);
|
|
|
|
}
|
|
|
|
|
|
|
|
$with_unassigned = $saved->getParameter('withUnassigned');
|
|
|
|
if ($with_unassigned) {
|
|
|
|
$query->withOwners(array(null));
|
|
|
|
} else {
|
|
|
|
$assigned_phids = $saved->getParameter('assignedPHIDs', array());
|
|
|
|
if ($assigned_phids) {
|
|
|
|
$query->withOwners($assigned_phids);
|
|
|
|
}
|
|
|
|
}
|
2013-09-10 19:04:26 +02:00
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
$statuses = $saved->getParameter('statuses');
|
|
|
|
if ($statuses) {
|
|
|
|
$query->withStatuses($statuses);
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:54:17 +02:00
|
|
|
$priorities = $saved->getParameter('priorities');
|
|
|
|
if ($priorities) {
|
|
|
|
$query->withPriorities($priorities);
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
$order = $saved->getParameter('order');
|
|
|
|
$order = idx($this->getOrderValues(), $order);
|
|
|
|
if ($order) {
|
|
|
|
$query->setOrderBy($order);
|
|
|
|
} else {
|
|
|
|
$query->setOrderBy(head($this->getOrderValues()));
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:54:17 +02:00
|
|
|
$ids = $saved->getParameter('ids');
|
|
|
|
if ($ids) {
|
|
|
|
$query->withIDs($ids);
|
|
|
|
}
|
|
|
|
|
2013-09-12 22:03:05 +02:00
|
|
|
$fulltext = $saved->getParameter('fulltext');
|
|
|
|
if (strlen($fulltext)) {
|
|
|
|
$query->withFullTextSearch($fulltext);
|
|
|
|
}
|
|
|
|
|
2013-09-10 19:04:26 +02:00
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildSearchForm(
|
|
|
|
AphrontFormView $form,
|
2013-09-10 19:44:42 +02:00
|
|
|
PhabricatorSavedQuery $saved) {
|
|
|
|
|
|
|
|
$assigned_phids = $saved->getParameter('assignedPHIDs', array());
|
|
|
|
$author_phids = $saved->getParameter('authorPHIDs', array());
|
2013-09-10 19:04:26 +02:00
|
|
|
|
2013-09-10 19:44:42 +02:00
|
|
|
$all_phids = array_merge($assigned_phids, $author_phids);
|
|
|
|
|
|
|
|
if ($all_phids) {
|
|
|
|
$handles = id(new PhabricatorHandleQuery())
|
|
|
|
->setViewer($this->requireViewer())
|
|
|
|
->withPHIDs($all_phids)
|
|
|
|
->execute();
|
|
|
|
} else {
|
|
|
|
$handles = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$assigned_tokens = array_select_keys($handles, $assigned_phids);
|
|
|
|
$assigned_tokens = mpull($assigned_tokens, 'getFullName', 'getPHID');
|
|
|
|
|
|
|
|
$author_tokens = array_select_keys($handles, $author_phids);
|
|
|
|
$author_tokens = mpull($author_tokens, 'getFullName', 'getPHID');
|
|
|
|
|
|
|
|
$with_unassigned = $saved->getParameter('withUnassigned');
|
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
$statuses = $saved->getParameter('statuses', array());
|
|
|
|
$statuses = array_fuse($statuses);
|
|
|
|
$status_control = id(new AphrontFormCheckboxControl())
|
|
|
|
->setLabel(pht('Status'));
|
|
|
|
foreach (ManiphestTaskStatus::getTaskStatusMap() as $status => $name) {
|
|
|
|
$status_control->addCheckbox(
|
|
|
|
'statuses[]',
|
|
|
|
$status,
|
|
|
|
$name,
|
|
|
|
isset($statuses[$status]));
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:54:17 +02:00
|
|
|
$priorities = $saved->getParameter('priorities', array());
|
|
|
|
$priorities = array_fuse($priorities);
|
|
|
|
$priority_control = id(new AphrontFormCheckboxControl())
|
|
|
|
->setLabel(pht('Priority'));
|
|
|
|
foreach (ManiphestTaskPriority::getTaskPriorityMap() as $pri => $name) {
|
|
|
|
$priority_control->addCheckbox(
|
|
|
|
'priorities[]',
|
|
|
|
$pri,
|
|
|
|
$name,
|
|
|
|
isset($priorities[$pri]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$ids = $saved->getParameter('ids', array());
|
|
|
|
|
2013-09-10 19:44:42 +02:00
|
|
|
$form
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTokenizerControl())
|
|
|
|
->setDatasource('/typeahead/common/accounts/')
|
|
|
|
->setName('assigned')
|
|
|
|
->setLabel(pht('Assigned To'))
|
|
|
|
->setValue($assigned_tokens))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormCheckboxControl())
|
|
|
|
->addCheckbox(
|
|
|
|
'withUnassigned',
|
|
|
|
1,
|
|
|
|
pht('Show only unassigned tasks.'),
|
|
|
|
$with_unassigned))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTokenizerControl())
|
|
|
|
->setDatasource('/typeahead/common/accounts/')
|
|
|
|
->setName('authors')
|
|
|
|
->setLabel(pht('Authors'))
|
2013-09-10 20:07:34 +02:00
|
|
|
->setValue($author_tokens))
|
|
|
|
->appendChild($status_control)
|
2013-09-10 20:54:17 +02:00
|
|
|
->appendChild($priority_control)
|
2013-09-10 20:07:34 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSelectControl())
|
|
|
|
->setName('order')
|
|
|
|
->setLabel(pht('Order'))
|
|
|
|
->setValue($saved->getParameter('order'))
|
2013-09-10 20:54:17 +02:00
|
|
|
->setOptions($this->getOrderOptions()))
|
2013-09-12 22:03:05 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setName('fulltext')
|
|
|
|
->setLabel(pht('Contains Text'))
|
|
|
|
->setValue($saved->getParameter('fulltext')))
|
2013-09-10 20:54:17 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setName('ids')
|
|
|
|
->setLabel(pht('Task IDs'))
|
|
|
|
->setValue(implode(', ', $ids)));
|
2013-09-10 19:04:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getURI($path) {
|
|
|
|
return '/maniphest/'.$path;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBuiltinQueryNames() {
|
|
|
|
$names = array();
|
|
|
|
|
|
|
|
if ($this->requireViewer()->isLoggedIn()) {
|
|
|
|
$names['assigned'] = pht('Assigned');
|
|
|
|
$names['authored'] = pht('Authored');
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
$names['open'] = pht('Open Tasks');
|
2013-09-10 19:04:26 +02:00
|
|
|
$names['all'] = pht('All Tasks');
|
|
|
|
|
|
|
|
return $names;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
|
|
|
|
$query = $this->newSavedQuery();
|
|
|
|
$query->setQueryKey($query_key);
|
|
|
|
|
2013-09-10 19:44:42 +02:00
|
|
|
$viewer_phid = $this->requireViewer()->getPHID();
|
|
|
|
|
2013-09-10 19:04:26 +02:00
|
|
|
switch ($query_key) {
|
|
|
|
case 'all':
|
|
|
|
return $query;
|
|
|
|
case 'assigned':
|
2013-09-10 20:07:34 +02:00
|
|
|
return $query
|
|
|
|
->setParameter('assignedPHIDs', array($viewer_phid))
|
|
|
|
->setParameter('statuses', array(ManiphestTaskStatus::STATUS_OPEN));
|
|
|
|
case 'open':
|
|
|
|
return $query
|
|
|
|
->setParameter('statuses', array(ManiphestTaskStatus::STATUS_OPEN));
|
2013-09-10 19:04:26 +02:00
|
|
|
case 'authored':
|
2013-09-10 20:07:34 +02:00
|
|
|
return $query
|
|
|
|
->setParameter('authorPHIDs', array($viewer_phid))
|
|
|
|
->setParameter('statuses', array(ManiphestTaskStatus::STATUS_OPEN));
|
2013-09-10 19:04:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
|
|
}
|
|
|
|
|
2013-09-10 20:07:34 +02:00
|
|
|
private function getOrderOptions() {
|
|
|
|
return array(
|
|
|
|
'priority' => pht('Priority'),
|
|
|
|
'updated' => pht('Date Updated'),
|
|
|
|
'created' => pht('Date Created'),
|
|
|
|
'title' => pht('Title'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getOrderValues() {
|
|
|
|
return array(
|
|
|
|
'priority' => ManiphestTaskQuery::ORDER_PRIORITY,
|
|
|
|
'updated' => ManiphestTaskQuery::ORDER_MODIFIED,
|
|
|
|
'created' => ManiphestTaskQuery::ORDER_CREATED,
|
|
|
|
'title' => ManiphestTaskQuery::ORDER_TITLE,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-09-10 19:04:26 +02:00
|
|
|
}
|