2011-03-08 02:25:47 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-02-01 19:59:20 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-03-08 02:25:47 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class DiffusionBrowseController extends DiffusionController {
|
2011-03-08 02:25:47 +01:00
|
|
|
|
|
|
|
public function processRequest() {
|
2011-03-08 23:29:02 +01:00
|
|
|
$drequest = $this->diffusionRequest;
|
2011-03-08 02:25:47 +01:00
|
|
|
|
2011-03-08 23:29:02 +01:00
|
|
|
$browse_query = DiffusionBrowseQuery::newFromDiffusionRequest($drequest);
|
|
|
|
$results = $browse_query->loadPaths();
|
2011-03-08 02:25:47 +01:00
|
|
|
|
2011-03-08 03:21:43 +01:00
|
|
|
$content = array();
|
|
|
|
|
2011-03-13 01:17:34 +01:00
|
|
|
$content[] = $this->buildCrumbs(
|
|
|
|
array(
|
|
|
|
'branch' => true,
|
|
|
|
'path' => true,
|
|
|
|
'view' => 'browse',
|
|
|
|
));
|
|
|
|
|
2012-04-24 03:36:25 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
if (!$results) {
|
2011-03-08 03:21:43 +01:00
|
|
|
|
2012-02-01 19:59:20 +01:00
|
|
|
if ($browse_query->getReasonForEmptyResultSet() ==
|
|
|
|
DiffusionBrowseQuery::REASON_IS_FILE) {
|
|
|
|
$controller = new DiffusionBrowseFileController($this->getRequest());
|
|
|
|
$controller->setDiffusionRequest($drequest);
|
|
|
|
return $this->delegateToController($controller);
|
2011-03-19 22:38:50 +01:00
|
|
|
}
|
|
|
|
|
2012-02-01 19:59:20 +01:00
|
|
|
$empty_result = new DiffusionEmptyResultView();
|
|
|
|
$empty_result->setDiffusionRequest($drequest);
|
|
|
|
$empty_result->setBrowseQuery($browse_query);
|
2012-04-02 20:12:42 +02:00
|
|
|
$empty_result->setView($this->getRequest()->getStr('view'));
|
2012-02-01 19:59:20 +01:00
|
|
|
$content[] = $empty_result;
|
2011-03-08 03:21:43 +01:00
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
} else {
|
2011-04-03 01:44:19 +02:00
|
|
|
|
2012-03-26 21:21:39 +02:00
|
|
|
$readme = null;
|
|
|
|
|
2011-04-03 01:44:19 +02:00
|
|
|
$phids = array();
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$data = $result->getLastCommitData();
|
|
|
|
if ($data) {
|
|
|
|
if ($data->getCommitDetail('authorPHID')) {
|
|
|
|
$phids[$data->getCommitDetail('authorPHID')] = true;
|
|
|
|
}
|
|
|
|
}
|
2012-03-26 21:21:39 +02:00
|
|
|
|
|
|
|
$path = $result->getPath();
|
|
|
|
if (preg_match('/^readme(|\.txt|\.remarkup)$/i', $path)) {
|
|
|
|
$readme = $result;
|
|
|
|
}
|
2011-04-03 01:44:19 +02:00
|
|
|
}
|
|
|
|
|
2012-03-26 21:21:39 +02:00
|
|
|
$phids = array_keys($phids);
|
2011-04-03 01:44:19 +02:00
|
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
|
|
|
2012-03-26 21:21:39 +02:00
|
|
|
if ($readme) {
|
|
|
|
$readme_request = DiffusionRequest::newFromDictionary(
|
|
|
|
array(
|
|
|
|
'repository' => $drequest->getRepository(),
|
|
|
|
'commit' => $drequest->getStableCommitName(),
|
|
|
|
'path' => $readme->getFullPath(),
|
|
|
|
));
|
|
|
|
|
|
|
|
$content_query = DiffusionFileContentQuery::newFromDiffusionRequest(
|
|
|
|
$readme_request);
|
|
|
|
$content_query->loadFileContent();
|
|
|
|
$readme_content = $content_query->getRawData();
|
|
|
|
|
|
|
|
if (preg_match('/.txt$/', $readme->getPath())) {
|
|
|
|
$readme_content = phutil_escape_html($readme_content);
|
|
|
|
$readme_content = nl2br($readme_content);
|
|
|
|
} else {
|
|
|
|
// Markup extensionless files as remarkup so we get links and such.
|
2012-04-24 03:36:25 +02:00
|
|
|
$readme_content = $this->markupText($readme_content);
|
2012-03-26 21:21:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$readme_panel = new AphrontPanelView();
|
|
|
|
$readme_panel->setHeader('README');
|
|
|
|
$readme_panel->appendChild($readme_content);
|
|
|
|
|
|
|
|
$content[] = $readme_panel;
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
$browse_table = new DiffusionBrowseTableView();
|
2011-03-08 23:29:02 +01:00
|
|
|
$browse_table->setDiffusionRequest($drequest);
|
2011-04-03 01:44:19 +02:00
|
|
|
$browse_table->setHandles($handles);
|
2011-03-08 02:25:47 +01:00
|
|
|
$browse_table->setPaths($results);
|
|
|
|
|
|
|
|
$browse_panel = new AphrontPanelView();
|
|
|
|
$browse_panel->appendChild($browse_table);
|
|
|
|
|
2011-03-08 03:21:43 +01:00
|
|
|
$content[] = $browse_panel;
|
2011-03-08 02:25:47 +01:00
|
|
|
}
|
|
|
|
|
2011-10-02 21:52:54 +02:00
|
|
|
$content[] = $this->buildOpenRevisions();
|
|
|
|
|
2011-03-13 01:17:34 +01:00
|
|
|
$nav = $this->buildSideNav('browse', false);
|
|
|
|
$nav->appendChild($content);
|
2011-03-08 02:25:47 +01:00
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
2011-03-13 01:17:34 +01:00
|
|
|
$nav,
|
2011-03-08 02:25:47 +01:00
|
|
|
array(
|
2012-04-24 03:36:25 +02:00
|
|
|
'title' => array(
|
|
|
|
nonempty(basename($drequest->getPath()), '/'),
|
|
|
|
$drequest->getRepository()->getCallsign().' Repository',
|
|
|
|
),
|
2011-03-08 02:25:47 +01:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2012-04-24 03:36:25 +02:00
|
|
|
private function markupText($text) {
|
|
|
|
$engine = PhabricatorMarkupEngine::newDiffusionMarkupEngine();
|
|
|
|
$text = $engine->markupText($text);
|
|
|
|
|
|
|
|
$text = phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-remarkup',
|
|
|
|
),
|
|
|
|
$text);
|
|
|
|
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
}
|