Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112149264
DiffusionBranchTableController.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, May 8, 05:27
Size
1 KB
Mime Type
text/x-php
Expires
Sat, May 10, 05:27 (2 d)
Engine
blob
Format
Raw Data
Handle
26039611
Attached To
rPH Phabricator
DiffusionBranchTableController.php
View Options
<?php
final
class
DiffusionBranchTableController
extends
DiffusionController
{
public
function
processRequest
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$repository
=
$drequest
->
getRepository
();
$pager
=
new
AphrontPagerView
();
$pager
->
setURI
(
$request
->
getRequestURI
(),
'offset'
);
$pager
->
setOffset
(
$request
->
getInt
(
'offset'
));
// TODO: Add support for branches that contain commit
$branches
=
DiffusionBranchInformation
::
newFromConduit
(
$this
->
callConduitWithDiffusionRequest
(
'diffusion.branchquery'
,
array
(
'offset'
=>
$pager
->
getOffset
(),
'limit'
=>
$pager
->
getPageSize
()
+
1
)));
$branches
=
$pager
->
sliceResults
(
$branches
);
$content
=
null
;
if
(!
$branches
)
{
$content
=
new
AphrontErrorView
();
$content
->
setTitle
(
pht
(
'No Branches'
));
$content
->
appendChild
(
pht
(
'This repository has no branches.'
));
$content
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NODATA
);
}
else
{
$commits
=
id
(
new
PhabricatorAuditCommitQuery
())
->
withIdentifiers
(
$drequest
->
getRepository
()->
getID
(),
mpull
(
$branches
,
'getHeadCommitIdentifier'
))
->
needCommitData
(
true
)
->
execute
();
$view
=
id
(
new
DiffusionBranchTableView
())
->
setBranches
(
$branches
)
->
setUser
(
$user
)
->
setCommits
(
$commits
)
->
setDiffusionRequest
(
$drequest
);
$panel
=
id
(
new
AphrontPanelView
())
->
setHeader
(
pht
(
'Branches'
))
->
appendChild
(
$view
)
->
appendChild
(
$pager
);
$content
=
$panel
;
}
return
$this
->
buildStandardPageResponse
(
array
(
$this
->
buildCrumbs
(
array
(
'branches'
=>
true
,
)),
$content
,
),
array
(
'title'
=>
array
(
'Branches'
,
$repository
->
getCallsign
().
' Repository'
,
),
));
}
}
Event Timeline
Log In to Comment