mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
b93bc7e479
Summary: Ref T3307. Only one I thought was tricky was Excel; I went with bytes there like it was email. Test Plan: played around on a few endpoints but mostly thought carefully Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T3307 Differential Revision: https://secure.phabricator.com/D10392
173 lines
4.6 KiB
PHP
173 lines
4.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorSlowvoteSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Slowvotes');
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
$saved->setParameter(
|
|
'authorPHIDs',
|
|
$this->readUsersFromRequest($request, 'authors'));
|
|
|
|
$saved->setParameter('voted', $request->getBool('voted'));
|
|
$saved->setParameter('statuses', $request->getArr('statuses'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new PhabricatorSlowvoteQuery())
|
|
->withAuthorPHIDs($saved->getParameter('authorPHIDs', array()));
|
|
|
|
if ($saved->getParameter('voted')) {
|
|
$query->withVotesByViewer(true);
|
|
}
|
|
|
|
$statuses = $saved->getParameter('statuses', array());
|
|
if (count($statuses) == 1) {
|
|
$status = head($statuses);
|
|
if ($status == 'open') {
|
|
$query->withIsClosed(false);
|
|
} else {
|
|
$query->withIsClosed(true);
|
|
}
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved_query) {
|
|
$phids = $saved_query->getParameter('authorPHIDs', array());
|
|
$author_handles = id(new PhabricatorHandleQuery())
|
|
->setViewer($this->requireViewer())
|
|
->withPHIDs($phids)
|
|
->execute();
|
|
|
|
$voted = $saved_query->getParameter('voted', false);
|
|
$statuses = $saved_query->getParameter('statuses', array());
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource(new PhabricatorPeopleDatasource())
|
|
->setName('authors')
|
|
->setLabel(pht('Authors'))
|
|
->setValue($author_handles))
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->addCheckbox(
|
|
'voted',
|
|
1,
|
|
pht("Show only polls I've voted in."),
|
|
$voted))
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->setLabel(pht('Status'))
|
|
->addCheckbox(
|
|
'statuses[]',
|
|
'open',
|
|
pht('Open'),
|
|
in_array('open', $statuses))
|
|
->addCheckbox(
|
|
'statuses[]',
|
|
'closed',
|
|
pht('Closed'),
|
|
in_array('closed', $statuses)));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/vote/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'open' => pht('Open Polls'),
|
|
'all' => pht('All Polls'),
|
|
);
|
|
|
|
if ($this->requireViewer()->isLoggedIn()) {
|
|
$names['authored'] = pht('Authored');
|
|
$names['voted'] = pht('Voted In');
|
|
}
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'open':
|
|
return $query->setParameter('statuses', array('open'));
|
|
case 'all':
|
|
return $query;
|
|
case 'authored':
|
|
return $query->setParameter(
|
|
'authorPHIDs',
|
|
array($this->requireViewer()->getPHID()));
|
|
case 'voted':
|
|
return $query->setParameter('voted', true);
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
public function getRequiredHandlePHIDsForResultList(
|
|
array $polls,
|
|
PhabricatorSavedQuery $query) {
|
|
return mpull($polls, 'getAuthorPHID');
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $polls,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
|
|
assert_instances_of($polls, 'PhabricatorSlowvotePoll');
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = id(new PHUIObjectItemListView())
|
|
->setUser($viewer);
|
|
|
|
$phids = mpull($polls, 'getAuthorPHID');
|
|
|
|
foreach ($polls as $poll) {
|
|
$date_created = phabricator_datetime($poll->getDateCreated(), $viewer);
|
|
if ($poll->getAuthorPHID()) {
|
|
$author = $handles[$poll->getAuthorPHID()]->renderLink();
|
|
} else {
|
|
$author = null;
|
|
}
|
|
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName('V'.$poll->getID())
|
|
->setHeader($poll->getQuestion())
|
|
->setHref('/V'.$poll->getID())
|
|
->setDisabled($poll->getIsClosed())
|
|
->addIcon('none', $date_created);
|
|
|
|
$description = $poll->getDescription();
|
|
if (strlen($description)) {
|
|
$item->addAttribute(id(new PhutilUTF8StringTruncator())
|
|
->setMaximumGlyphs(120)
|
|
->truncateString($poll->getDescription()));
|
|
}
|
|
|
|
if ($author) {
|
|
$item->addByline(pht('Author: %s', $author));
|
|
}
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|