Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100891973
DiffusionPathCompleteController.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, Feb 3, 16:33
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 5, 16:33 (2 d)
Engine
blob
Format
Raw Data
Handle
24051762
Attached To
rPH Phabricator
DiffusionPathCompleteController.php
View Options
<?php
final
class
DiffusionPathCompleteController
extends
DiffusionController
{
public
function
willProcessRequest
(
array
$data
)
{
// Don't build a DiffusionRequest.
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$repository_phid
=
$request
->
getStr
(
'repositoryPHID'
);
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$request
->
getUser
())
->
withPHIDs
(
array
(
$repository_phid
))
->
executeOne
();
if
(!
$repository
)
{
return
new
Aphront400Response
();
}
$query_path
=
$request
->
getStr
(
'q'
);
if
(
preg_match
(
'@/$@'
,
$query_path
))
{
$query_dir
=
$query_path
;
}
else
{
$query_dir
=
dirname
(
$query_path
).
'/'
;
}
$query_dir
=
ltrim
(
$query_dir
,
'/'
);
$drequest
=
DiffusionRequest
::
newFromDictionary
(
array
(
'user'
=>
$request
->
getUser
(),
'repository'
=>
$repository
,
'path'
=>
$query_dir
,
));
$this
->
setDiffusionRequest
(
$drequest
);
$browse_results
=
DiffusionBrowseResultSet
::
newFromConduit
(
$this
->
callConduitWithDiffusionRequest
(
'diffusion.browsequery'
,
array
(
'path'
=>
$drequest
->
getPath
(),
'commit'
=>
$drequest
->
getCommit
(),
)));
$paths
=
$browse_results
->
getPaths
();
$output
=
array
();
foreach
(
$paths
as
$path
)
{
$full_path
=
$query_dir
.
$path
->
getPath
();
if
(
$path
->
getFileType
()
==
DifferentialChangeType
::
FILE_DIRECTORY
)
{
$full_path
.=
'/'
;
}
$output
[]
=
array
(
'/'
.
$full_path
,
null
,
substr
(
md5
(
$full_path
),
0
,
7
));
}
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$output
);
}
}
Event Timeline
Log In to Comment