mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-21 04:01:30 +01:00
016b62a7ef
Summary: Ref T2784. This one was a wee bit complicated. Had to add PhabricatorUser and concept of initFromConduit (or not) to DiffusionRequest. Test Plan: foreach repo, visited CALLSIGN and clicked a commit and verified they laoded correctly. Hacked code to hit NOT via Conduit and repeated tests to great success. Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Maniphest Tasks: T2784 Differential Revision: https://secure.phabricator.com/D5928
56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
|
|
final class DiffusionPathCompleteController extends DiffusionController {
|
|
|
|
public function willProcessRequest(array $data) {
|
|
// Don't build a DiffusionRequest.
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
|
|
$repository_phid = $request->getStr('repositoryPHID');
|
|
$repository = id(new PhabricatorRepository())->loadOneWhere(
|
|
'phid = %s',
|
|
$repository_phid);
|
|
if (!$repository) {
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$query_path = $request->getStr('q');
|
|
if (preg_match('@/$@', $query_path)) {
|
|
$query_dir = $query_path;
|
|
} else {
|
|
$query_dir = dirname($query_path).'/';
|
|
}
|
|
$query_dir = ltrim($query_dir, '/');
|
|
|
|
$drequest = DiffusionRequest::newFromDictionary(
|
|
array(
|
|
'user' => $request->getUser(),
|
|
'repository' => $repository,
|
|
'path' => $query_dir,
|
|
));
|
|
$this->setDiffusionRequest($drequest);
|
|
|
|
$browse_results = DiffusionBrowseResultSet::newFromConduit(
|
|
$this->callConduitWithDiffusionRequest(
|
|
'diffusion.browsequery',
|
|
array(
|
|
'path' => $drequest->getPath(),
|
|
'commit' => $drequest->getCommit(),
|
|
)));
|
|
$paths = $browse_results->getPaths();
|
|
|
|
$output = array();
|
|
foreach ($paths as $path) {
|
|
$full_path = $query_dir.$path->getPath();
|
|
if ($path->getFileType() == DifferentialChangeType::FILE_DIRECTORY) {
|
|
$full_path .= '/';
|
|
}
|
|
$output[] = array('/'.$full_path, null, substr(md5($full_path), 0, 7));
|
|
}
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($output);
|
|
}
|
|
}
|