43 public function search( $search, $limit, $namespaces = [], $offset = 0 ) {
44 $search = trim( $search );
45 if ( $search ==
'' ) {
49 $hasNamespace = SearchEngine::parseNamespacePrefixes( $search,
false,
true );
50 if ( $hasNamespace !==
false ) {
51 list( $search, $namespaces ) = $hasNamespace;
54 return $this->
searchBackend( $namespaces, $search, $limit, $offset );
67 $searches = $this->
search( $search, $limit, $namespaces, $offset );
70 $fallbackLimit = $limit - count( $searches );
71 if ( $fallbackLimit > 0 ) {
72 $fallbackSearches = MediaWikiServices::getInstance()->getContentLanguage()->
73 autoConvertToAllVariants( $search );
74 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
76 foreach ( $fallbackSearches as $fbs ) {
77 $fallbackSearchResult = $this->
search( $fbs, $fallbackLimit, $namespaces );
78 $searches = array_merge( $searches, $fallbackSearchResult );
79 $fallbackLimit -= count( $fallbackSearchResult );
81 if ( $fallbackLimit == 0 ) {
96 abstract protected function titles( array $titles );
106 abstract protected function strings( array $strings );
117 if ( count( $namespaces ) == 1 ) {
118 $ns = $namespaces[0];
126 if ( Hooks::runner()->onPrefixSearchBackend(
127 $namespaces, $search, $limit, $srchres, $offset )
136 if ( $offset === 0 ) {
142 $srchres = $rescorer->rescore( $search, $namespaces, $srchres, $limit );
156 $searchParts = explode(
'/', $search, 2 );
157 $searchKey = $searchParts[0];
158 $subpageSearch = $searchParts[1] ??
null;
161 $spFactory = MediaWikiServices::getInstance()->getSpecialPageFactory();
162 if ( $subpageSearch !==
null ) {
164 $specialTitle = Title::makeTitleSafe(
NS_SPECIAL, $searchKey );
165 if ( !$specialTitle ) {
168 $special = $spFactory->getPage( $specialTitle->getText() );
170 $subpages = $special->prefixSearchSubpages( $subpageSearch, $limit, $offset );
171 return array_map(
function ( $sub ) use ( $specialTitle ) {
172 return $specialTitle->getSubpage( $sub );
179 # normalize searchKey, so aliases with spaces can be found - T27675
180 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
181 $searchKey = str_replace(
' ',
'_', $searchKey );
182 $searchKey = $contLang->caseFold( $searchKey );
187 foreach ( $spFactory->getNames() as $page ) {
188 $keys[$contLang->caseFold( $page )] = [
'page' => $page,
'rank' => 0 ];
191 foreach ( $contLang->getSpecialPageAliases() as $page => $aliases ) {
192 if ( !in_array( $page, $spFactory->getNames() ) ) {# T22885
196 foreach ( $aliases as $key => $alias ) {
197 $keys[$contLang->caseFold( $alias )] = [
'page' => $alias,
'rank' => $key ];
203 foreach (
$keys as $pageKey => $page ) {
204 if ( $searchKey ===
'' || strpos( $pageKey, $searchKey ) === 0 ) {
224 return array_slice(
$matches, $offset, $limit );
241 if ( $namespaces ===
null ) {
244 if ( !$namespaces ) {
251 foreach ( $namespaces as $namespace ) {
257 $title = Title::makeTitleSafe( $namespace, $search );
260 $prefixes[$prefix][] = $namespace;
267 foreach ( $prefixes as $prefix => $namespaces ) {
269 'page_namespace' => $namespaces,
270 'page_title' .
$dbr->buildLike( $prefix,
$dbr->anyString() ),
276 $fields = [
'page_id',
'page_namespace',
'page_title' ];
280 'ORDER BY' => [
'page_title',
'page_namespace' ],
284 $res =
$dbr->select( $table, $fields, $conds, __METHOD__, $options );
286 return iterator_to_array( TitleArray::newFromResult(
$res ) );
297 $validNamespaces = MediaWikiServices::getInstance()->getContentLanguage()->getNamespaces();
298 if ( is_array( $namespaces ) && count( $namespaces ) > 0 ) {
300 foreach ( $namespaces as $ns ) {
301 if ( is_numeric( $ns ) && array_key_exists( $ns, $validNamespaces ) ) {
305 if ( count( $valid ) > 0 ) {
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Handles searching prefixes of titles and finding any page names that match.
searchWithVariants( $search, $limit, array $namespaces, $offset=0)
Do a prefix search for all possible variants of the prefix.
search( $search, $limit, $namespaces=[], $offset=0)
Do a prefix search of titles and return a list of matching page names.
specialSearch( $search, $limit, $offset)
Prefix search special-case for Special: namespace.
validateNamespaces( $namespaces)
Validate an array of numerical namespace indexes.
titles(array $titles)
When implemented in a descendant class, receives an array of Title objects and returns either an unmo...
defaultSearchBackend( $namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook... This is case-sensitive (First character may be autom...
strings(array $strings)
When implemented in a descendant class, receives an array of titles as strings and returns either an ...
handleResultFromHook( $srchres, $namespaces, $search, $limit, $offset)
searchBackend( $namespaces, $search, $limit, $offset)
Do a prefix search of titles and return a list of matching page names.
An utility class to rescore search results by looking for an exact match in the db and add the page f...