Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F435710
DiffusionDatasourceEngineExtension.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
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/%p/?jump=true&context=%s'
,
$parts
[
2
],
$parts
[
1
]);
}
else
{
return
urisprintf
(
'/diffusion/symbol/%p/?jump=true'
,
$symbol
);
}
}
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 8:55 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
55805
Default Alt Text
DiffusionDatasourceEngineExtension.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment