MediaWiki REL1_39
BasicSearchResultSetWidget.php
Go to the documentation of this file.
1<?php
2
4
7use Message;
9use Status;
10
17 protected $specialPage;
19 protected $resultWidget;
21 protected $sidebarWidget;
22
23 public function __construct(
27 ) {
28 $this->specialPage = $specialPage;
29 $this->resultWidget = $resultWidget;
30 $this->sidebarWidget = $sidebarWidget;
31 }
32
40 public function render(
41 $term,
42 $offset,
43 ISearchResultSet $titleResultSet = null,
44 ISearchResultSet $textResultSet = null
45 ) {
46 $hasTitle = $titleResultSet ? $titleResultSet->numRows() > 0 : false;
47 $hasText = $textResultSet ? $textResultSet->numRows() > 0 : false;
48 $hasSecondary = $textResultSet
49 ? $textResultSet->hasInterwikiResults( ISearchResultSet::SECONDARY_RESULTS )
50 : false;
51 $hasSecondaryInline = $textResultSet
52 ? $textResultSet->hasInterwikiResults( ISearchResultSet::INLINE_RESULTS )
53 : false;
54
55 if ( !$hasTitle && !$hasText && !$hasSecondary && !$hasSecondaryInline ) {
56 return '';
57 }
58
59 $out = '';
60
61 if ( $hasTitle ) {
62 $out .= $this->header( $this->specialPage->msg( 'titlematches' ) )
63 // @phan-suppress-next-line PhanTypeMismatchArgumentNullable titleResultSet is set when used here
64 . $this->renderResultSet( $titleResultSet, $offset );
65 }
66
67 if ( $hasText ) {
68 if ( $hasTitle ) {
69 $out .= "<div class='mw-search-visualclear'></div>" .
70 $this->header( $this->specialPage->msg( 'textmatches' ) );
71 }
72 // @phan-suppress-next-line PhanTypeMismatchArgumentNullable textResultSet is set when used
73 $out .= $this->renderResultSet( $textResultSet, $offset );
74 }
75
76 if ( $hasSecondaryInline ) {
77 $iwResults = $textResultSet->getInterwikiResults( ISearchResultSet::INLINE_RESULTS );
78 foreach ( $iwResults as $interwiki => $results ) {
79 if ( $results instanceof Status || $results->numRows() === 0 ) {
80 // ignore bad interwikis for now
81 continue;
82 }
83 $out .=
84 "<h2 class='mw-search-interwiki-header mw-search-visualclear'>" .
85 $this->specialPage->msg( "search-interwiki-results-{$interwiki}" )->parse() .
86 "</h2>";
87 $out .= $this->renderResultSet( $results, $offset );
88 }
89 }
90
91 if ( $hasSecondary ) {
92 $out .= $this->sidebarWidget->render(
93 $term,
94 $textResultSet->getInterwikiResults( ISearchResultSet::SECONDARY_RESULTS )
95 );
96 }
97
98 // Convert the whole thing to desired language variant
99 // TODO: Move this up to Special:Search?
100 $converter = MediaWikiServices::getInstance()->getLanguageConverterFactory()
101 ->getLanguageConverter();
102 return $converter->convert( $out );
103 }
104
113 protected function header( Message $msg ) {
114 return "<h2>" .
115 "<span class='mw-headline'>" . $msg->escaped() . "</span>" .
116 "</h2>";
117 }
118
124 protected function renderResultSet( ISearchResultSet $resultSet, $offset ) {
125 $hits = [];
126 foreach ( $resultSet as $result ) {
127 $hits[] = $this->resultWidget->render( $result, $offset++ );
128 }
129
130 return "<ul class='mw-search-results'>" . implode( '', $hits ) . "</ul>";
131 }
132}
Service locator for MediaWiki core services.
static getInstance()
Returns the global default instance of the top level service locator.
header(Message $msg)
Generate a headline for a section of the search results.
__construct(SpecialSearch $specialPage, SearchResultWidget $resultWidget, SearchResultSetWidget $sidebarWidget)
render( $term, $offset, ISearchResultSet $titleResultSet=null, ISearchResultSet $textResultSet=null)
Renders one or more ISearchResultSets into a sidebar grouped by interwiki prefix.
The Message class deals with fetching and processing of interface message into a variety of formats.
Definition Message.php:140
escaped()
Returns the message text.
Definition Message.php:1086
implements Special:Search - Run text & title search and display the output
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:44
A set of SearchEngine results.
Renders a single search result to HTML.