Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F433099
DiffusionPathTreeController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 3:25 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
62297
Default Alt Text
DiffusionPathTreeController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment