2012-05-10 09:28:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
final class DiffusionBranchTableController extends DiffusionController {
|
|
|
|
|
|
2013-09-23 12:53:55 -07:00
|
|
|
public function shouldAllowPublic() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-05 05:00:22 -08:00
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
|
|
|
$response = $this->loadDiffusionContext();
|
|
|
|
|
if ($response) {
|
|
|
|
|
return $response;
|
|
|
|
|
}
|
2012-05-10 09:28:19 +02:00
|
|
|
|
2016-01-05 05:00:22 -08:00
|
|
|
$viewer = $this->getViewer();
|
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
2012-05-10 09:28:19 +02:00
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
2016-01-05 05:00:22 -08:00
|
|
|
$pager = id(new PHUIPagerView())
|
|
|
|
|
->readFromRequest($request);
|
2012-05-10 09:28:19 +02:00
|
|
|
|
2016-02-16 14:25:11 -08:00
|
|
|
$params = array(
|
|
|
|
|
'offset' => $pager->getOffset(),
|
|
|
|
|
'limit' => $pager->getPageSize() + 1,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$contains = $drequest->getSymbolicCommit();
|
|
|
|
|
if (strlen($contains)) {
|
|
|
|
|
$params['contains'] = $contains;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-17 16:10:56 -08:00
|
|
|
$branches = $this->callConduitWithDiffusionRequest(
|
|
|
|
|
'diffusion.branchquery',
|
2016-02-16 14:25:11 -08:00
|
|
|
$params);
|
2012-05-10 09:28:19 +02:00
|
|
|
$branches = $pager->sliceResults($branches);
|
|
|
|
|
|
2014-01-17 16:10:56 -08:00
|
|
|
$branches = DiffusionRepositoryRef::loadAllFromDictionaries($branches);
|
|
|
|
|
|
2012-05-10 09:28:19 +02:00
|
|
|
$content = null;
|
|
|
|
|
if (!$branches) {
|
2013-10-30 13:14:56 -07:00
|
|
|
$content = $this->renderStatusMessage(
|
|
|
|
|
pht('No Branches'),
|
|
|
|
|
pht('This repository has no branches.'));
|
2012-05-10 09:28:19 +02:00
|
|
|
} else {
|
2013-10-30 13:14:56 -07:00
|
|
|
$commits = id(new DiffusionCommitQuery())
|
|
|
|
|
->setViewer($viewer)
|
2014-01-17 16:10:56 -08:00
|
|
|
->withIdentifiers(mpull($branches, 'getCommitIdentifier'))
|
2013-11-07 12:10:43 -08:00
|
|
|
->withRepository($repository)
|
2012-05-10 09:28:19 +02:00
|
|
|
->execute();
|
|
|
|
|
|
|
|
|
|
$view = id(new DiffusionBranchTableView())
|
2013-10-30 13:14:56 -07:00
|
|
|
->setUser($viewer)
|
2012-05-10 09:28:19 +02:00
|
|
|
->setBranches($branches)
|
|
|
|
|
->setCommits($commits)
|
|
|
|
|
->setDiffusionRequest($drequest);
|
|
|
|
|
|
2015-03-06 15:32:12 -08:00
|
|
|
$panel = id(new PHUIObjectBoxView())
|
|
|
|
|
->setHeaderText(pht('Branches'))
|
2015-05-19 23:14:22 -07:00
|
|
|
->setTable($view);
|
2012-05-10 09:28:19 +02:00
|
|
|
|
|
|
|
|
$content = $panel;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 12:53:55 -07:00
|
|
|
$crumbs = $this->buildCrumbs(
|
|
|
|
|
array(
|
2013-10-30 13:15:14 -07:00
|
|
|
'branches' => true,
|
2013-09-23 12:53:55 -07:00
|
|
|
));
|
|
|
|
|
|
2016-01-05 05:00:22 -08:00
|
|
|
$pager_box = $this->renderTablePagerBox($pager);
|
|
|
|
|
|
|
|
|
|
return $this->newPage()
|
|
|
|
|
->setTitle(
|
|
|
|
|
array(
|
2013-10-30 13:14:56 -07:00
|
|
|
pht('Branches'),
|
2016-01-02 11:28:31 -08:00
|
|
|
$repository->getDisplayName(),
|
2016-01-05 05:00:22 -08:00
|
|
|
))
|
|
|
|
|
->setCrumbs($crumbs)
|
|
|
|
|
->appendChild(
|
|
|
|
|
array(
|
|
|
|
|
$content,
|
|
|
|
|
$pager_box,
|
|
|
|
|
));
|
2012-05-10 09:28:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|