Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F423502
DiffusionBranchTableController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionBranchTableController.php
View Options
<?php
final
class
DiffusionBranchTableController
extends
DiffusionController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
processRequest
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$request
=
$this
->
getRequest
();
$viewer
=
$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
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.branchquery'
,
array
(
'offset'
=>
$pager
->
getOffset
(),
'limit'
=>
$pager
->
getPageSize
()
+
1
,
));
$branches
=
$pager
->
sliceResults
(
$branches
);
$branches
=
DiffusionRepositoryRef
::
loadAllFromDictionaries
(
$branches
);
$content
=
null
;
if
(!
$branches
)
{
$content
=
$this
->
renderStatusMessage
(
pht
(
'No Branches'
),
pht
(
'This repository has no branches.'
));
}
else
{
$commits
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$viewer
)
->
withIdentifiers
(
mpull
(
$branches
,
'getCommitIdentifier'
))
->
withRepository
(
$repository
)
->
execute
();
$view
=
id
(
new
DiffusionBranchTableView
())
->
setUser
(
$viewer
)
->
setBranches
(
$branches
)
->
setCommits
(
$commits
)
->
setDiffusionRequest
(
$drequest
);
$panel
=
id
(
new
AphrontPanelView
())
->
setNoBackground
(
true
)
->
appendChild
(
$view
)
->
appendChild
(
$pager
);
$content
=
$panel
;
}
$crumbs
=
$this
->
buildCrumbs
(
array
(
'branches'
=>
true
,
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$content
,
),
array
(
'title'
=>
array
(
pht
(
'Branches'
),
'r'
.
$repository
->
getCallsign
(),
),
'device'
=>
false
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 2, 4:55 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
57113
Default Alt Text
DiffusionBranchTableController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment