mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
3cbc239bc6
Summary: Ref T4245. This gets everything else except serving HTTP requests (complicated) and lint (quite weird). Test Plan: - Viewed a diff. - Viewed externals. - Viewed history table to see last modified. - Did path completion and validation in Owners. - Did tree path search in Diffusion. - Viewed a repository. - Created a new repository. - Looked up symbols. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D14947
42 lines
1 KiB
PHP
42 lines
1 KiB
PHP
<?php
|
|
|
|
final class DiffusionPathTreeController extends DiffusionController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$response = $this->loadDiffusionContext();
|
|
if ($response) {
|
|
return $response;
|
|
}
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
|
$repository = $drequest->getRepository();
|
|
|
|
if (!$repository->canUsePathTree()) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$paths = $this->callConduitWithDiffusionRequest(
|
|
'diffusion.querypaths',
|
|
array(
|
|
'path' => $drequest->getPath(),
|
|
'commit' => $drequest->getCommit(),
|
|
));
|
|
|
|
$tree = array();
|
|
foreach ($paths as $path) {
|
|
$parts = preg_split('((?<=/))', $path);
|
|
$cursor = &$tree;
|
|
foreach ($parts as $part) {
|
|
if (!is_array($cursor)) {
|
|
$cursor = array();
|
|
}
|
|
if (!isset($cursor[$part])) {
|
|
$cursor[$part] = 1;
|
|
}
|
|
$cursor = &$cursor[$part];
|
|
}
|
|
}
|
|
|
|
return id(new AphrontAjaxResponse())->setContent(array('tree' => $tree));
|
|
}
|
|
}
|