Summary: - `kill_init.php` said "Moving 1000 files" - I hope that this is not some limit in `FileFinder`. - [src/infrastructure/celerity] `git mv utils.php map.php; git mv api/utils.php api.php` - Comment `phutil_libraries` in `.arcconfig` and run `arc liberate`. NOTE: `arc diff` timed out so I'm pushing it without review. Test Plan: /D1234 Browsed around, especially in `applications/repository/worker/commitchangeparser` and `applications/` in general. Auditors: epriestley Maniphest Tasks: T1103
135 lines
3.7 KiB
PHP
135 lines
3.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
final class DiffusionBrowseController extends DiffusionController {
|
|
|
|
public function processRequest() {
|
|
$drequest = $this->diffusionRequest;
|
|
|
|
$browse_query = DiffusionBrowseQuery::newFromDiffusionRequest($drequest);
|
|
$results = $browse_query->loadPaths();
|
|
|
|
$content = array();
|
|
|
|
$content[] = $this->buildCrumbs(
|
|
array(
|
|
'branch' => true,
|
|
'path' => true,
|
|
'view' => 'browse',
|
|
));
|
|
|
|
if ($drequest->getTagContent()) {
|
|
$title = 'Tag: '.$drequest->getSymbolicCommit();
|
|
|
|
$tag_view = new AphrontPanelView();
|
|
$tag_view->setHeader(phutil_escape_html($title));
|
|
$tag_view->appendChild(
|
|
$this->markupText($drequest->getTagContent()));
|
|
|
|
$content[] = $tag_view;
|
|
}
|
|
|
|
if (!$results) {
|
|
|
|
if ($browse_query->getReasonForEmptyResultSet() ==
|
|
DiffusionBrowseQuery::REASON_IS_FILE) {
|
|
$controller = new DiffusionBrowseFileController($this->getRequest());
|
|
$controller->setDiffusionRequest($drequest);
|
|
return $this->delegateToController($controller);
|
|
}
|
|
|
|
$empty_result = new DiffusionEmptyResultView();
|
|
$empty_result->setDiffusionRequest($drequest);
|
|
$empty_result->setBrowseQuery($browse_query);
|
|
$empty_result->setView($this->getRequest()->getStr('view'));
|
|
$content[] = $empty_result;
|
|
|
|
} else {
|
|
|
|
$readme = null;
|
|
|
|
$phids = array();
|
|
foreach ($results as $result) {
|
|
$data = $result->getLastCommitData();
|
|
if ($data) {
|
|
if ($data->getCommitDetail('authorPHID')) {
|
|
$phids[$data->getCommitDetail('authorPHID')] = true;
|
|
}
|
|
}
|
|
|
|
$path = $result->getPath();
|
|
if (preg_match('/^readme(|\.txt|\.remarkup)$/i', $path)) {
|
|
$readme = $result;
|
|
}
|
|
}
|
|
|
|
$phids = array_keys($phids);
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
|
|
$browse_table = new DiffusionBrowseTableView();
|
|
$browse_table->setDiffusionRequest($drequest);
|
|
$browse_table->setHandles($handles);
|
|
$browse_table->setPaths($results);
|
|
|
|
$browse_panel = new AphrontPanelView();
|
|
$browse_panel->appendChild($browse_table);
|
|
|
|
$content[] = $browse_panel;
|
|
}
|
|
|
|
$content[] = $this->buildOpenRevisions();
|
|
|
|
$readme_content = $browse_query->renderReadme($results);
|
|
if ($readme_content) {
|
|
$readme_panel = new AphrontPanelView();
|
|
$readme_panel->setHeader('README');
|
|
$readme_panel->appendChild($readme_content);
|
|
|
|
$content[] = $readme_panel;
|
|
}
|
|
|
|
|
|
$nav = $this->buildSideNav('browse', false);
|
|
$nav->appendChild($content);
|
|
|
|
return $this->buildStandardPageResponse(
|
|
$nav,
|
|
array(
|
|
'title' => array(
|
|
nonempty(basename($drequest->getPath()), '/'),
|
|
$drequest->getRepository()->getCallsign().' Repository',
|
|
),
|
|
));
|
|
}
|
|
|
|
private function markupText($text) {
|
|
$engine = PhabricatorMarkupEngine::newDiffusionMarkupEngine();
|
|
$text = $engine->markupText($text);
|
|
|
|
$text = phutil_render_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-remarkup',
|
|
),
|
|
$text);
|
|
|
|
return $text;
|
|
}
|
|
|
|
}
|