Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92654399
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
Fri, Nov 22, 10:36
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22478569
Attached To
rPH Phabricator
DiffusionBrowseMainController.php
View Options
<?php
final
class
DiffusionBrowseMainController
extends
DiffusionBrowseController
{
public
function
processRequest
()
{
$drequest
=
$this
->
diffusionRequest
;
$request
=
$this
->
getRequest
();
// 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