Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106402485
DiffusionBrowseDirectoryController.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
Tue, Mar 25, 11:42
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Mar 27, 11:42 (2 d)
Engine
blob
Format
Raw Data
Handle
25064260
Attached To
rPH Phabricator
DiffusionBrowseDirectoryController.php
View Options
<?php
final
class
DiffusionBrowseDirectoryController
extends
DiffusionBrowseController
{
private
$browseQueryResults
;
public
function
setBrowseQueryResults
(
DiffusionBrowseResultSet
$results
)
{
$this
->
browseQueryResults
=
$results
;
return
$this
;
}
public
function
getBrowseQueryResults
()
{
return
$this
->
browseQueryResults
;
}
public
function
processRequest
()
{
$drequest
=
$this
->
diffusionRequest
;
$results
=
$this
->
getBrowseQueryResults
();
$reason
=
$results
->
getReasonForEmptyResultSet
();
$content
=
array
();
$actions
=
$this
->
buildActionView
(
$drequest
);
$properties
=
$this
->
buildPropertyView
(
$drequest
,
$actions
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$this
->
buildHeaderView
(
$drequest
))
->
addPropertyList
(
$properties
);
$content
[]
=
$object_box
;
$content
[]
=
$this
->
renderSearchForm
(
$collapsed
=
true
);
if
(!
$results
->
isValidResults
())
{
$empty_result
=
new
DiffusionEmptyResultView
();
$empty_result
->
setDiffusionRequest
(
$drequest
);
$empty_result
->
setDiffusionBrowseResultSet
(
$results
);
$empty_result
->
setView
(
$this
->
getRequest
()->
getStr
(
'view'
));
$content
[]
=
$empty_result
;
}
else
{
$phids
=
array
();
foreach
(
$results
->
getPaths
()
as
$result
)
{
$data
=
$result
->
getLastCommitData
();
if
(
$data
)
{
if
(
$data
->
getCommitDetail
(
'authorPHID'
))
{
$phids
[
$data
->
getCommitDetail
(
'authorPHID'
)]
=
true
;
}
}
}
$phids
=
array_keys
(
$phids
);
$handles
=
$this
->
loadViewerHandles
(
$phids
);
$browse_table
=
new
DiffusionBrowseTableView
();
$browse_table
->
setDiffusionRequest
(
$drequest
);
$browse_table
->
setHandles
(
$handles
);
$browse_table
->
setPaths
(
$results
->
getPaths
());
$browse_table
->
setUser
(
$this
->
getRequest
()->
getUser
());
$browse_panel
=
new
AphrontPanelView
();
$browse_panel
->
appendChild
(
$browse_table
);
$browse_panel
->
setNoBackground
();
$content
[]
=
$browse_panel
;
}
$content
[]
=
$this
->
buildOpenRevisions
();
$readme
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.readmequery'
,
array
(
'paths'
=>
$results
->
getPathDicts
(),
'commit'
=>
$drequest
->
getStableCommit
(),
));
if
(
$readme
)
{
$box
=
new
PHUIBoxView
();
$box
->
appendChild
(
$readme
);
$box
->
addPadding
(
PHUI
::
PADDING_LARGE
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'README'
))
->
appendChild
(
$box
);
$content
[]
=
$object_box
;
}
$crumbs
=
$this
->
buildCrumbs
(
array
(
'branch'
=>
true
,
'path'
=>
true
,
'view'
=>
'browse'
,
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$content
,
),
array
(
'title'
=>
array
(
nonempty
(
basename
(
$drequest
->
getPath
()),
'/'
),
$drequest
->
getRepository
()->
getCallsign
().
' Repository'
,
),
));
}
}
Event Timeline
Log In to Comment