2012-05-10 09:28:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionBranchTableController extends DiffusionController {
|
|
|
|
|
|
|
|
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
|
|
|
|
$query = DiffusionBranchQuery::newFromDiffusionRequest($drequest);
|
|
|
|
$query->setOffset($pager->getOffset());
|
2012-05-10 23:18:49 +02:00
|
|
|
$query->setLimit($pager->getPageSize() + 1);
|
2012-05-10 09:28:19 +02:00
|
|
|
$branches = $query->loadBranches();
|
|
|
|
|
|
|
|
$branches = $pager->sliceResults($branches);
|
|
|
|
|
|
|
|
$content = null;
|
|
|
|
if (!$branches) {
|
|
|
|
$content = new AphrontErrorView();
|
|
|
|
$content->setTitle('No Branches');
|
|
|
|
$content->appendChild('This repository has no branches.');
|
|
|
|
$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())
|
|
|
|
->setHeader('Branches')
|
|
|
|
->appendChild($view)
|
|
|
|
->appendChild($pager);
|
|
|
|
|
|
|
|
$content = $panel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
array(
|
|
|
|
$this->buildCrumbs(
|
|
|
|
array(
|
|
|
|
'branches' => true,
|
|
|
|
)),
|
|
|
|
$content,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => array(
|
|
|
|
'Branches',
|
|
|
|
$repository->getCallsign().' Repository',
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|