mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
7573ad9a70
Summary: ref T2784. This one had a few fun spots where I had to move data around. Also, is there some common object (or should I add it?) that can do this toDictionary newFromConduit stuff? Also, this assumes D5803 is largely correct at the time of this diff. Test Plan: browsed mercurial and git repository page. saw the branches i expected. Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Maniphest Tasks: T2784 Differential Revision: https://secure.phabricator.com/D5810
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?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
|
|
$branches = DiffusionBranchInformation::newFromConduit(
|
|
$this->callConduitWithDiffusionRequest(
|
|
'diffusion.branchquery',
|
|
array(
|
|
'offset' => $pager->getOffset(),
|
|
'limit' => $pager->getPageSize() + 1
|
|
)));
|
|
$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',
|
|
),
|
|
));
|
|
}
|
|
|
|
}
|