Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110109884
ConduitAPI_releeph_getbranches_Method.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
Thu, Apr 24, 18:37
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 26, 18:37 (2 d)
Engine
blob
Format
Raw Data
Handle
25740840
Attached To
rPH Phabricator
ConduitAPI_releeph_getbranches_Method.php
View Options
<?php
final
class
ConduitAPI_releeph_getbranches_Method
extends
ConduitAPI_releeph_Method
{
public
function
getMethodDescription
()
{
return
"Return information about all active Releeph branches."
;
}
public
function
defineParamTypes
()
{
return
array
(
);
}
public
function
defineReturnType
()
{
return
'nonempty list<dict<string, wild>>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
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