Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109056529
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, Apr 19, 16:47
Size
933 B
Mime Type
text/x-php
Expires
Mon, Apr 21, 16:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25662299
Attached To
rPH Phabricator
DiffusionPathTreeController.php
View Options
<?php
final
class
DiffusionPathTreeController
extends
DiffusionController
{
protected
function
processDiffusionRequest
(
AphrontRequest
$request
)
{
$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