mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
78b89711cb
Summary: Ref T4986. These are mostly mechanical now, I skipped a couple of slightly tricky ones. Still a bunch to go. Test Plan: For each engine: - Viewed the application; - created a panel to issue the query. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4986 Differential Revision: https://secure.phabricator.com/D9017
185 lines
4.8 KiB
PHP
185 lines
4.8 KiB
PHP
<?php
|
|
|
|
final class PhabricatorFileSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorApplicationFiles';
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
$saved->setParameter(
|
|
'authorPHIDs',
|
|
$this->readUsersFromRequest($request, 'authors'));
|
|
|
|
$saved->setParameter('explicit', $request->getBool('explicit'));
|
|
$saved->setParameter('createdStart', $request->getStr('createdStart'));
|
|
$saved->setParameter('createdEnd', $request->getStr('createdEnd'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new PhabricatorFileQuery())
|
|
->withAuthorPHIDs($saved->getParameter('authorPHIDs', array()));
|
|
|
|
if ($saved->getParameter('explicit')) {
|
|
$query->showOnlyExplicitUploads(true);
|
|
}
|
|
|
|
$start = $this->parseDateTime($saved->getParameter('createdStart'));
|
|
$end = $this->parseDateTime($saved->getParameter('createdEnd'));
|
|
|
|
if ($start) {
|
|
$query->withDateCreatedAfter($start);
|
|
}
|
|
|
|
if ($end) {
|
|
$query->withDateCreatedBefore($end);
|
|
}
|
|
|
|
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();
|
|
|
|
$explicit = $saved_query->getParameter('explicit');
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource('/typeahead/common/users/')
|
|
->setName('authors')
|
|
->setLabel(pht('Authors'))
|
|
->setValue($author_handles))
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->addCheckbox(
|
|
'explicit',
|
|
1,
|
|
pht('Show only manually uploaded files.'),
|
|
$explicit));
|
|
|
|
$this->buildDateRange(
|
|
$form,
|
|
$saved_query,
|
|
'createdStart',
|
|
pht('Created After'),
|
|
'createdEnd',
|
|
pht('Created Before'));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/file/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
$names = array();
|
|
|
|
if ($this->requireViewer()->isLoggedIn()) {
|
|
$names['authored'] = pht('Authored');
|
|
}
|
|
|
|
$names += array(
|
|
'all' => pht('All'),
|
|
);
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
case 'authored':
|
|
$author_phid = array($this->requireViewer()->getPHID());
|
|
return $query
|
|
->setParameter('authorPHIDs', $author_phid)
|
|
->setParameter('explicit', true);
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function getRequiredHandlePHIDsForResultList(
|
|
array $files,
|
|
PhabricatorSavedQuery $query) {
|
|
return mpull($files, 'getAuthorPHID');
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $files,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
|
|
assert_instances_of($files, 'PhabricatorFile');
|
|
|
|
$request = $this->getRequest();
|
|
if ($request) {
|
|
$highlighted_ids = $request->getStrList('h');
|
|
} else {
|
|
$highlighted_ids = array();
|
|
}
|
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
$highlighted_ids = array_fill_keys($highlighted_ids, true);
|
|
|
|
$list_view = id(new PHUIObjectItemListView())
|
|
->setUser($viewer);
|
|
|
|
foreach ($files as $file) {
|
|
$id = $file->getID();
|
|
$phid = $file->getPHID();
|
|
$name = $file->getName();
|
|
$file_uri = $this->getApplicationURI("/info/{$phid}/");
|
|
|
|
$date_created = phabricator_date($file->getDateCreated(), $viewer);
|
|
$author_phid = $file->getAuthorPHID();
|
|
if ($author_phid) {
|
|
$author_link = $handles[$author_phid]->renderLink();
|
|
$uploaded = pht('Uploaded by %s on %s', $author_link, $date_created);
|
|
} else {
|
|
$uploaded = pht('Uploaded on %s', $date_created);
|
|
}
|
|
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObject($file)
|
|
->setObjectName("F{$id}")
|
|
->setHeader($name)
|
|
->setHref($file_uri)
|
|
->addAttribute($uploaded)
|
|
->addIcon('none', phabricator_format_bytes($file->getByteSize()));
|
|
|
|
$ttl = $file->getTTL();
|
|
if ($ttl !== null) {
|
|
$item->addIcon('blame', pht('Temporary'));
|
|
}
|
|
|
|
if (isset($highlighted_ids[$id])) {
|
|
$item->setEffect('highlighted');
|
|
}
|
|
|
|
$list_view->addItem($item);
|
|
}
|
|
|
|
$list_view->appendChild(id(new PhabricatorGlobalUploadTargetView())
|
|
->setUser($viewer));
|
|
|
|
return $list_view;
|
|
}
|
|
|
|
}
|