Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91488767
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
Mon, Nov 11, 15:06
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 15:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22270167
Attached To
rPH Phabricator
DiffusionPathTreeController.php
View Options
<?php
final
class
DiffusionPathTreeController
extends
DiffusionController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
loadDiffusionContext
();
if
(
$response
)
{
return
$response
;
}
$drequest
=
$this
->
getDiffusionRequest
();
$repository
=
$drequest
->
getRepository
();
if
(!
$repository
->
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