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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 13:29:08 -08:00
|
|
|
protected function processDiffusionRequest(AphrontRequest $request) {
|
2012-05-10 09:28:19 +02:00
|
|
|
$drequest = $this->getDiffusionRequest();
|
2013-10-30 13:14:56 -07:00
|
|
|
$viewer = $request->getUser();
|
2012-05-10 09:28:19 +02:00
|
|
|
|
|
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
2015-06-02 14:34:04 -07:00
|
|
|
$pager = new PHUIPagerView();
|
2012-05-10 09:28:19 +02:00
|
|
|
$pager->setURI($request->getRequestURI(), 'offset');
|
|
|
|
|
$pager->setOffset($request->getInt('offset'));
|
|
|
|
|
|
|
|
|
|
// TODO: Add support for branches that contain commit
|
2014-01-17 16:10:56 -08:00
|
|
|
$branches = $this->callConduitWithDiffusionRequest(
|
|
|
|
|
'diffusion.branchquery',
|
|
|
|
|
array(
|
|
|
|
|
'offset' => $pager->getOffset(),
|
2014-10-08 00:01:04 +11:00
|
|
|
'limit' => $pager->getPageSize() + 1,
|
2014-01-17 16:10:56 -08:00
|
|
|
));
|
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
|
|
|
));
|
|
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
2012-05-10 09:28:19 +02:00
|
|
|
array(
|
2013-09-23 12:53:55 -07:00
|
|
|
$crumbs,
|
2012-05-10 09:28:19 +02:00
|
|
|
$content,
|
2015-03-06 15:32:12 -08:00
|
|
|
$pager,
|
2012-05-10 09:28:19 +02:00
|
|
|
),
|
|
|
|
|
array(
|
|
|
|
|
'title' => array(
|
2013-10-30 13:14:56 -07:00
|
|
|
pht('Branches'),
|
2016-01-02 11:28:31 -08:00
|
|
|
$repository->getDisplayName(),
|
2012-05-10 09:28:19 +02:00
|
|
|
),
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|