mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 16:08:19 +02:00
Add "Any User Projects" to Maniphest Custom Query
Summary: Added a new way of filtering projects in Maniphest custom queries. This will filter on any project that a user is associated with. Test Plan: - Create some tasks. - Create a project (auto join). - Add the project to some of the tasks. - Run custom query, see the correct task. - Save custom query, check the same tasks are there. - Add the project to another task, check task was added in the custom query list view. - Remove the project from a task and check the task disappeared from the custom query list view. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5570
This commit is contained in:
parent
74609d9366
commit
81377dd922
2 changed files with 74 additions and 21 deletions
|
@ -8,16 +8,17 @@
|
||||||
*/
|
*/
|
||||||
final class ManiphestTaskQuery extends PhabricatorQuery {
|
final class ManiphestTaskQuery extends PhabricatorQuery {
|
||||||
|
|
||||||
private $taskIDs = array();
|
private $taskIDs = array();
|
||||||
private $taskPHIDs = array();
|
private $taskPHIDs = array();
|
||||||
private $authorPHIDs = array();
|
private $authorPHIDs = array();
|
||||||
private $ownerPHIDs = array();
|
private $ownerPHIDs = array();
|
||||||
private $includeUnowned = null;
|
private $includeUnowned = null;
|
||||||
private $projectPHIDs = array();
|
private $projectPHIDs = array();
|
||||||
private $xprojectPHIDs = array();
|
private $xprojectPHIDs = array();
|
||||||
private $subscriberPHIDs = array();
|
private $subscriberPHIDs = array();
|
||||||
private $anyProjectPHIDs = array();
|
private $anyProjectPHIDs = array();
|
||||||
private $includeNoProject = null;
|
private $anyUserProjectPHIDs = array();
|
||||||
|
private $includeNoProject = null;
|
||||||
|
|
||||||
private $fullTextSearch = '';
|
private $fullTextSearch = '';
|
||||||
|
|
||||||
|
@ -183,6 +184,11 @@ final class ManiphestTaskQuery extends PhabricatorQuery {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function withAnyUserProjects(array $users) {
|
||||||
|
$this->anyUserProjectPHIDs = $users;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
public function execute() {
|
public function execute() {
|
||||||
|
|
||||||
$task_dao = new ManiphestTask();
|
$task_dao = new ManiphestTask();
|
||||||
|
@ -204,6 +210,7 @@ final class ManiphestTaskQuery extends PhabricatorQuery {
|
||||||
$where[] = $this->buildSubscriberWhereClause($conn);
|
$where[] = $this->buildSubscriberWhereClause($conn);
|
||||||
$where[] = $this->buildProjectWhereClause($conn);
|
$where[] = $this->buildProjectWhereClause($conn);
|
||||||
$where[] = $this->buildAnyProjectWhereClause($conn);
|
$where[] = $this->buildAnyProjectWhereClause($conn);
|
||||||
|
$where[] = $this->buildAnyUserProjectWhereClause($conn);
|
||||||
$where[] = $this->buildXProjectWhereClause($conn);
|
$where[] = $this->buildXProjectWhereClause($conn);
|
||||||
$where[] = $this->buildFullTextWhereClause($conn);
|
$where[] = $this->buildFullTextWhereClause($conn);
|
||||||
|
|
||||||
|
@ -475,8 +482,26 @@ final class ManiphestTaskQuery extends PhabricatorQuery {
|
||||||
$this->anyProjectPHIDs);
|
$this->anyProjectPHIDs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function buildAnyUserProjectWhereClause(
|
||||||
|
AphrontDatabaseConnection $conn) {
|
||||||
|
if (!$this->anyUserProjectPHIDs) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$projects = id(new PhabricatorProjectQuery())
|
||||||
|
->setViewer($this->viewer)
|
||||||
|
->withMemberPHIDs($this->anyUserProjectPHIDs)
|
||||||
|
->execute();
|
||||||
|
$any_user_project_phids = mpull($projects, 'getPHID');
|
||||||
|
|
||||||
|
return qsprintf(
|
||||||
|
$conn,
|
||||||
|
'anyproject.projectPHID IN (%Ls)',
|
||||||
|
$any_user_project_phids);
|
||||||
|
}
|
||||||
|
|
||||||
private function buildAnyProjectJoinClause(AphrontDatabaseConnection $conn) {
|
private function buildAnyProjectJoinClause(AphrontDatabaseConnection $conn) {
|
||||||
if (!$this->anyProjectPHIDs) {
|
if (!$this->anyProjectPHIDs && !$this->anyUserProjectPHIDs) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,16 +37,17 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
$max_priority = $request->getInt('set_hpriority');
|
$max_priority = $request->getInt('set_hpriority');
|
||||||
|
|
||||||
$uri = $request->getRequestURI()
|
$uri = $request->getRequestURI()
|
||||||
->alter('users', $this->getArrToStrList('set_users'))
|
->alter('users', $this->getArrToStrList('set_users'))
|
||||||
->alter('projects', $this->getArrToStrList('set_projects'))
|
->alter('projects', $this->getArrToStrList('set_projects'))
|
||||||
->alter('aprojects', $this->getArrToStrList('set_aprojects'))
|
->alter('aprojects', $this->getArrToStrList('set_aprojects'))
|
||||||
->alter('xprojects', $this->getArrToStrList('set_xprojects'))
|
->alter('useraprojects', $this->getArrToStrList('set_useraprojects'))
|
||||||
->alter('owners', $this->getArrToStrList('set_owners'))
|
->alter('xprojects', $this->getArrToStrList('set_xprojects'))
|
||||||
->alter('authors', $this->getArrToStrList('set_authors'))
|
->alter('owners', $this->getArrToStrList('set_owners'))
|
||||||
->alter('lpriority', $min_priority)
|
->alter('authors', $this->getArrToStrList('set_authors'))
|
||||||
->alter('hpriority', $max_priority)
|
->alter('lpriority', $min_priority)
|
||||||
->alter('tasks', $task_ids)
|
->alter('hpriority', $max_priority)
|
||||||
->alter('search', $search_text);
|
->alter('tasks', $task_ids)
|
||||||
|
->alter('search', $search_text);
|
||||||
|
|
||||||
return id(new AphrontRedirectResponse())->setURI($uri);
|
return id(new AphrontRedirectResponse())->setURI($uri);
|
||||||
}
|
}
|
||||||
|
@ -105,6 +106,9 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
$any_project_phids = $query->getParameter(
|
$any_project_phids = $query->getParameter(
|
||||||
'anyProjectPHIDs',
|
'anyProjectPHIDs',
|
||||||
array());
|
array());
|
||||||
|
$any_user_project_phids = $query->getParameter(
|
||||||
|
'anyUserProjectPHIDs',
|
||||||
|
array());
|
||||||
$exclude_project_phids = $query->getParameter(
|
$exclude_project_phids = $query->getParameter(
|
||||||
'excludeProjectPHIDs',
|
'excludeProjectPHIDs',
|
||||||
array());
|
array());
|
||||||
|
@ -215,6 +219,19 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
->setCaption(pht('Find tasks in ANY of these projects ("OR" query).'))
|
->setCaption(pht('Find tasks in ANY of these projects ("OR" query).'))
|
||||||
->setValue($atokens));
|
->setValue($atokens));
|
||||||
|
|
||||||
|
$tokens = array();
|
||||||
|
foreach ($any_user_project_phids as $phid) {
|
||||||
|
$tokens[$phid] = $handles[$phid]->getFullName();
|
||||||
|
}
|
||||||
|
$form->appendChild(
|
||||||
|
id(new AphrontFormTokenizerControl())
|
||||||
|
->setDatasource('/typeahead/common/users/')
|
||||||
|
->setName('set_useraprojects')
|
||||||
|
->setLabel(pht('Any User Projects'))
|
||||||
|
->setCaption(
|
||||||
|
pht('Find tasks in ANY of these users\' projects ("OR" query).'))
|
||||||
|
->setValue($tokens));
|
||||||
|
|
||||||
$tokens = array();
|
$tokens = array();
|
||||||
foreach ($exclude_project_phids as $phid) {
|
foreach ($exclude_project_phids as $phid) {
|
||||||
$tokens[$phid] = $handles[$phid]->getFullName();
|
$tokens[$phid] = $handles[$phid]->getFullName();
|
||||||
|
@ -427,6 +444,9 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
$any_project_phids = $search_query->getParameter(
|
$any_project_phids = $search_query->getParameter(
|
||||||
'anyProjectPHIDs',
|
'anyProjectPHIDs',
|
||||||
array());
|
array());
|
||||||
|
$any_user_project_phids = $search_query->getParameter(
|
||||||
|
'anyUserProjectPHIDs',
|
||||||
|
array());
|
||||||
$xproject_phids = $search_query->getParameter(
|
$xproject_phids = $search_query->getParameter(
|
||||||
'excludeProjectPHIDs',
|
'excludeProjectPHIDs',
|
||||||
array());
|
array());
|
||||||
|
@ -463,6 +483,11 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
$query->withAuthors($author_phids);
|
$query->withAuthors($author_phids);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($any_user_project_phids) {
|
||||||
|
$query->setViewer($viewer);
|
||||||
|
$query->withAnyUserProjects($any_user_project_phids);
|
||||||
|
}
|
||||||
|
|
||||||
$status = $search_query->getParameter('status', 'all');
|
$status = $search_query->getParameter('status', 'all');
|
||||||
if (!empty($status['open']) && !empty($status['closed'])) {
|
if (!empty($status['open']) && !empty($status['closed'])) {
|
||||||
$query->withStatus(ManiphestTaskQuery::STATUS_ANY);
|
$query->withStatus(ManiphestTaskQuery::STATUS_ANY);
|
||||||
|
@ -740,8 +765,10 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
->withMemberPHIDs($user_phids)
|
->withMemberPHIDs($user_phids)
|
||||||
->execute();
|
->execute();
|
||||||
$any_project_phids = mpull($projects, 'getPHID');
|
$any_project_phids = mpull($projects, 'getPHID');
|
||||||
|
$any_user_project_phids = array();
|
||||||
} else {
|
} else {
|
||||||
$any_project_phids = $request->getStrList('aprojects');
|
$any_project_phids = $request->getStrList('aprojects');
|
||||||
|
$any_user_project_phids = $request->getStrList('useraprojects');
|
||||||
}
|
}
|
||||||
|
|
||||||
$project_phids = $request->getStrList('projects');
|
$project_phids = $request->getStrList('projects');
|
||||||
|
@ -787,6 +814,7 @@ final class ManiphestTaskListController extends ManiphestController {
|
||||||
'userPHIDs' => $user_phids,
|
'userPHIDs' => $user_phids,
|
||||||
'projectPHIDs' => $project_phids,
|
'projectPHIDs' => $project_phids,
|
||||||
'anyProjectPHIDs' => $any_project_phids,
|
'anyProjectPHIDs' => $any_project_phids,
|
||||||
|
'anyUserProjectPHIDs' => $any_user_project_phids,
|
||||||
'excludeProjectPHIDs' => $exclude_project_phids,
|
'excludeProjectPHIDs' => $exclude_project_phids,
|
||||||
'ownerPHIDs' => $owner_phids,
|
'ownerPHIDs' => $owner_phids,
|
||||||
'authorPHIDs' => $author_phids,
|
'authorPHIDs' => $author_phids,
|
||||||
|
|
Loading…
Add table
Reference in a new issue