Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102360210
ReleephGetBranchesConduitAPIMethod.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
Wed, Feb 19, 21:43
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 21, 21:43 (2 d)
Engine
blob
Format
Raw Data
Handle
24338311
Attached To
rPH Phabricator
ReleephGetBranchesConduitAPIMethod.php
View Options
<?php
final
class
ReleephGetBranchesConduitAPIMethod
extends
ReleephConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'releeph.getbranches'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Return information about all active Releeph branches.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
);
}
protected
function
defineReturnType
()
{
return
'nonempty list<dict<string, wild>>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$results
=
array
();
$projects
=
id
(
new
ReleephProductQuery
())
->
setViewer
(
$request
->
getUser
())
->
withActive
(
1
)
->
execute
();
foreach
(
$projects
as
$project
)
{
$repository
=
$project
->
getRepository
();
$branches
=
$project
->
loadRelatives
(
id
(
new
ReleephBranch
()),
'releephProjectID'
,
'getID'
,
'isActive = 1'
);
foreach
(
$branches
as
$branch
)
{
$full_branch_name
=
$branch
->
getName
();
$cut_point_commit
=
$branch
->
loadOneRelative
(
id
(
new
PhabricatorRepositoryCommit
()),
'phid'
,
'getCutPointCommitPHID'
);
$results
[]
=
array
(
'project'
=>
$project
->
getName
(),
'repository'
=>
$repository
->
getCallsign
(),
'branch'
=>
$branch
->
getBasename
(),
'fullBranchName'
=>
$full_branch_name
,
'symbolicName'
=>
$branch
->
getSymbolicName
(),
'cutPoint'
=>
$cut_point_commit
->
getCommitIdentifier
(),
);
}
}
return
$results
;
}
}
Event Timeline
Log In to Comment