2012-05-10 09:28:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionBranchTableController extends DiffusionController {
|
|
|
|
|
2013-09-23 21:53:55 +02:00
|
|
|
public function shouldAllowPublic() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-09 22:29:08 +01:00
|
|
|
protected function processDiffusionRequest(AphrontRequest $request) {
|
2012-05-10 09:28:19 +02:00
|
|
|
$drequest = $this->getDiffusionRequest();
|
2013-10-30 21:14:56 +01:00
|
|
|
$viewer = $request->getUser();
|
2012-05-10 09:28:19 +02:00
|
|
|
|
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
|
|
$pager = new AphrontPagerView();
|
|
|
|
$pager->setURI($request->getRequestURI(), 'offset');
|
|
|
|
$pager->setOffset($request->getInt('offset'));
|
|
|
|
|
|
|
|
// TODO: Add support for branches that contain commit
|
2014-01-18 01:10:56 +01:00
|
|
|
$branches = $this->callConduitWithDiffusionRequest(
|
|
|
|
'diffusion.branchquery',
|
|
|
|
array(
|
|
|
|
'offset' => $pager->getOffset(),
|
2014-10-07 15:01:04 +02:00
|
|
|
'limit' => $pager->getPageSize() + 1,
|
2014-01-18 01:10:56 +01:00
|
|
|
));
|
2012-05-10 09:28:19 +02:00
|
|
|
$branches = $pager->sliceResults($branches);
|
|
|
|
|
2014-01-18 01:10:56 +01:00
|
|
|
$branches = DiffusionRepositoryRef::loadAllFromDictionaries($branches);
|
|
|
|
|
2012-05-10 09:28:19 +02:00
|
|
|
$content = null;
|
|
|
|
if (!$branches) {
|
2013-10-30 21:14:56 +01: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 21:14:56 +01:00
|
|
|
$commits = id(new DiffusionCommitQuery())
|
|
|
|
->setViewer($viewer)
|
2014-01-18 01:10:56 +01:00
|
|
|
->withIdentifiers(mpull($branches, 'getCommitIdentifier'))
|
2013-11-07 21:10:43 +01:00
|
|
|
->withRepository($repository)
|
2012-05-10 09:28:19 +02:00
|
|
|
->execute();
|
|
|
|
|
|
|
|
$view = id(new DiffusionBranchTableView())
|
2013-10-30 21:14:56 +01:00
|
|
|
->setUser($viewer)
|
2012-05-10 09:28:19 +02:00
|
|
|
->setBranches($branches)
|
|
|
|
->setCommits($commits)
|
|
|
|
->setDiffusionRequest($drequest);
|
|
|
|
|
|
|
|
$panel = id(new AphrontPanelView())
|
2013-09-23 21:53:55 +02:00
|
|
|
->setNoBackground(true)
|
2012-05-10 09:28:19 +02:00
|
|
|
->appendChild($view)
|
|
|
|
->appendChild($pager);
|
|
|
|
|
|
|
|
$content = $panel;
|
|
|
|
}
|
|
|
|
|
2013-09-23 21:53:55 +02:00
|
|
|
$crumbs = $this->buildCrumbs(
|
|
|
|
array(
|
2013-10-30 21:15:14 +01:00
|
|
|
'branches' => true,
|
2013-09-23 21:53:55 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
2012-05-10 09:28:19 +02:00
|
|
|
array(
|
2013-09-23 21:53:55 +02:00
|
|
|
$crumbs,
|
2012-05-10 09:28:19 +02:00
|
|
|
$content,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => array(
|
2013-10-30 21:14:56 +01:00
|
|
|
pht('Branches'),
|
|
|
|
'r'.$repository->getCallsign(),
|
2012-05-10 09:28:19 +02:00
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|