mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
bb633fb42a
Summary: Ref T156. @vlada recently implemented filename search in Diffusion, this cleans up the UI a little bit: - Instead of showing one search box with two different buttons, let the submit buttons appear to the right of the text boxes and separate the search modes. - Clean up the results a little bit (don't show columns which don't exist). Test Plan: {F107260} Reviewers: vlada, btrahan, chad Reviewed By: chad CC: vlada, chad, aran Maniphest Tasks: T156 Differential Revision: https://secure.phabricator.com/D8125
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class DiffusionBrowseMainController extends DiffusionBrowseController {
|
|
|
|
public function processRequest() {
|
|
$drequest = $this->diffusionRequest;
|
|
$request = $this->getRequest();
|
|
|
|
// Figure out if we're browsing a directory, a file, or a search result
|
|
// list. Then delegate to the appropriate controller.
|
|
|
|
$grep = $request->getStr('grep');
|
|
$find = $request->getStr('find');
|
|
if (strlen($grep) || strlen($find)) {
|
|
$controller = new DiffusionBrowseSearchController($request);
|
|
} else {
|
|
$results = DiffusionBrowseResultSet::newFromConduit(
|
|
$this->callConduitWithDiffusionRequest(
|
|
'diffusion.browsequery',
|
|
array(
|
|
'path' => $drequest->getPath(),
|
|
'commit' => $drequest->getCommit(),
|
|
)));
|
|
$reason = $results->getReasonForEmptyResultSet();
|
|
$is_file = ($reason == DiffusionBrowseResultSet::REASON_IS_FILE);
|
|
|
|
if ($is_file) {
|
|
$controller = new DiffusionBrowseFileController($request);
|
|
} else {
|
|
$controller = new DiffusionBrowseDirectoryController($request);
|
|
$controller->setBrowseQueryResults($results);
|
|
}
|
|
}
|
|
|
|
$controller->setDiffusionRequest($drequest);
|
|
$controller->setCurrentApplication($this->getCurrentApplication());
|
|
return $this->delegateToController($controller);
|
|
}
|
|
|
|
}
|