2011-03-08 02:25:47 +01:00
|
|
|
<?php
|
|
|
|
|
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
|
|
|
|
2012-12-14 23:07:39 +01:00
|
|
|
if ($this->getRequest()->getStr('before')) {
|
|
|
|
$results = array();
|
|
|
|
$is_file = true;
|
|
|
|
} else {
|
|
|
|
$browse_query = DiffusionBrowseQuery::newFromDiffusionRequest($drequest);
|
|
|
|
$results = $browse_query->loadPaths();
|
|
|
|
$reason = $browse_query->getReasonForEmptyResultSet();
|
|
|
|
$is_file = ($reason == DiffusionBrowseQuery::REASON_IS_FILE);
|
|
|
|
}
|
2011-03-08 02:25:47 +01:00
|
|
|
|
2011-03-08 03:21:43 +01:00
|
|
|
$content = array();
|
|
|
|
|
2012-04-24 03:36:25 +02:00
|
|
|
if ($drequest->getTagContent()) {
|
|
|
|
$title = 'Tag: '.$drequest->getSymbolicCommit();
|
|
|
|
|
|
|
|
$tag_view = new AphrontPanelView();
|
2013-02-13 23:08:57 +01:00
|
|
|
$tag_view->setHeader(phutil_escape_html($title));
|
2012-04-24 03:36:25 +02:00
|
|
|
$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-12-14 23:07:39 +01:00
|
|
|
if ($is_file) {
|
2012-02-01 19:59:20 +01:00
|
|
|
$controller = new DiffusionBrowseFileController($this->getRequest());
|
|
|
|
$controller->setDiffusionRequest($drequest);
|
upgrade diffusion to use modern header UI and fix a few quirks
Summary:
upgrades are CrumbsView, HeaderView, PropertyListView, and ActionListView. I had to modify CrumbsView stuff a bit to handle the "advanced" diffusion crumbs.
Quirks fixed include making file tree view show up in diffusion, the page not have extra space when the file tree is hidden, links no longer breaking once you visit files (since without the change the files always got "/" appended and thus 404'd), and a differential quirk where it read "next step:" and that colon is a no no,
Test Plan: played around in diffusion and differential
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin, chad
Maniphest Tasks: T2048, T2178
Differential Revision: https://secure.phabricator.com/D4169
2012-12-13 02:50:42 +01:00
|
|
|
$controller->setCurrentApplication($this->getCurrentApplication());
|
2012-02-01 19:59:20 +01:00
|
|
|
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
|
|
|
|
|
|
|
$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
|
|
|
$phids = array_keys($phids);
|
2012-09-05 04:02:56 +02:00
|
|
|
$handles = $this->loadViewerHandles($phids);
|
2011-04-03 01:44:19 +02:00
|
|
|
|
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);
|
2012-08-02 21:22:50 +02:00
|
|
|
$browse_table->setUser($this->getRequest()->getUser());
|
2011-03-08 02:25:47 +01:00
|
|
|
|
|
|
|
$browse_panel = new AphrontPanelView();
|
|
|
|
$browse_panel->appendChild($browse_table);
|
2013-01-15 01:40:04 +01:00
|
|
|
$browse_panel->setNoBackground();
|
2011-03-08 02:25:47 +01:00
|
|
|
|
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();
|
|
|
|
|
2012-04-30 16:47:41 +02:00
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-13 01:17:34 +01:00
|
|
|
$nav = $this->buildSideNav('browse', false);
|
|
|
|
$nav->appendChild($content);
|
2011-03-08 02:25:47 +01:00
|
|
|
|
upgrade diffusion to use modern header UI and fix a few quirks
Summary:
upgrades are CrumbsView, HeaderView, PropertyListView, and ActionListView. I had to modify CrumbsView stuff a bit to handle the "advanced" diffusion crumbs.
Quirks fixed include making file tree view show up in diffusion, the page not have extra space when the file tree is hidden, links no longer breaking once you visit files (since without the change the files always got "/" appended and thus 404'd), and a differential quirk where it read "next step:" and that colon is a no no,
Test Plan: played around in diffusion and differential
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin, chad
Maniphest Tasks: T2048, T2178
Differential Revision: https://secure.phabricator.com/D4169
2012-12-13 02:50:42 +01:00
|
|
|
$crumbs = $this->buildCrumbs(
|
|
|
|
array(
|
|
|
|
'branch' => true,
|
|
|
|
'path' => true,
|
|
|
|
'view' => 'browse',
|
|
|
|
));
|
|
|
|
$nav->setCrumbs($crumbs);
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
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();
|
2013-02-13 23:08:57 +01:00
|
|
|
$text = phutil_safe_html($engine->markupText($text));
|
2012-04-24 03:36:25 +02:00
|
|
|
|
2013-01-18 09:32:58 +01:00
|
|
|
$text = phutil_tag(
|
2012-04-24 03:36:25 +02:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-remarkup',
|
|
|
|
),
|
|
|
|
$text);
|
|
|
|
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
}
|