mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
9a2c68fd88
Summary: Ref T2683. This is closely related to "symbolicCommit", but has an inconsistent "name" on the end. Also, `diffusion.searchquery` uses this parameter inconsistently. Test Plan: - `grep`ed for callsites. - Ran searches in Git and Mercurial repositories. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T2683 Differential Revision: https://secure.phabricator.com/D9091
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->getStableCommit(),
|
|
)));
|
|
$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);
|
|
}
|
|
|
|
}
|