Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102584300
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
Sat, Feb 22, 06:05
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 24, 06:05 (2 d)
Engine
blob
Format
Raw Data
Handle
24364666
Attached To
rPH Phabricator
ReleephGetBranchesConduitAPIMethod.php
View Options
<?php
final
class
ReleephGetBranchesConduitAPIMethod
extends
ReleephConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'releeph.getbranches'
;
}
public
function
getMethodDescription
()
{
return
'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