mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
33 lines
912 B
PHP
33 lines
912 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitBranchesController extends DiffusionController {
|
||
|
|
||
|
public function willProcessRequest(array $data) {
|
||
|
$this->diffusionRequest = DiffusionRequest::newFromDictionary($data);
|
||
|
}
|
||
|
|
||
|
public function processRequest() {
|
||
|
$request = $this->getDiffusionRequest();
|
||
|
|
||
|
$branch_query = DiffusionContainsQuery::newFromDiffusionRequest($request);
|
||
|
$branches = $branch_query->loadContainingBranches();
|
||
|
|
||
|
$branch_links = array();
|
||
|
foreach ($branches as $branch => $commit) {
|
||
|
$branch_links[] = phutil_render_tag(
|
||
|
'a',
|
||
|
array(
|
||
|
'href' => $request->generateURI(
|
||
|
array(
|
||
|
'action' => 'browse',
|
||
|
'branch' => $branch,
|
||
|
)),
|
||
|
),
|
||
|
phutil_escape_html($branch));
|
||
|
}
|
||
|
|
||
|
return id(new AphrontAjaxResponse())
|
||
|
->setContent($branch_links ? implode(', ', $branch_links) : 'None');
|
||
|
}
|
||
|
}
|