mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
2a3c3b2b98
Summary: Ref T10537. More infrastructure: - Put a `bin/nuance` in place with `bin/nuance import`. This has no useful behavior yet. - Allow sources to be searched by substring. This supports `bin/nuance import --source whatever` so you don't have to dig up PHIDs. Test Plan: - Applied migrations. - Ran `bin/nuance import --source ...` (no meaningful effect, but works fine). - Searched for sources by substring in the UI. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10537 Differential Revision: https://secure.phabricator.com/D15436
89 lines
2 KiB
PHP
89 lines
2 KiB
PHP
<?php
|
|
|
|
final class NuanceSourceSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorNuanceApplication';
|
|
}
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Nuance Sources');
|
|
}
|
|
|
|
public function newQuery() {
|
|
return new NuanceSourceQuery();
|
|
}
|
|
|
|
protected function buildQueryFromParameters(array $map) {
|
|
$query = $this->newQuery();
|
|
|
|
if ($map['match'] !== null) {
|
|
$query->withNameNgrams($map['match']);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
protected function buildCustomSearchFields() {
|
|
return array(
|
|
id(new PhabricatorSearchTextField())
|
|
->setLabel(pht('Name Contains'))
|
|
->setKey('match')
|
|
->setDescription(pht('Search for sources by name substring.')),
|
|
);
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/nuance/source/'.$path;
|
|
}
|
|
|
|
protected function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'all' => pht('All Sources'),
|
|
);
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $sources,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
assert_instances_of($sources, 'NuanceSource');
|
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = new PHUIObjectItemListView();
|
|
$list->setUser($viewer);
|
|
foreach ($sources as $source) {
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName(pht('Source %d', $source->getID()))
|
|
->setHeader($source->getName())
|
|
->setHref($source->getURI());
|
|
|
|
$item->addIcon('none', $source->getType());
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
$result = new PhabricatorApplicationSearchResultView();
|
|
$result->setObjectList($list);
|
|
$result->setNoDataString(pht('No sources found.'));
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|