Merge "Use 1 processes instead of 4 for phan"
[lhc/web/wiklou.git] / includes / specials / SpecialSearch.php
1 <?php
2 /**
3 * Implements Special:Search
4 *
5 * Copyright © 2004 Brion Vibber <brion@pobox.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 * @ingroup SpecialPage
24 */
25
26 use MediaWiki\MediaWikiServices;
27
28 /**
29 * implements Special:Search - Run text & title search and display the output
30 * @ingroup SpecialPage
31 */
32 class SpecialSearch extends SpecialPage {
33 /**
34 * Current search profile. Search profile is just a name that identifies
35 * the active search tab on the search page (content, discussions...)
36 * For users tt replaces the set of enabled namespaces from the query
37 * string when applicable. Extensions can add new profiles with hooks
38 * with custom search options just for that profile.
39 * @var null|string
40 */
41 protected $profile;
42
43 /** @var SearchEngine Search engine */
44 protected $searchEngine;
45
46 /** @var string Search engine type, if not default */
47 protected $searchEngineType;
48
49 /** @var array For links */
50 protected $extraParams = [];
51
52 /**
53 * @var string The prefix url parameter. Set on the searcher and the
54 * is expected to treat it as prefix filter on titles.
55 */
56 protected $mPrefix;
57
58 /**
59 * @var int
60 */
61 protected $limit, $offset;
62
63 /**
64 * @var array
65 */
66 protected $namespaces;
67
68 /**
69 * @var string
70 */
71 protected $fulltext;
72
73 /**
74 * @var bool
75 */
76 protected $runSuggestion = true;
77
78 /**
79 * Names of the wikis, in format: Interwiki prefix -> caption
80 * @var array
81 */
82 protected $customCaptions;
83
84 /**
85 * Search engine configurations.
86 * @var SearchEngineConfig
87 */
88 protected $searchConfig;
89
90 const NAMESPACES_CURRENT = 'sense';
91
92 public function __construct() {
93 parent::__construct( 'Search' );
94 $this->searchConfig = MediaWikiServices::getInstance()->getSearchEngineConfig();
95 }
96
97 /**
98 * Entry point
99 *
100 * @param string $par
101 */
102 public function execute( $par ) {
103 $request = $this->getRequest();
104
105 // Fetch the search term
106 $search = str_replace( "\n", " ", $request->getText( 'search' ) );
107
108 // Historically search terms have been accepted not only in the search query
109 // parameter, but also as part of the primary url. This can have PII implications
110 // in releasing page view data. As such issue a 301 redirect to the correct
111 // URL.
112 if ( strlen( $par ) && !strlen( $search ) ) {
113 $query = $request->getValues();
114 unset( $query['title'] );
115 // Strip underscores from title parameter; most of the time we'll want
116 // text form here. But don't strip underscores from actual text params!
117 $query['search'] = str_replace( '_', ' ', $par );
118 $this->getOutput()->redirect( $this->getPageTitle()->getFullURL( $query ), 301 );
119 return;
120 }
121
122 $this->setHeaders();
123 $this->outputHeader();
124 $out = $this->getOutput();
125 $out->allowClickjacking();
126 $out->addModuleStyles( [
127 'mediawiki.special', 'mediawiki.special.search.styles', 'mediawiki.ui', 'mediawiki.ui.button',
128 'mediawiki.ui.input', 'mediawiki.widgets.SearchInputWidget.styles',
129 ] );
130 $this->addHelpLink( 'Help:Searching' );
131
132 $this->load();
133 if ( !is_null( $request->getVal( 'nsRemember' ) ) ) {
134 $this->saveNamespaces();
135 // Remove the token from the URL to prevent the user from inadvertently
136 // exposing it (e.g. by pasting it into a public wiki page) or undoing
137 // later settings changes (e.g. by reloading the page).
138 $query = $request->getValues();
139 unset( $query['title'], $query['nsRemember'] );
140 $out->redirect( $this->getPageTitle()->getFullURL( $query ) );
141 return;
142 }
143
144 $out->addJsConfigVars( [ 'searchTerm' => $search ] );
145 $this->searchEngineType = $request->getVal( 'srbackend' );
146
147 if ( $request->getVal( 'fulltext' )
148 || !is_null( $request->getVal( 'offset' ) )
149 ) {
150 $this->showResults( $search );
151 } else {
152 $this->goResult( $search );
153 }
154 }
155
156 /**
157 * Set up basic search parameters from the request and user settings.
158 *
159 * @see tests/phpunit/includes/specials/SpecialSearchTest.php
160 */
161 public function load() {
162 $request = $this->getRequest();
163 list( $this->limit, $this->offset ) = $request->getLimitOffset( 20, '' );
164 $this->mPrefix = $request->getVal( 'prefix', '' );
165
166 $user = $this->getUser();
167
168 # Extract manually requested namespaces
169 $nslist = $this->powerSearch( $request );
170 if ( !count( $nslist ) ) {
171 # Fallback to user preference
172 $nslist = $this->searchConfig->userNamespaces( $user );
173 }
174
175 $profile = null;
176 if ( !count( $nslist ) ) {
177 $profile = 'default';
178 }
179
180 $profile = $request->getVal( 'profile', $profile );
181 $profiles = $this->getSearchProfiles();
182 if ( $profile === null ) {
183 // BC with old request format
184 $profile = 'advanced';
185 foreach ( $profiles as $key => $data ) {
186 if ( $nslist === $data['namespaces'] && $key !== 'advanced' ) {
187 $profile = $key;
188 }
189 }
190 $this->namespaces = $nslist;
191 } elseif ( $profile === 'advanced' ) {
192 $this->namespaces = $nslist;
193 } else {
194 if ( isset( $profiles[$profile]['namespaces'] ) ) {
195 $this->namespaces = $profiles[$profile]['namespaces'];
196 } else {
197 // Unknown profile requested
198 $profile = 'default';
199 $this->namespaces = $profiles['default']['namespaces'];
200 }
201 }
202
203 $this->fulltext = $request->getVal( 'fulltext' );
204 $this->runSuggestion = (bool)$request->getVal( 'runsuggestion', true );
205 $this->profile = $profile;
206 }
207
208 /**
209 * If an exact title match can be found, jump straight ahead to it.
210 *
211 * @param string $term
212 */
213 public function goResult( $term ) {
214 $this->setupPage( $term );
215 # Try to go to page as entered.
216 $title = Title::newFromText( $term );
217 # If the string cannot be used to create a title
218 if ( is_null( $title ) ) {
219 $this->showResults( $term );
220
221 return;
222 }
223 # If there's an exact or very near match, jump right there.
224 $title = $this->getSearchEngine()
225 ->getNearMatcher( $this->getConfig() )->getNearMatch( $term );
226
227 if ( !is_null( $title ) &&
228 Hooks::run( 'SpecialSearchGoResult', [ $term, $title, &$url ] )
229 ) {
230 if ( $url === null ) {
231 $url = $title->getFullURL();
232 }
233 $this->getOutput()->redirect( $url );
234
235 return;
236 }
237 $this->showResults( $term );
238 }
239
240 /**
241 * @param string $term
242 */
243 public function showResults( $term ) {
244 global $wgContLang;
245
246 $search = $this->getSearchEngine();
247 $search->setFeatureData( 'rewrite', $this->runSuggestion );
248 $search->setLimitOffset( $this->limit, $this->offset );
249 $search->setNamespaces( $this->namespaces );
250 $search->prefix = $this->mPrefix;
251 $term = $search->transformSearchTerm( $term );
252
253 Hooks::run( 'SpecialSearchSetupEngine', [ $this, $this->profile, $search ] );
254
255 $this->setupPage( $term );
256
257 $out = $this->getOutput();
258
259 if ( $this->getConfig()->get( 'DisableTextSearch' ) ) {
260 $searchFowardUrl = $this->getConfig()->get( 'SearchForwardUrl' );
261 if ( $searchFowardUrl ) {
262 $url = str_replace( '$1', urlencode( $term ), $searchFowardUrl );
263 $out->redirect( $url );
264 } else {
265 $out->addHTML(
266 Xml::openElement( 'fieldset' ) .
267 Xml::element( 'legend', null, $this->msg( 'search-external' )->text() ) .
268 Xml::element(
269 'p',
270 [ 'class' => 'mw-searchdisabled' ],
271 $this->msg( 'searchdisabled' )->text()
272 ) .
273 $this->msg( 'googlesearch' )->rawParams(
274 htmlspecialchars( $term ),
275 'UTF-8',
276 $this->msg( 'searchbutton' )->escaped()
277 )->text() .
278 Xml::closeElement( 'fieldset' )
279 );
280 }
281
282 return;
283 }
284
285 $title = Title::newFromText( $term );
286 $showSuggestion = $title === null || !$title->isKnown();
287 $search->setShowSuggestion( $showSuggestion );
288
289 // fetch search results
290 $rewritten = $search->replacePrefixes( $term );
291
292 $titleMatches = $search->searchTitle( $rewritten );
293 $textMatches = $search->searchText( $rewritten );
294
295 $textStatus = null;
296 if ( $textMatches instanceof Status ) {
297 $textStatus = $textMatches;
298 $textMatches = $textStatus->getValue();
299 }
300
301 // did you mean... suggestions
302 $didYouMeanHtml = '';
303 if ( $showSuggestion && $textMatches ) {
304 if ( $textMatches->hasRewrittenQuery() ) {
305 $didYouMeanHtml = $this->getDidYouMeanRewrittenHtml( $term, $textMatches );
306 } elseif ( $textMatches->hasSuggestion() ) {
307 $didYouMeanHtml = $this->getDidYouMeanHtml( $textMatches );
308 }
309 }
310
311 if ( !Hooks::run( 'SpecialSearchResultsPrepend', [ $this, $out, $term ] ) ) {
312 # Hook requested termination
313 return;
314 }
315
316 // start rendering the page
317 $out->addHTML(
318 Xml::openElement(
319 'form',
320 [
321 'id' => ( $this->isPowerSearch() ? 'powersearch' : 'search' ),
322 'method' => 'get',
323 'action' => wfScript(),
324 ]
325 )
326 );
327
328 // Get number of results
329 $titleMatchesNum = $textMatchesNum = $numTitleMatches = $numTextMatches = 0;
330 if ( $titleMatches ) {
331 $titleMatchesNum = $titleMatches->numRows();
332 $numTitleMatches = $titleMatches->getTotalHits();
333 }
334 if ( $textMatches ) {
335 $textMatchesNum = $textMatches->numRows();
336 $numTextMatches = $textMatches->getTotalHits();
337 }
338 $num = $titleMatchesNum + $textMatchesNum;
339 $totalRes = $numTitleMatches + $numTextMatches;
340
341 $out->enableOOUI();
342 $out->addHTML(
343 # This is an awful awful ID name. It's not a table, but we
344 # named it poorly from when this was a table so now we're
345 # stuck with it
346 Xml::openElement( 'div', [ 'id' => 'mw-search-top-table' ] ) .
347 $this->shortDialog( $term, $num, $totalRes ) .
348 Xml::closeElement( 'div' ) .
349 $this->searchProfileTabs( $term ) .
350 $this->searchOptions( $term ) .
351 Xml::closeElement( 'form' ) .
352 $didYouMeanHtml
353 );
354
355 $filePrefix = $wgContLang->getFormattedNsText( NS_FILE ) . ':';
356 if ( trim( $term ) === '' || $filePrefix === trim( $term ) ) {
357 // Empty query -- straight view of search form
358 return;
359 }
360
361 $out->addHTML( "<div class='searchresults'>" );
362
363 $hasErrors = $textStatus && $textStatus->getErrors();
364 if ( $hasErrors ) {
365 list( $error, $warning ) = $textStatus->splitByErrorType();
366 if ( $error->getErrors() ) {
367 $out->addHTML( Html::rawElement(
368 'div',
369 [ 'class' => 'errorbox' ],
370 $error->getHTML( 'search-error' )
371 ) );
372 }
373 if ( $warning->getErrors() ) {
374 $out->addHTML( Html::rawElement(
375 'div',
376 [ 'class' => 'warningbox' ],
377 $warning->getHTML( 'search-warning' )
378 ) );
379 }
380 }
381
382 // prev/next links
383 $prevnext = null;
384 if ( $num || $this->offset ) {
385 // Show the create link ahead
386 $this->showCreateLink( $title, $num, $titleMatches, $textMatches );
387 if ( $totalRes > $this->limit || $this->offset ) {
388 if ( $this->searchEngineType !== null ) {
389 $this->setExtraParam( 'srbackend', $this->searchEngineType );
390 }
391 $prevnext = $this->getLanguage()->viewPrevNext(
392 $this->getPageTitle(),
393 $this->offset,
394 $this->limit,
395 $this->powerSearchOptions() + [ 'search' => $term ],
396 $this->limit + $this->offset >= $totalRes
397 );
398 }
399 }
400 Hooks::run( 'SpecialSearchResults', [ $term, &$titleMatches, &$textMatches ] );
401
402 $out->parserOptions()->setEditSection( false );
403 if ( $titleMatches ) {
404 if ( $numTitleMatches > 0 ) {
405 $out->wrapWikiMsg( "==$1==\n", 'titlematches' );
406 $out->addHTML( $this->showMatches( $titleMatches ) );
407 }
408 $titleMatches->free();
409 }
410
411 if ( $textMatches ) {
412 // output appropriate heading
413 if ( $numTextMatches > 0 && $numTitleMatches > 0 ) {
414 $out->addHTML( '<div class="mw-search-visualclear"></div>' );
415 // if no title matches the heading is redundant
416 $out->wrapWikiMsg( "==$1==\n", 'textmatches' );
417 }
418
419 // show results
420 if ( $numTextMatches > 0 ) {
421 $search->augmentSearchResults( $textMatches );
422 $out->addHTML( $this->showMatches( $textMatches ) );
423 }
424
425 // show secondary interwiki results if any
426 if ( $textMatches->hasInterwikiResults( SearchResultSet::SECONDARY_RESULTS ) ) {
427 $out->addHTML( $this->showInterwiki( $textMatches->getInterwikiResults(
428 SearchResultSet::SECONDARY_RESULTS ), $term ) );
429 }
430 }
431
432 $hasOtherResults = $textMatches &&
433 $textMatches->hasInterwikiResults( SearchResultSet::INLINE_RESULTS );
434
435 // If we have no results and we have not already displayed an error message
436 if ( $num === 0 && !$hasErrors ) {
437 if ( !$this->offset ) {
438 // If we have an offset the create link was rendered earlier in this function.
439 // This class needs a good de-spaghettification, but for now this will
440 // do the job.
441 $this->showCreateLink( $title, $num, $titleMatches, $textMatches );
442 }
443 $out->wrapWikiMsg( "<p class=\"mw-search-nonefound\">\n$1</p>", [
444 $hasOtherResults ? 'search-nonefound-thiswiki' : 'search-nonefound',
445 wfEscapeWikiText( $term )
446 ] );
447 }
448
449 if ( $hasOtherResults ) {
450 foreach ( $textMatches->getInterwikiResults( SearchResultSet::INLINE_RESULTS )
451 as $interwiki => $interwikiResult ) {
452 if ( $interwikiResult instanceof Status || $interwikiResult->numRows() == 0 ) {
453 // ignore bad interwikis for now
454 continue;
455 }
456 // TODO: wiki header
457 $out->addHTML( $this->showMatches( $interwikiResult, $interwiki ) );
458 }
459 }
460
461 if ( $textMatches ) {
462 $textMatches->free();
463 }
464
465 $out->addHTML( '<div class="mw-search-visualclear"></div>' );
466
467 if ( $prevnext ) {
468 $out->addHTML( "<p class='mw-search-pager-bottom'>{$prevnext}</p>\n" );
469 }
470
471 $out->addHTML( "</div>" );
472
473 Hooks::run( 'SpecialSearchResultsAppend', [ $this, $out, $term ] );
474 }
475
476 /**
477 * Produce wiki header for interwiki results
478 * @param string $interwiki Interwiki name
479 * @param SearchResultSet $interwikiResult The result set
480 * @return string
481 */
482 protected function interwikiHeader( $interwiki, $interwikiResult ) {
483 // TODO: we need to figure out how to name wikis correctly
484 $wikiMsg = $this->msg( 'search-interwiki-results-' . $interwiki )->parse();
485 return "<p class=\"mw-search-interwiki-header mw-search-visualclear\">\n$wikiMsg</p>";
486 }
487
488 /**
489 * Generates HTML shown to the user when we have a suggestion about a query
490 * that might give more results than their current query.
491 */
492 protected function getDidYouMeanHtml( SearchResultSet $textMatches ) {
493 # mirror Go/Search behavior of original request ..
494 $params = [ 'search' => $textMatches->getSuggestionQuery() ];
495 if ( $this->fulltext === null ) {
496 $params['fulltext'] = 'Search';
497 } else {
498 $params['fulltext'] = $this->fulltext;
499 }
500 $stParams = array_merge( $params, $this->powerSearchOptions() );
501
502 $linkRenderer = $this->getLinkRenderer();
503
504 $snippet = $textMatches->getSuggestionSnippet() ?: null;
505 if ( $snippet ) {
506 $snippet = new HtmlArmor( $snippet );
507 }
508
509 $suggest = $linkRenderer->makeKnownLink(
510 $this->getPageTitle(),
511 $snippet,
512 [ 'id' => 'mw-search-DYM-suggestion' ],
513 $stParams
514 );
515
516 # HTML of did you mean... search suggestion link
517 return Html::rawElement(
518 'div',
519 [ 'class' => 'searchdidyoumean' ],
520 $this->msg( 'search-suggest' )->rawParams( $suggest )->parse()
521 );
522 }
523
524 /**
525 * Generates HTML shown to user when their query has been internally rewritten,
526 * and the results of the rewritten query are being returned.
527 *
528 * @param string $term The users search input
529 * @param SearchResultSet $textMatches The response to the users initial search request
530 * @return string HTML linking the user to their original $term query, and the one
531 * suggested by $textMatches.
532 */
533 protected function getDidYouMeanRewrittenHtml( $term, SearchResultSet $textMatches ) {
534 // Showing results for '$rewritten'
535 // Search instead for '$orig'
536
537 $params = [ 'search' => $textMatches->getQueryAfterRewrite() ];
538 if ( $this->fulltext === null ) {
539 $params['fulltext'] = 'Search';
540 } else {
541 $params['fulltext'] = $this->fulltext;
542 }
543 $stParams = array_merge( $params, $this->powerSearchOptions() );
544
545 $linkRenderer = $this->getLinkRenderer();
546
547 $snippet = $textMatches->getQueryAfterRewriteSnippet() ?: null;
548 if ( $snippet ) {
549 $snippet = new HtmlArmor( $snippet );
550 }
551
552 $rewritten = $linkRenderer->makeKnownLink(
553 $this->getPageTitle(),
554 $snippet,
555 [ 'id' => 'mw-search-DYM-rewritten' ],
556 $stParams
557 );
558
559 $stParams['search'] = $term;
560 $stParams['runsuggestion'] = 0;
561 $original = $linkRenderer->makeKnownLink(
562 $this->getPageTitle(),
563 $term,
564 [ 'id' => 'mw-search-DYM-original' ],
565 $stParams
566 );
567
568 return Html::rawElement(
569 'div',
570 [ 'class' => 'searchdidyoumean' ],
571 $this->msg( 'search-rewritten' )->rawParams( $rewritten, $original )->escaped()
572 );
573 }
574
575 /**
576 * @param Title $title
577 * @param int $num The number of search results found
578 * @param null|SearchResultSet $titleMatches Results from title search
579 * @param null|SearchResultSet $textMatches Results from text search
580 */
581 protected function showCreateLink( $title, $num, $titleMatches, $textMatches ) {
582 // show direct page/create link if applicable
583
584 // Check DBkey !== '' in case of fragment link only.
585 if ( is_null( $title ) || $title->getDBkey() === ''
586 || ( $titleMatches !== null && $titleMatches->searchContainedSyntax() )
587 || ( $textMatches !== null && $textMatches->searchContainedSyntax() )
588 ) {
589 // invalid title
590 // preserve the paragraph for margins etc...
591 $this->getOutput()->addHTML( '<p></p>' );
592
593 return;
594 }
595
596 $messageName = 'searchmenu-new-nocreate';
597 $linkClass = 'mw-search-createlink';
598
599 if ( !$title->isExternal() ) {
600 if ( $title->isKnown() ) {
601 $messageName = 'searchmenu-exists';
602 $linkClass = 'mw-search-exists';
603 } elseif ( $title->quickUserCan( 'create', $this->getUser() ) ) {
604 $messageName = 'searchmenu-new';
605 }
606 }
607
608 $params = [
609 $messageName,
610 wfEscapeWikiText( $title->getPrefixedText() ),
611 Message::numParam( $num )
612 ];
613 Hooks::run( 'SpecialSearchCreateLink', [ $title, &$params ] );
614
615 // Extensions using the hook might still return an empty $messageName
616 if ( $messageName ) {
617 $this->getOutput()->wrapWikiMsg( "<p class=\"$linkClass\">\n$1</p>", $params );
618 } else {
619 // preserve the paragraph for margins etc...
620 $this->getOutput()->addHTML( '<p></p>' );
621 }
622 }
623
624 /**
625 * @param string $term
626 */
627 protected function setupPage( $term ) {
628 $out = $this->getOutput();
629 if ( strval( $term ) !== '' ) {
630 $out->setPageTitle( $this->msg( 'searchresults' ) );
631 $out->setHTMLTitle( $this->msg( 'pagetitle' )
632 ->rawParams( $this->msg( 'searchresults-title' )->rawParams( $term )->text() )
633 ->inContentLanguage()->text()
634 );
635 }
636 // add javascript specific to special:search
637 $out->addModules( 'mediawiki.special.search' );
638 }
639
640 /**
641 * Return true if current search is a power (advanced) search
642 *
643 * @return bool
644 */
645 protected function isPowerSearch() {
646 return $this->profile === 'advanced';
647 }
648
649 /**
650 * Extract "power search" namespace settings from the request object,
651 * returning a list of index numbers to search.
652 *
653 * @param WebRequest $request
654 * @return array
655 */
656 protected function powerSearch( &$request ) {
657 $arr = [];
658 foreach ( $this->searchConfig->searchableNamespaces() as $ns => $name ) {
659 if ( $request->getCheck( 'ns' . $ns ) ) {
660 $arr[] = $ns;
661 }
662 }
663
664 return $arr;
665 }
666
667 /**
668 * Reconstruct the 'power search' options for links
669 *
670 * @return array
671 */
672 protected function powerSearchOptions() {
673 $opt = [];
674 if ( !$this->isPowerSearch() ) {
675 $opt['profile'] = $this->profile;
676 } else {
677 foreach ( $this->namespaces as $n ) {
678 $opt['ns' . $n] = 1;
679 }
680 }
681
682 return $opt + $this->extraParams;
683 }
684
685 /**
686 * Save namespace preferences when we're supposed to
687 *
688 * @return bool Whether we wrote something
689 */
690 protected function saveNamespaces() {
691 $user = $this->getUser();
692 $request = $this->getRequest();
693
694 if ( $user->isLoggedIn() &&
695 $user->matchEditToken(
696 $request->getVal( 'nsRemember' ),
697 'searchnamespace',
698 $request
699 ) && !wfReadOnly()
700 ) {
701 // Reset namespace preferences: namespaces are not searched
702 // when they're not mentioned in the URL parameters.
703 foreach ( MWNamespace::getValidNamespaces() as $n ) {
704 $user->setOption( 'searchNs' . $n, false );
705 }
706 // The request parameters include all the namespaces to be searched.
707 // Even if they're the same as an existing profile, they're not eaten.
708 foreach ( $this->namespaces as $n ) {
709 $user->setOption( 'searchNs' . $n, true );
710 }
711
712 DeferredUpdates::addCallableUpdate( function () use ( $user ) {
713 $user->saveSettings();
714 } );
715
716 return true;
717 }
718
719 return false;
720 }
721
722 /**
723 * Show whole set of results
724 *
725 * @param SearchResultSet $matches
726 * @param string $interwiki Interwiki name
727 *
728 * @return string
729 */
730 protected function showMatches( $matches, $interwiki = null ) {
731 global $wgContLang;
732
733 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
734 $out = '';
735 $result = $matches->next();
736 $pos = $this->offset;
737
738 if ( $result && $interwiki ) {
739 $out .= $this->interwikiHeader( $interwiki, $matches );
740 }
741
742 $out .= "<ul class='mw-search-results'>\n";
743 while ( $result ) {
744 $out .= $this->showHit( $result, $terms, $pos++ );
745 $result = $matches->next();
746 }
747 $out .= "</ul>\n";
748
749 // convert the whole thing to desired language variant
750 $out = $wgContLang->convert( $out );
751
752 return $out;
753 }
754
755 /**
756 * Format a single hit result
757 *
758 * @param SearchResult $result
759 * @param array $terms Terms to highlight
760 * @param int $position Position within the search results, including offset.
761 *
762 * @return string
763 */
764 protected function showHit( SearchResult $result, $terms, $position ) {
765 if ( $result->isBrokenTitle() ) {
766 return '';
767 }
768
769 $title = $result->getTitle();
770
771 $titleSnippet = $result->getTitleSnippet();
772
773 if ( $titleSnippet == '' ) {
774 $titleSnippet = null;
775 }
776
777 $link_t = clone $title;
778 $query = [];
779
780 Hooks::run( 'ShowSearchHitTitle',
781 [ &$link_t, &$titleSnippet, $result, $terms, $this, &$query ] );
782
783 $linkRenderer = $this->getLinkRenderer();
784
785 $link = $linkRenderer->makeKnownLink(
786 $link_t,
787 new HtmlArmor( $titleSnippet ),
788 [ 'data-serp-pos' => $position ], // HTML attributes
789 $query
790 );
791
792 // If page content is not readable, just return the title.
793 // This is not quite safe, but better than showing excerpts from non-readable pages
794 // Note that hiding the entry entirely would screw up paging.
795 if ( !$title->userCan( 'read', $this->getUser() ) ) {
796 return "<li>{$link}</li>\n";
797 }
798
799 // If the page doesn't *exist*... our search index is out of date.
800 // The least confusing at this point is to drop the result.
801 // You may get less results, but... oh well. :P
802 if ( $result->isMissingRevision() ) {
803 return '';
804 }
805
806 // format redirects / relevant sections
807 $redirectTitle = $result->getRedirectTitle();
808 $redirectText = $result->getRedirectSnippet();
809 $sectionTitle = $result->getSectionTitle();
810 $sectionText = $result->getSectionSnippet();
811 $categorySnippet = $result->getCategorySnippet();
812
813 $redirect = '';
814 if ( !is_null( $redirectTitle ) ) {
815 if ( $redirectText == '' ) {
816 $redirectText = null;
817 }
818
819 $redirect = "<span class='searchalttitle'>" .
820 $this->msg( 'search-redirect' )->rawParams(
821 $linkRenderer->makeKnownLink( $redirectTitle, new HtmlArmor( $redirectText ) ) )->text() .
822 "</span>";
823 }
824
825 $section = '';
826 if ( !is_null( $sectionTitle ) ) {
827 if ( $sectionText == '' ) {
828 $sectionText = null;
829 }
830
831 $section = "<span class='searchalttitle'>" .
832 $this->msg( 'search-section' )->rawParams(
833 $linkRenderer->makeKnownLink( $sectionTitle, new HtmlArmor( $sectionText ) ) )->text() .
834 "</span>";
835 }
836
837 $category = '';
838 if ( $categorySnippet ) {
839 $category = "<span class='searchalttitle'>" .
840 $this->msg( 'search-category' )->rawParams( $categorySnippet )->text() .
841 "</span>";
842 }
843
844 // format text extract
845 $extract = "<div class='searchresult'>" . $result->getTextSnippet( $terms ) . "</div>";
846
847 $lang = $this->getLanguage();
848
849 // format description
850 $byteSize = $result->getByteSize();
851 $wordCount = $result->getWordCount();
852 $timestamp = $result->getTimestamp();
853 $size = $this->msg( 'search-result-size', $lang->formatSize( $byteSize ) )
854 ->numParams( $wordCount )->escaped();
855
856 if ( $title->getNamespace() == NS_CATEGORY ) {
857 $cat = Category::newFromTitle( $title );
858 $size = $this->msg( 'search-result-category-size' )
859 ->numParams( $cat->getPageCount(), $cat->getSubcatCount(), $cat->getFileCount() )
860 ->escaped();
861 }
862
863 $date = $lang->userTimeAndDate( $timestamp, $this->getUser() );
864
865 $fileMatch = '';
866 // Include a thumbnail for media files...
867 if ( $title->getNamespace() == NS_FILE ) {
868 $img = $result->getFile();
869 $img = $img ?: wfFindFile( $title );
870 if ( $result->isFileMatch() ) {
871 $fileMatch = "<span class='searchalttitle'>" .
872 $this->msg( 'search-file-match' )->escaped() . "</span>";
873 }
874 if ( $img ) {
875 $thumb = $img->transform( [ 'width' => 120, 'height' => 120 ] );
876 if ( $thumb ) {
877 $desc = $this->msg( 'parentheses' )->rawParams( $img->getShortDesc() )->escaped();
878 // Float doesn't seem to interact well with the bullets.
879 // Table messes up vertical alignment of the bullets.
880 // Bullets are therefore disabled (didn't look great anyway).
881 return "<li>" .
882 '<table class="searchResultImage">' .
883 '<tr>' .
884 '<td style="width: 120px; text-align: center; vertical-align: top;">' .
885 $thumb->toHtml( [ 'desc-link' => true ] ) .
886 '</td>' .
887 '<td style="vertical-align: top;">' .
888 "{$link} {$redirect} {$category} {$section} {$fileMatch}" .
889 $extract .
890 "<div class='mw-search-result-data'>{$desc} - {$date}</div>" .
891 '</td>' .
892 '</tr>' .
893 '</table>' .
894 "</li>\n";
895 }
896 }
897 }
898
899 $html = null;
900
901 $score = '';
902 $related = '';
903 if ( Hooks::run( 'ShowSearchHit', [
904 $this, $result, $terms,
905 &$link, &$redirect, &$section, &$extract,
906 &$score, &$size, &$date, &$related,
907 &$html
908 ] ) ) {
909 $html = "<li><div class='mw-search-result-heading'>" .
910 "{$link} {$redirect} {$category} {$section} {$fileMatch}</div> {$extract}\n" .
911 "<div class='mw-search-result-data'>{$size} - {$date}</div>" .
912 "</li>\n";
913 }
914
915 return $html;
916 }
917
918 /**
919 * Extract custom captions from search-interwiki-custom message
920 */
921 protected function getCustomCaptions() {
922 if ( is_null( $this->customCaptions ) ) {
923 $this->customCaptions = [];
924 // format per line <iwprefix>:<caption>
925 $customLines = explode( "\n", $this->msg( 'search-interwiki-custom' )->text() );
926 foreach ( $customLines as $line ) {
927 $parts = explode( ":", $line, 2 );
928 if ( count( $parts ) == 2 ) { // validate line
929 $this->customCaptions[$parts[0]] = $parts[1];
930 }
931 }
932 }
933 }
934
935 /**
936 * Show results from other wikis
937 *
938 * @param SearchResultSet|array $matches
939 * @param string $query
940 *
941 * @return string
942 */
943 protected function showInterwiki( $matches, $query ) {
944 global $wgContLang;
945
946 $out = "<div id='mw-search-interwiki'><div id='mw-search-interwiki-caption'>" .
947 $this->msg( 'search-interwiki-caption' )->text() . "</div>\n";
948 $out .= "<ul class='mw-search-iwresults'>\n";
949
950 // work out custom project captions
951 $this->getCustomCaptions();
952
953 if ( !is_array( $matches ) ) {
954 $matches = [ $matches ];
955 }
956
957 foreach ( $matches as $set ) {
958 $prev = null;
959 $result = $set->next();
960 while ( $result ) {
961 $out .= $this->showInterwikiHit( $result, $prev, $query );
962 $prev = $result->getInterwikiPrefix();
963 $result = $set->next();
964 }
965 }
966
967 // @todo Should support paging in a non-confusing way (not sure how though, maybe via ajax)..
968 $out .= "</ul></div>\n";
969
970 // convert the whole thing to desired language variant
971 $out = $wgContLang->convert( $out );
972
973 return $out;
974 }
975
976 /**
977 * Show single interwiki link
978 *
979 * @param SearchResult $result
980 * @param string $lastInterwiki
981 * @param string $query
982 *
983 * @return string
984 */
985 protected function showInterwikiHit( $result, $lastInterwiki, $query ) {
986 if ( $result->isBrokenTitle() ) {
987 return '';
988 }
989
990 $linkRenderer = $this->getLinkRenderer();
991
992 $title = $result->getTitle();
993
994 $titleSnippet = $result->getTitleSnippet();
995
996 if ( $titleSnippet == '' ) {
997 $titleSnippet = null;
998 }
999
1000 $link = $linkRenderer->makeKnownLink(
1001 $title,
1002 new HtmlArmor( $titleSnippet )
1003 );
1004
1005 // format redirect if any
1006 $redirectTitle = $result->getRedirectTitle();
1007 $redirectText = $result->getRedirectSnippet();
1008 $redirect = '';
1009 if ( !is_null( $redirectTitle ) ) {
1010 if ( $redirectText == '' ) {
1011 $redirectText = null;
1012 }
1013
1014 $redirect = "<span class='searchalttitle'>" .
1015 $this->msg( 'search-redirect' )->rawParams(
1016 $linkRenderer->makeKnownLink( $redirectTitle, new HtmlArmor( $redirectText ) ) )->text() .
1017 "</span>";
1018 }
1019
1020 $out = "";
1021 // display project name
1022 if ( is_null( $lastInterwiki ) || $lastInterwiki != $title->getInterwiki() ) {
1023 if ( array_key_exists( $title->getInterwiki(), $this->customCaptions ) ) {
1024 // captions from 'search-interwiki-custom'
1025 $caption = $this->customCaptions[$title->getInterwiki()];
1026 } else {
1027 // default is to show the hostname of the other wiki which might suck
1028 // if there are many wikis on one hostname
1029 $parsed = wfParseUrl( $title->getFullURL() );
1030 $caption = $this->msg( 'search-interwiki-default', $parsed['host'] )->text();
1031 }
1032 // "more results" link (special page stuff could be localized, but we might not know target lang)
1033 $searchTitle = Title::newFromText( $title->getInterwiki() . ":Special:Search" );
1034 $searchLink = $linkRenderer->makeKnownLink(
1035 $searchTitle,
1036 $this->msg( 'search-interwiki-more' )->text(),
1037 [],
1038 [
1039 'search' => $query,
1040 'fulltext' => 'Search'
1041 ]
1042 );
1043 $out .= "</ul><div class='mw-search-interwiki-project'><span class='mw-search-interwiki-more'>
1044 {$searchLink}</span>{$caption}</div>\n<ul>";
1045 }
1046
1047 $out .= "<li>{$link} {$redirect}</li>\n";
1048
1049 return $out;
1050 }
1051
1052 /**
1053 * Generates the power search box at [[Special:Search]]
1054 *
1055 * @param string $term Search term
1056 * @param array $opts
1057 * @return string HTML form
1058 */
1059 protected function powerSearchBox( $term, $opts ) {
1060 global $wgContLang;
1061
1062 // Groups namespaces into rows according to subject
1063 $rows = [];
1064 foreach ( $this->searchConfig->searchableNamespaces() as $namespace => $name ) {
1065 $subject = MWNamespace::getSubject( $namespace );
1066 if ( !array_key_exists( $subject, $rows ) ) {
1067 $rows[$subject] = "";
1068 }
1069
1070 $name = $wgContLang->getConverter()->convertNamespace( $namespace );
1071 if ( $name == '' ) {
1072 $name = $this->msg( 'blanknamespace' )->text();
1073 }
1074
1075 $rows[$subject] .=
1076 Xml::openElement( 'td' ) .
1077 Xml::checkLabel(
1078 $name,
1079 "ns{$namespace}",
1080 "mw-search-ns{$namespace}",
1081 in_array( $namespace, $this->namespaces )
1082 ) .
1083 Xml::closeElement( 'td' );
1084 }
1085
1086 $rows = array_values( $rows );
1087 $numRows = count( $rows );
1088
1089 // Lays out namespaces in multiple floating two-column tables so they'll
1090 // be arranged nicely while still accommodating different screen widths
1091 $namespaceTables = '';
1092 for ( $i = 0; $i < $numRows; $i += 4 ) {
1093 $namespaceTables .= Xml::openElement( 'table' );
1094
1095 for ( $j = $i; $j < $i + 4 && $j < $numRows; $j++ ) {
1096 $namespaceTables .= Xml::tags( 'tr', null, $rows[$j] );
1097 }
1098
1099 $namespaceTables .= Xml::closeElement( 'table' );
1100 }
1101
1102 $showSections = [ 'namespaceTables' => $namespaceTables ];
1103
1104 Hooks::run( 'SpecialSearchPowerBox', [ &$showSections, $term, $opts ] );
1105
1106 $hidden = '';
1107 foreach ( $opts as $key => $value ) {
1108 $hidden .= Html::hidden( $key, $value );
1109 }
1110
1111 # Stuff to feed saveNamespaces()
1112 $remember = '';
1113 $user = $this->getUser();
1114 if ( $user->isLoggedIn() ) {
1115 $remember .= Xml::checkLabel(
1116 $this->msg( 'powersearch-remember' )->text(),
1117 'nsRemember',
1118 'mw-search-powersearch-remember',
1119 false,
1120 // The token goes here rather than in a hidden field so it
1121 // is only sent when necessary (not every form submission).
1122 [ 'value' => $user->getEditToken(
1123 'searchnamespace',
1124 $this->getRequest()
1125 ) ]
1126 );
1127 }
1128
1129 // Return final output
1130 return Xml::openElement( 'fieldset', [ 'id' => 'mw-searchoptions' ] ) .
1131 Xml::element( 'legend', null, $this->msg( 'powersearch-legend' )->text() ) .
1132 Xml::tags( 'h4', null, $this->msg( 'powersearch-ns' )->parse() ) .
1133 Xml::element( 'div', [ 'id' => 'mw-search-togglebox' ], '', false ) .
1134 Xml::element( 'div', [ 'class' => 'divider' ], '', false ) .
1135 implode( Xml::element( 'div', [ 'class' => 'divider' ], '', false ), $showSections ) .
1136 $hidden .
1137 Xml::element( 'div', [ 'class' => 'divider' ], '', false ) .
1138 $remember .
1139 Xml::closeElement( 'fieldset' );
1140 }
1141
1142 /**
1143 * @return array
1144 */
1145 protected function getSearchProfiles() {
1146 // Builds list of Search Types (profiles)
1147 $nsAllSet = array_keys( $this->searchConfig->searchableNamespaces() );
1148 $defaultNs = $this->searchConfig->defaultNamespaces();
1149 $profiles = [
1150 'default' => [
1151 'message' => 'searchprofile-articles',
1152 'tooltip' => 'searchprofile-articles-tooltip',
1153 'namespaces' => $defaultNs,
1154 'namespace-messages' => $this->searchConfig->namespacesAsText(
1155 $defaultNs
1156 ),
1157 ],
1158 'images' => [
1159 'message' => 'searchprofile-images',
1160 'tooltip' => 'searchprofile-images-tooltip',
1161 'namespaces' => [ NS_FILE ],
1162 ],
1163 'all' => [
1164 'message' => 'searchprofile-everything',
1165 'tooltip' => 'searchprofile-everything-tooltip',
1166 'namespaces' => $nsAllSet,
1167 ],
1168 'advanced' => [
1169 'message' => 'searchprofile-advanced',
1170 'tooltip' => 'searchprofile-advanced-tooltip',
1171 'namespaces' => self::NAMESPACES_CURRENT,
1172 ]
1173 ];
1174
1175 Hooks::run( 'SpecialSearchProfiles', [ &$profiles ] );
1176
1177 foreach ( $profiles as &$data ) {
1178 if ( !is_array( $data['namespaces'] ) ) {
1179 continue;
1180 }
1181 sort( $data['namespaces'] );
1182 }
1183
1184 return $profiles;
1185 }
1186
1187 /**
1188 * @param string $term
1189 * @return string
1190 */
1191 protected function searchProfileTabs( $term ) {
1192 $out = Html::element( 'div', [ 'class' => 'mw-search-visualclear' ] ) .
1193 Xml::openElement( 'div', [ 'class' => 'mw-search-profile-tabs' ] );
1194
1195 $bareterm = $term;
1196 if ( $this->startsWithImage( $term ) ) {
1197 // Deletes prefixes
1198 $bareterm = substr( $term, strpos( $term, ':' ) + 1 );
1199 }
1200
1201 $profiles = $this->getSearchProfiles();
1202 $lang = $this->getLanguage();
1203
1204 // Outputs XML for Search Types
1205 $out .= Xml::openElement( 'div', [ 'class' => 'search-types' ] );
1206 $out .= Xml::openElement( 'ul' );
1207 foreach ( $profiles as $id => $profile ) {
1208 if ( !isset( $profile['parameters'] ) ) {
1209 $profile['parameters'] = [];
1210 }
1211 $profile['parameters']['profile'] = $id;
1212
1213 $tooltipParam = isset( $profile['namespace-messages'] ) ?
1214 $lang->commaList( $profile['namespace-messages'] ) : null;
1215 $out .= Xml::tags(
1216 'li',
1217 [
1218 'class' => $this->profile === $id ? 'current' : 'normal'
1219 ],
1220 $this->makeSearchLink(
1221 $bareterm,
1222 [],
1223 $this->msg( $profile['message'] )->text(),
1224 $this->msg( $profile['tooltip'], $tooltipParam )->text(),
1225 $profile['parameters']
1226 )
1227 );
1228 }
1229 $out .= Xml::closeElement( 'ul' );
1230 $out .= Xml::closeElement( 'div' );
1231 $out .= Xml::element( 'div', [ 'style' => 'clear:both' ], '', false );
1232 $out .= Xml::closeElement( 'div' );
1233
1234 return $out;
1235 }
1236
1237 /**
1238 * @param string $term Search term
1239 * @return string
1240 */
1241 protected function searchOptions( $term ) {
1242 $out = '';
1243 $opts = [];
1244 $opts['profile'] = $this->profile;
1245
1246 if ( $this->isPowerSearch() ) {
1247 $out .= $this->powerSearchBox( $term, $opts );
1248 } else {
1249 $form = '';
1250 Hooks::run( 'SpecialSearchProfileForm', [ $this, &$form, $this->profile, $term, $opts ] );
1251 $out .= $form;
1252 }
1253
1254 return $out;
1255 }
1256
1257 /**
1258 * @param string $term
1259 * @param int $resultsShown
1260 * @param int $totalNum
1261 * @return string
1262 */
1263 protected function shortDialog( $term, $resultsShown, $totalNum ) {
1264 $searchWidget = new MediaWiki\Widget\SearchInputWidget( [
1265 'id' => 'searchText',
1266 'name' => 'search',
1267 'autofocus' => trim( $term ) === '',
1268 'value' => $term,
1269 'dataLocation' => 'content',
1270 'infusable' => true,
1271 ] );
1272
1273 $layout = new OOUI\ActionFieldLayout( $searchWidget, new OOUI\ButtonInputWidget( [
1274 'type' => 'submit',
1275 'label' => $this->msg( 'searchbutton' )->text(),
1276 'flags' => [ 'progressive', 'primary' ],
1277 ] ), [
1278 'align' => 'top',
1279 ] );
1280
1281 $out =
1282 Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
1283 Html::hidden( 'profile', $this->profile ) .
1284 Html::hidden( 'fulltext', 'Search' ) .
1285 $layout;
1286
1287 // Results-info
1288 if ( $totalNum > 0 && $this->offset < $totalNum ) {
1289 $top = $this->msg( 'search-showingresults' )
1290 ->numParams( $this->offset + 1, $this->offset + $resultsShown, $totalNum )
1291 ->numParams( $resultsShown )
1292 ->parse();
1293 $out .= Xml::tags( 'div', [ 'class' => 'results-info' ], $top );
1294 }
1295
1296 return $out;
1297 }
1298
1299 /**
1300 * Make a search link with some target namespaces
1301 *
1302 * @param string $term
1303 * @param array $namespaces Ignored
1304 * @param string $label Link's text
1305 * @param string $tooltip Link's tooltip
1306 * @param array $params Query string parameters
1307 * @return string HTML fragment
1308 */
1309 protected function makeSearchLink( $term, $namespaces, $label, $tooltip, $params = [] ) {
1310 $opt = $params;
1311 foreach ( $namespaces as $n ) {
1312 $opt['ns' . $n] = 1;
1313 }
1314
1315 $stParams = array_merge(
1316 [
1317 'search' => $term,
1318 'fulltext' => $this->msg( 'search' )->text()
1319 ],
1320 $opt
1321 );
1322
1323 return Xml::element(
1324 'a',
1325 [
1326 'href' => $this->getPageTitle()->getLocalURL( $stParams ),
1327 'title' => $tooltip
1328 ],
1329 $label
1330 );
1331 }
1332
1333 /**
1334 * Check if query starts with image: prefix
1335 *
1336 * @param string $term The string to check
1337 * @return bool
1338 */
1339 protected function startsWithImage( $term ) {
1340 global $wgContLang;
1341
1342 $parts = explode( ':', $term );
1343 if ( count( $parts ) > 1 ) {
1344 return $wgContLang->getNsIndex( $parts[0] ) == NS_FILE;
1345 }
1346
1347 return false;
1348 }
1349
1350 /**
1351 * @since 1.18
1352 *
1353 * @return SearchEngine
1354 */
1355 public function getSearchEngine() {
1356 if ( $this->searchEngine === null ) {
1357 $this->searchEngine = $this->searchEngineType ?
1358 MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $this->searchEngineType ) :
1359 MediaWikiServices::getInstance()->newSearchEngine();
1360 }
1361
1362 return $this->searchEngine;
1363 }
1364
1365 /**
1366 * Current search profile.
1367 * @return null|string
1368 */
1369 function getProfile() {
1370 return $this->profile;
1371 }
1372
1373 /**
1374 * Current namespaces.
1375 * @return array
1376 */
1377 function getNamespaces() {
1378 return $this->namespaces;
1379 }
1380
1381 /**
1382 * Users of hook SpecialSearchSetupEngine can use this to
1383 * add more params to links to not lose selection when
1384 * user navigates search results.
1385 * @since 1.18
1386 *
1387 * @param string $key
1388 * @param mixed $value
1389 */
1390 public function setExtraParam( $key, $value ) {
1391 $this->extraParams[$key] = $value;
1392 }
1393
1394 protected function getGroupName() {
1395 return 'pages';
1396 }
1397 }