MediaWiki  1.33.0
DidYouMeanWidget.php
Go to the documentation of this file.
1 <?php
2 
4 
8 
15  protected $specialSearch;
16 
18  $this->specialSearch = $specialSearch;
19  }
20 
26  public function render( $term, SearchResultSet $resultSet ) {
27  if ( $resultSet->hasRewrittenQuery() ) {
28  $html = $this->rewrittenHtml( $term, $resultSet );
29  } elseif ( $resultSet->hasSuggestion() ) {
30  $html = $this->suggestionHtml( $resultSet );
31  } else {
32  return '';
33  }
34 
35  return "<div class='searchdidyoumean'>$html</div>";
36  }
37 
47  protected function rewrittenHtml( $term, SearchResultSet $resultSet ) {
48  $params = [
49  'search' => $resultSet->getQueryAfterRewrite(),
50  // Don't magic this link into a 'go' link, it should always
51  // show search results.
52  'fulltext' => 1,
53  ];
54  $stParams = array_merge( $params, $this->specialSearch->powerSearchOptions() );
55 
56  $linkRenderer = $this->specialSearch->getLinkRenderer();
57  $snippet = $resultSet->getQueryAfterRewriteSnippet();
58  $rewritten = $linkRenderer->makeKnownLink(
59  $this->specialSearch->getPageTitle(),
60  $snippet ? new HtmlArmor( $snippet ) : null,
61  [ 'id' => 'mw-search-DYM-rewritten' ],
62  $stParams
63  );
64 
65  $stParams['search'] = $term;
66  $stParams['runsuggestion'] = 0;
67  $original = $linkRenderer->makeKnownLink(
68  $this->specialSearch->getPageTitle(),
69  $term,
70  [ 'id' => 'mw-search-DYM-original' ],
71  $stParams
72  );
73 
74  return $this->specialSearch->msg( 'search-rewritten' )
75  ->rawParams( $rewritten, $original )
76  ->escaped();
77  }
78 
87  protected function suggestionHtml( SearchResultSet $resultSet ) {
88  $params = [
89  'search' => $resultSet->getSuggestionQuery(),
90  'fulltext' => 1,
91  ];
92  $stParams = array_merge( $params, $this->specialSearch->powerSearchOptions() );
93 
94  $snippet = $resultSet->getSuggestionSnippet();
95  $suggest = $this->specialSearch->getLinkRenderer()->makeKnownLink(
96  $this->specialSearch->getPageTitle(),
97  $snippet ? new HtmlArmor( $snippet ) : null,
98  [ 'id' => 'mw-search-DYM-suggestion' ],
99  $stParams
100  );
101 
102  return $this->specialSearch->msg( 'search-suggest' )
103  ->rawParams( $suggest )->parse();
104  }
105 }
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
SearchResultSet\getQueryAfterRewrite
getQueryAfterRewrite()
Definition: SearchResultSet.php:142
MediaWiki\Widget\Search
Definition: BasicSearchResultSetWidget.php:3
MediaWiki\Widget\Search\DidYouMeanWidget\suggestionHtml
suggestionHtml(SearchResultSet $resultSet)
Generates HTML shown to the user when we have a suggestion about a query that might give more/better ...
Definition: DidYouMeanWidget.php:87
$params
$params
Definition: styleTest.css.php:44
$linkRenderer
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition: hooks.txt:1985
MediaWiki\Widget\Search\DidYouMeanWidget\render
render( $term, SearchResultSet $resultSet)
Definition: DidYouMeanWidget.php:26
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1985
MediaWiki\Widget\Search\DidYouMeanWidget\__construct
__construct(SpecialSearch $specialSearch)
Definition: DidYouMeanWidget.php:17
MediaWiki\Widget\Search\DidYouMeanWidget
Renders a suggested search for the user, or tells the user a suggested search was run instead of the ...
Definition: DidYouMeanWidget.php:13
MediaWiki\Widget\Search\DidYouMeanWidget\$specialSearch
SpecialSearch $specialSearch
Definition: DidYouMeanWidget.php:15
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
SearchResultSet
Definition: SearchResultSet.php:27
$term
whereas SearchGetNearMatch runs after $term
Definition: hooks.txt:2878
SearchResultSet\hasSuggestion
hasSuggestion()
Some search modes return a suggested alternate term if there are no exact hits.
Definition: SearchResultSet.php:160
SearchResultSet\getSuggestionSnippet
getSuggestionSnippet()
Definition: SearchResultSet.php:174
SpecialSearch
implements Special:Search - Run text & title search and display the output
Definition: SpecialSearch.php:38
MediaWiki\Widget\Search\DidYouMeanWidget\rewrittenHtml
rewrittenHtml( $term, SearchResultSet $resultSet)
Generates HTML shown to user when their query has been internally rewritten, and the results of the r...
Definition: DidYouMeanWidget.php:47
SearchResultSet\hasRewrittenQuery
hasRewrittenQuery()
Some search modes will run an alternative query that it thinks gives a better result than the provide...
Definition: SearchResultSet.php:134
SearchResultSet\getQueryAfterRewriteSnippet
getQueryAfterRewriteSnippet()
Definition: SearchResultSet.php:150
SearchResultSet\getSuggestionQuery
getSuggestionQuery()
Definition: SearchResultSet.php:167