3 namespace MediaWiki\Widget\Search
;
7 use MediaWiki\Widget\SearchInputWidget
;
9 use SearchEngineConfig
;
13 class SearchFormWidget
{
14 /** @var SpecialSearch */
15 protected $specialSearch;
16 /** @var SearchEngineConfig */
17 protected $searchConfig;
22 * @param SpecialSearch $specialSearch
23 * @param SearchEngineConfig $searchConfig
24 * @param array $profiles
26 public function __construct(
27 SpecialSearch
$specialSearch,
28 SearchEngineConfig
$searchConfig,
31 $this->specialSearch
= $specialSearch;
32 $this->searchConfig
= $searchConfig;
33 $this->profiles
= $profiles;
37 * @param string $profile The current search profile
38 * @param string $term The current search term
39 * @param int $numResults The number of results shown
40 * @param int $totalResults The total estimated results found
41 * @param int $offset Current offset in search results
42 * @param bool $isPowerSearch Is the 'advanced' section open?
45 public function render(
53 return Xml
::openElement(
56 'id' => $isPowerSearch ?
'powersearch' : 'search',
58 'action' => wfScript(),
61 '<div id="mw-search-top-table">' .
62 $this->shortDialogHtml( $profile, $term, $numResults, $totalResults, $offset ) .
64 "<div class='mw-search-visualclear'></div>" .
65 "<div class='mw-search-profile-tabs'>" .
66 $this->profileTabsHtml( $profile, $term ) .
67 "<div style='clear:both'></div>" .
69 $this->optionsHtml( $term, $isPowerSearch, $profile ) .
74 * @param string $profile The current search profile
75 * @param string $term The current search term
76 * @param int $numResults The number of results shown
77 * @param int $totalResults The total estimated results found
78 * @param int $offset Current offset in search results
81 protected function shortDialogHtml( $profile, $term, $numResults, $totalResults, $offset ) {
82 $searchWidget = new SearchInputWidget( [
85 'autofocus' => trim( $term ) === '',
87 'dataLocation' => 'content',
91 $layout = new \OOUI\
ActionFieldLayout( $searchWidget, new \OOUI\
ButtonInputWidget( [
93 'label' => $this->specialSearch
->msg( 'searchbutton' )->text(),
94 'flags' => [ 'progressive', 'primary' ],
100 Html
::hidden( 'title', $this->specialSearch
->getPageTitle()->getPrefixedText() ) .
101 Html
::hidden( 'profile', $profile ) .
102 Html
::hidden( 'fulltext', '1' ) .
105 if ( $totalResults > 0 && $offset < $totalResults ) {
108 [ 'class' => 'results-info' ],
109 $this->specialSearch
->msg( 'search-showingresults' )
110 ->numParams( $offset +
1, $offset +
$numResults, $totalResults )
111 ->numParams( $numResults )
120 * Generates HTML for the list of available search profiles.
122 * @param string $profile The currently selected profile
123 * @param string $term The user provided search terms
124 * @return string HTML
126 protected function profileTabsHtml( $profile, $term ) {
127 $bareterm = $this->startsWithImage( $term )
128 ?
substr( $term, strpos( $term, ':' ) +
1 )
130 $lang = $this->specialSearch
->getLanguage();
132 foreach ( $this->profiles
as $id => $profileConfig ) {
133 $profileConfig['parameters']['profile'] = $id;
134 $tooltipParam = isset( $profileConfig['namespace-messages'] )
135 ?
$lang->commaList( $profileConfig['namespace-messages'] )
137 $items[] = Xml
::tags(
139 [ 'class' => $profile === $id ?
'current' : 'normal' ],
140 $this->makeSearchLink(
142 $this->specialSearch
->msg( $profileConfig['message'] )->text(),
143 $this->specialSearch
->msg( $profileConfig['tooltip'], $tooltipParam )->text(),
144 $profileConfig['parameters']
150 "<div class='search-types'>" .
151 "<ul>" . implode( '', $items ) . "</ul>" .
156 * Check if query starts with image: prefix
158 * @param string $term The string to check
161 protected function startsWithImage( $term ) {
164 $parts = explode( ':', $term );
165 return count( $parts ) > 1
166 ?
$wgContLang->getNsIndex( $parts[0] ) === NS_FILE
171 * Make a search link with some target namespaces
173 * @param string $term The term to search for
174 * @param string $label Link's text
175 * @param string $tooltip Link's tooltip
176 * @param array $params Query string parameters
177 * @return string HTML fragment
179 protected function makeSearchLink( $term, $label, $tooltip, array $params = [] ) {
188 'href' => $this->specialSearch
->getPageTitle()->getLocalURL( $params ),
196 * Generates HTML for advanced options available with the currently
197 * selected search profile.
199 * @param string $term User provided search term
200 * @param bool $isPowerSearch Is the advanced search profile enabled?
201 * @param string $profile The current search profile
202 * @return string HTML
204 protected function optionsHtml( $term, $isPowerSearch, $profile ) {
207 'profile' => $profile,
210 if ( $isPowerSearch ) {
211 $html .= $this->powerSearchBox( $term, $opts );
214 Hooks
::run( 'SpecialSearchProfileForm', [
215 $this->specialSearch
, &$form, $profile, $term, $opts
224 * @param string $term The current search term
225 * @param array $opts Additional key/value pairs that will be submitted
226 * with the generated form.
227 * @return string HTML
229 protected function powerSearchBox( $term, array $opts ) {
233 $activeNamespaces = $this->specialSearch
->getNamespaces();
234 foreach ( $this->searchConfig
->searchableNamespaces() as $namespace => $name ) {
235 $subject = MWNamespace
::getSubject( $namespace );
236 if ( !isset( $rows[$subject] ) ) {
237 $rows[$subject] = "";
240 $name = $wgContLang->getConverter()->convertNamespace( $namespace );
241 if ( $name === '' ) {
242 $name = $this->specialSearch
->msg( 'blanknamespace' )->text();
250 "mw-search-ns{$namespace}",
251 in_array( $namespace, $activeNamespaces )
256 // Lays out namespaces in multiple floating two-column tables so they'll
257 // be arranged nicely while still accomodating diferent screen widths
259 foreach ( $rows as $row ) {
260 $tableRows[] = "<tr>{$row}</tr>";
262 $namespaceTables = [];
263 foreach ( array_chunk( $tableRows, 4 ) as $chunk ) {
264 $namespaceTables[] = implode( '', $chunk );
268 'namespaceTables' => "<table>" . implode( '</table><table>', $namespaceTables ) . '</table>',
270 Hooks
::run( 'SpecialSearchPowerBox', [ &$showSections, $term, $opts ] );
273 foreach ( $opts as $key => $value ) {
274 $hidden .= Html
::hidden( $key, $value );
277 $divider = "<div class='divider'></div>";
279 // Stuff to feed SpecialSearch::saveNamespaces()
280 $user = $this->specialSearch
->getUser();
282 if ( $user->isLoggedIn() ) {
283 $remember = $divider . Xml
::checkLabel(
284 $this->specialSearch
->msg( 'powersearch-remember' )->text(),
286 'mw-search-powersearch-remember',
288 // The token goes here rather than in a hidden field so it
289 // is only sent when necessary (not every form submission)
290 [ 'value' => $user->getEditToken(
292 $this->specialSearch
->getRequest()
298 "<fieldset id='mw-searchoptions'>" .
299 "<legend>" . $this->specialSearch
->msg( 'powersearch-legend' )->escaped() . '</legend>' .
300 "<h4>" . $this->specialSearch
->msg( 'powersearch-ns' )->parse() . '</h4>' .
301 // populated by js if available
302 "<div id='mw-search-togglebox'></div>" .