Summary: Ref T12762. Updates some conventions and methods. This has no (meaningful) behavioral changes. Test Plan: - Grepped for `setFilterPHIDs()`. - Viewed main feed, user feed, project feed. - Called `feed.query`. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12762 Differential Revision: https://secure.phabricator.com/D18027
151 lines
3.7 KiB
PHP
151 lines
3.7 KiB
PHP
<?php
|
|
|
|
final class PhabricatorFeedSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Feed Stories');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorFeedApplication';
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
$saved->setParameter(
|
|
'userPHIDs',
|
|
$this->readUsersFromRequest($request, 'users'));
|
|
|
|
$saved->setParameter(
|
|
'projectPHIDs',
|
|
array_values($request->getArr('projectPHIDs')));
|
|
|
|
$saved->setParameter(
|
|
'viewerProjects',
|
|
$request->getBool('viewerProjects'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new PhabricatorFeedQuery());
|
|
|
|
$phids = array();
|
|
|
|
$user_phids = $saved->getParameter('userPHIDs');
|
|
if ($user_phids) {
|
|
$phids[] = $user_phids;
|
|
}
|
|
|
|
$proj_phids = $saved->getParameter('projectPHIDs');
|
|
if ($proj_phids) {
|
|
$phids[] = $proj_phids;
|
|
}
|
|
|
|
$viewer_projects = $saved->getParameter('viewerProjects');
|
|
if ($viewer_projects) {
|
|
$viewer = $this->requireViewer();
|
|
$projects = id(new PhabricatorProjectQuery())
|
|
->setViewer($viewer)
|
|
->withMemberPHIDs(array($viewer->getPHID()))
|
|
->execute();
|
|
$phids[] = mpull($projects, 'getPHID');
|
|
}
|
|
|
|
$phids = array_mergev($phids);
|
|
if ($phids) {
|
|
$query->withFilterPHIDs($phids);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved_query) {
|
|
|
|
$user_phids = $saved_query->getParameter('userPHIDs', array());
|
|
$proj_phids = $saved_query->getParameter('projectPHIDs', array());
|
|
$viewer_projects = $saved_query->getParameter('viewerProjects');
|
|
|
|
$form
|
|
->appendControl(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource(new PhabricatorPeopleDatasource())
|
|
->setName('users')
|
|
->setLabel(pht('Include Users'))
|
|
->setValue($user_phids))
|
|
->appendControl(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource(new PhabricatorProjectDatasource())
|
|
->setName('projectPHIDs')
|
|
->setLabel(pht('Include Projects'))
|
|
->setValue($proj_phids))
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->addCheckbox(
|
|
'viewerProjects',
|
|
1,
|
|
pht('Include stories about projects I am a member of.'),
|
|
$viewer_projects));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/feed/'.$path;
|
|
}
|
|
|
|
protected function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'all' => pht('All Stories'),
|
|
);
|
|
|
|
if ($this->requireViewer()->isLoggedIn()) {
|
|
$names['projects'] = pht('Tags');
|
|
}
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
case 'projects':
|
|
return $query->setParameter('viewerProjects', true);
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $objects,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
|
|
$builder = new PhabricatorFeedBuilder($objects);
|
|
|
|
if ($this->isPanelContext()) {
|
|
$builder->setShowHovercards(false);
|
|
} else {
|
|
$builder->setShowHovercards(true);
|
|
}
|
|
|
|
$builder->setUser($this->requireViewer());
|
|
$view = $builder->buildView();
|
|
|
|
$list = phutil_tag_div('phabricator-feed-frame', $view);
|
|
|
|
$result = new PhabricatorApplicationSearchResultView();
|
|
$result->setContent($list);
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|