Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103771702
DiffusionBrowseMainController.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 4, 16:23
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Mar 6, 16:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24612581
Attached To
rPH Phabricator
DiffusionBrowseMainController.php
View Options
<?php
final
class
DiffusionBrowseMainController
extends
DiffusionBrowseController
{
protected
function
processDiffusionRequest
(
AphrontRequest
$request
)
{
$drequest
=
$this
->
diffusionRequest
;
// Figure out if we're browsing a directory, a file, or a search result
// list. Then delegate to the appropriate controller.
$grep
=
$request
->
getStr
(
'grep'
);
$find
=
$request
->
getStr
(
'find'
);
if
(
strlen
(
$grep
)
||
strlen
(
$find
))
{
$controller
=
new
DiffusionBrowseSearchController
();
}
else
{
$results
=
DiffusionBrowseResultSet
::
newFromConduit
(
$this
->
callConduitWithDiffusionRequest
(
'diffusion.browsequery'
,
array
(
'path'
=>
$drequest
->
getPath
(),
'commit'
=>
$drequest
->
getStableCommit
(),
)));
$reason
=
$results
->
getReasonForEmptyResultSet
();
$is_file
=
(
$reason
==
DiffusionBrowseResultSet
::
REASON_IS_FILE
);
if
(
$is_file
)
{
$controller
=
new
DiffusionBrowseFileController
(
$request
);
}
else
{
$controller
=
new
DiffusionBrowseDirectoryController
(
$request
);
$controller
->
setBrowseQueryResults
(
$results
);
}
}
$controller
->
setDiffusionRequest
(
$drequest
);
$controller
->
setCurrentApplication
(
$this
->
getCurrentApplication
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment