Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99187699
DiffusionDatasourceEngineExtension.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
Wed, Jan 22, 04:16
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 04:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23726171
Attached To
rPH Phabricator
DiffusionDatasourceEngineExtension.php
View Options
<?php
final
class
DiffusionDatasourceEngineExtension
extends
PhabricatorDatasourceEngineExtension
{
public
function
newQuickSearchDatasources
()
{
return
array
(
new
DiffusionRepositoryDatasource
(),
new
DiffusionSymbolDatasource
(),
);
}
public
function
newJumpURI
(
$query
)
{
$viewer
=
$this
->
getViewer
();
// Send "r" to Diffusion.
if
(
preg_match
(
'/^r
\z
/i'
,
$query
))
{
return
'/diffusion/'
;
}
// Send "a" to the commit list ("Audit").
if
(
preg_match
(
'/^a
\z
/i'
,
$query
))
{
return
'/diffusion/commit/'
;
}
// Send "r <string>" to a search for a matching repository.
$matches
=
null
;
if
(
preg_match
(
'/^r
\s
+(.+)
\z
/i'
,
$query
,
$matches
))
{
$raw_query
=
$matches
[
1
];
$engine
=
id
(
new
PhabricatorRepository
())
->
newFerretEngine
();
$compiler
=
id
(
new
PhutilSearchQueryCompiler
())
->
setEnableFunctions
(
true
);
$raw_tokens
=
$compiler
->
newTokens
(
$raw_query
);
$fulltext_tokens
=
array
();
foreach
(
$raw_tokens
as
$raw_token
)
{
$fulltext_token
=
id
(
new
PhabricatorFulltextToken
())
->
setToken
(
$raw_token
);
$fulltext_tokens
[]
=
$fulltext_token
;
}
$repositories
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$viewer
)
->
withFerretConstraint
(
$engine
,
$fulltext_tokens
)
->
execute
();
if
(
count
(
$repositories
)
==
1
)
{
// Just one match, jump to repository.
return
head
(
$repositories
)->
getURI
();
}
else
{
// More than one match, jump to search.
return
urisprintf
(
'/diffusion/?order=relevance&query=%s#R'
,
$raw_query
);
}
}
// Send "s <string>" to a symbol search.
$matches
=
null
;
if
(
preg_match
(
'/^s
\s
+(.+)
\z
/i'
,
$query
,
$matches
))
{
$symbol
=
$matches
[
1
];
$parts
=
null
;
if
(
preg_match
(
'/(.*)(?:
\\
.|::|->)(.*)/'
,
$symbol
,
$parts
))
{
return
urisprintf
(
'/diffusion/symbol/%s/?jump=true&context=%s'
,
$parts
[
2
],
$parts
[
1
]);
}
else
{
return
urisprintf
(
'/diffusion/symbol/%s/?jump=true'
,
$symbol
);
}
}
return
null
;
}
}
Event Timeline
Log In to Comment