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;
|
|
|
|
}
|
|
|
|
|
2012-05-10 09:28:19 +02:00
|
|
|
public function processRequest() {
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
|
|
$pager = new AphrontPagerView();
|
|
|
|
$pager->setURI($request->getRequestURI(), 'offset');
|
|
|
|
$pager->setOffset($request->getInt('offset'));
|
|
|
|
|
|
|
|
// TODO: Add support for branches that contain commit
|
2013-05-01 23:56:36 +02:00
|
|
|
$branches = DiffusionBranchInformation::newFromConduit(
|
|
|
|
$this->callConduitWithDiffusionRequest(
|
|
|
|
'diffusion.branchquery',
|
|
|
|
array(
|
|
|
|
'offset' => $pager->getOffset(),
|
|
|
|
'limit' => $pager->getPageSize() + 1
|
|
|
|
)));
|
2012-05-10 09:28:19 +02:00
|
|
|
$branches = $pager->sliceResults($branches);
|
|
|
|
|
|
|
|
$content = null;
|
|
|
|
if (!$branches) {
|
|
|
|
$content = new AphrontErrorView();
|
2013-05-11 17:23:19 +02:00
|
|
|
$content->setTitle(pht('No Branches'));
|
|
|
|
$content->appendChild(pht('This repository has no branches.'));
|
2012-05-10 09:28:19 +02:00
|
|
|
$content->setSeverity(AphrontErrorView::SEVERITY_NODATA);
|
|
|
|
} else {
|
|
|
|
$commits = id(new PhabricatorAuditCommitQuery())
|
|
|
|
->withIdentifiers(
|
|
|
|
$drequest->getRepository()->getID(),
|
|
|
|
mpull($branches, 'getHeadCommitIdentifier'))
|
|
|
|
->needCommitData(true)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$view = id(new DiffusionBranchTableView())
|
|
|
|
->setBranches($branches)
|
|
|
|
->setUser($user)
|
|
|
|
->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(
|
|
|
|
'branches' => true,
|
|
|
|
));
|
|
|
|
|
|
|
|
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(
|
|
|
|
'Branches',
|
|
|
|
$repository->getCallsign().' Repository',
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|