Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98215666
DiffusionPathTreeController.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
Sat, Jan 11, 03:31
Size
898 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 03:31 (2 d)
Engine
blob
Format
Raw Data
Handle
23535648
Attached To
rPH Phabricator
DiffusionPathTreeController.php
View Options
<?php
final
class
DiffusionPathTreeController
extends
DiffusionController
{
public
function
processRequest
()
{
$drequest
=
$this
->
getDiffusionRequest
();
if
(!
$drequest
->
getRepository
()->
canUsePathTree
())
{
return
new
Aphront404Response
();
}
$paths
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.querypaths'
,
array
(
'path'
=>
$drequest
->
getPath
(),
'commit'
=>
$drequest
->
getCommit
(),
));
$tree
=
array
();
foreach
(
$paths
as
$path
)
{
$parts
=
preg_split
(
'((?<=/))'
,
$path
);
$cursor
=
&
$tree
;
foreach
(
$parts
as
$part
)
{
if
(!
is_array
(
$cursor
))
{
$cursor
=
array
();
}
if
(!
isset
(
$cursor
[
$part
]))
{
$cursor
[
$part
]
=
1
;
}
$cursor
=
&
$cursor
[
$part
];
}
}
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
array
(
'tree'
=>
$tree
));
}
}
Event Timeline
Log In to Comment