3 namespace MediaWiki\Widget\Search
;
8 use MediaWiki\Linker\LinkRenderer
;
14 * Renders a 'full' multi-line search result with metadata.
17 * some *highlighted* *text* about the search result
18 * 5KB (651 words) - 12:40, 6 Aug 2016
20 class FullSearchResultWidget
implements SearchResultWidget
{
21 /** @var SpecialSearch */
22 protected $specialPage;
23 /** @var LinkRenderer */
24 protected $linkRenderer;
26 public function __construct( SpecialSearch
$specialPage, LinkRenderer
$linkRenderer ) {
27 $this->specialPage
= $specialPage;
28 $this->linkRenderer
= $linkRenderer;
32 * @param SearchResult $result The result to render
33 * @param string $terms Terms to be highlighted (@see SearchResult::getTextSnippet)
34 * @param int $position The result position, including offset
37 public function render( SearchResult
$result, $terms, $position ) {
38 // If the page doesn't *exist*... our search index is out of date.
39 // The least confusing at this point is to drop the result.
40 // You may get less results, but... on well. :P
41 if ( $result->isBrokenTitle() ||
$result->isMissingRevision() ) {
45 $link = $this->generateMainLinkHtml( $result, $terms, $position );
46 // If page content is not readable, just return ths title.
47 // This is not quite safe, but better than showing excerpts from
48 // non-readable pages. Note that hiding the entry entirely would
49 // screw up paging (really?).
50 if ( !$result->getTitle()->userCan( 'read', $this->specialPage
->getUser() ) ) {
51 return "<li>{$link}</li>";
54 $redirect = $this->generateRedirectHtml( $result );
55 $section = $this->generateSectionHtml( $result );
56 $category = $this->generateCategoryHtml( $result );
57 $date = $this->specialPage
->getLanguage()->userTimeAndDate(
58 $result->getTimestamp(),
59 $this->specialPage
->getUser()
61 list( $file, $desc, $thumb ) = $this->generateFileHtml( $result );
62 $snippet = $result->getTextSnippet( $terms );
64 $extract = "<div class='searchresult'>$snippet</div>";
69 if ( $thumb === null ) {
70 // If no thumb, then the description is about size
71 $desc = $this->generateSizeHtml( $result );
73 // Let hooks do their own final construction if desired.
74 // FIXME: Not sure why this is only for results without thumbnails,
75 // but keeping it as-is for now to prevent breaking hook consumers.
79 if ( !Hooks
::run( 'ShowSearchHit', [
80 $this->specialPage
, $result, $terms,
81 &$link, &$redirect, &$section, &$extract,
82 &$score, &$size, &$date, &$related, &$html
88 // All the pieces have been collected. Now generate the final HTML
89 $joined = "{$link} {$redirect} {$category} {$section} {$file}";
90 $meta = $this->buildMeta( $desc, $date );
92 if ( $thumb === null ) {
94 "<div class='mw-search-result-heading'>{$joined}</div>" .
98 "<table class='searchResultImage'>" .
100 "<td style='width: 120px; text-align: center; vertical-align: top'>" .
103 "<td style='vertical-align: top'>" .
104 "{$joined} {$extract} {$meta}" .
110 return "<li>{$html}</li>";
114 * Generates HTML for the primary call to action. It is
115 * typically the article title, but the search engine can
116 * return an exact snippet to use (typically the article
117 * title with highlighted words).
119 * @param SearchResult $result
120 * @param string $terms
121 * @param int $position
122 * @return string HTML
124 protected function generateMainLinkHtml( SearchResult
$result, $terms, $position ) {
125 $snippet = $result->getTitleSnippet();
126 if ( $snippet === '' ) {
129 $snippet = new HtmlArmor( $snippet );
132 // clone to prevent hook from changing the title stored inside $result
133 $title = clone $result->getTitle();
136 Hooks
::run( 'ShowSearchHitTitle',
137 [ &$title, &$snippet, $result, $terms, $this->specialPage
, &$query ] );
139 $link = $this->linkRenderer
->makeLink(
142 [ 'data-serp-pos' => $position ],
150 * Generates an alternate title link, such as (redirect from <a>Foo</a>).
152 * @param string $msgKey i18n message used to wrap title
153 * @param Title|null $title The title to link to, or null to generate
154 * the message without a link. In that case $text must be non-null.
155 * @param string|null $text The text snippet to display, or null
157 * @return string HTML
159 protected function generateAltTitleHtml( $msgKey, Title
$title = null, $text ) {
160 $inner = $title === null
162 : $this->linkRenderer
->makeLink( $title, $text ?
new HtmlArmor( $text ) : null );
164 return "<span class='searchalttitle'>" .
165 $this->specialPage
->msg( $msgKey )->rawParams( $inner )->text()
170 * @param SearchResult $result
171 * @return string HTML
173 protected function generateRedirectHtml( SearchResult
$result ) {
174 $title = $result->getRedirectTitle();
175 return $title === null
177 : $this->generateAltTitleHtml( 'search-redirect', $title, $result->getRedirectSnippet() );
181 * @param SearchResult $result
182 * @return string HTML
184 protected function generateSectionHtml( SearchResult
$result ) {
185 $title = $result->getSectionTitle();
186 return $title === null
188 : $this->generateAltTitleHtml( 'search-section', $title, $result->getSectionSnippet() );
192 * @param SearchResult $result
193 * @return string HTML
195 protected function generateCategoryHtml( SearchResult
$result ) {
196 $snippet = $result->getCategorySnippet();
198 ?
$this->generateAltTitleHtml( 'search-category', null, $snippet )
203 * @param SearchResult $result
204 * @return string HTML
206 protected function generateSizeHtml( SearchResult
$result ) {
207 $title = $result->getTitle();
208 if ( $title->getNamespace() === NS_CATEGORY
) {
209 $cat = Category
::newFromTitle( $title );
210 return $this->specialPage
->msg( 'search-result-category-size' )
211 ->numParams( $cat->getPageCount(), $cat->getSubcatCount(), $cat->getFileCount() )
213 // TODO: This is a bit odd...but requires changing the i18n message to fix
214 } elseif ( $result->getByteSize() !== null ||
$result->getWordCount() > 0 ) {
215 $lang = $this->specialPage
->getLanguage();
216 $bytes = $lang->formatSize( $result->getByteSize() );
217 $words = $result->getWordCount();
219 return $this->specialPage
->msg( 'search-result-size', $bytes )
220 ->numParams( $words )
228 * @param SearchResult $result
229 * @return array Three element array containing the main file html,
230 * a text description of the file, and finally the thumbnail html.
231 * If no thumbnail is available the second and third will be null.
233 protected function generateFileHtml( SearchResult
$result ) {
234 $title = $result->getTitle();
235 if ( $title->getNamespace() !== NS_FILE
) {
236 return [ '', null, null ];
239 if ( $result->isFileMatch() ) {
240 $html = "<span class='searchalttitle'>" .
241 $this->specialPage
->msg( 'search-file-match' )->escaped() .
250 $img = $result->getFile() ?
: wfFindFile( $title );
252 $thumb = $img->transform( [ 'width' => 120, 'height' => 120 ] );
254 $descHtml = $this->specialPage
->msg( 'parentheses' )
255 ->rawParams( $img->getShortDesc() )
257 $thumbHtml = $thumb->toHtml( [ 'desc-link' => true ] );
261 return [ $html, $descHtml, $thumbHtml ];
265 * @param string $desc HTML description of result, ex: size in bytes, or empty string
266 * @param string $date HTML representation of last edit date, or empty string
267 * @return string HTML A div combining $desc and $date with a separator in a <div>.
268 * If either is missing only one will be represented. If both are missing an empty
269 * string will be returned.
271 protected function buildMeta( $desc, $date ) {
272 if ( $desc && $date ) {
273 $meta = "{$desc} - {$date}";
282 return "<div class='mw-search-result-data'>{$meta}</div>";