Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99981365
DiffusionCommitBranchesController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jan 27, 14:09
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 29, 14:09 (2 d)
Engine
blob
Format
Raw Data
Handle
23862218
Attached To
rPH Phabricator
DiffusionCommitBranchesController.php
View Options
<?php
final
class
DiffusionCommitBranchesController
extends
DiffusionController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$data
[
'user'
]
=
$this
->
getRequest
()->
getUser
();
$this
->
diffusionRequest
=
DiffusionRequest
::
newFromDictionary
(
$data
);
}
public
function
processRequest
()
{
$request
=
$this
->
getDiffusionRequest
();
$branches
=
array
();
try
{
$branches
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.branchquery'
,
array
(
'contains'
=>
$request
->
getCommit
(),
));
}
catch
(
ConduitException
$ex
)
{
if
(
$ex
->
getMessage
()
!=
'ERR-UNSUPPORTED-VCS'
)
{
throw
$ex
;
}
}
$branches
=
DiffusionRepositoryRef
::
loadAllFromDictionaries
(
$branches
);
$branch_links
=
array
();
foreach
(
$branches
as
$branch
)
{
$branch_links
[]
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$request
->
generateURI
(
array
(
'action'
=>
'browse'
,
'branch'
=>
$branch
->
getShortName
(),
)),
),
$branch
->
getShortName
());
}
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
$branch_links
?
implode
(
', '
,
$branch_links
)
:
'None'
);
}
}
Event Timeline
Log In to Comment