]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - includes/Linker.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / Linker.php
1 <?php
2 /**
3  * Methods to make links and related items.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  * @file
21  */
22 use MediaWiki\Linker\LinkTarget;
23 use MediaWiki\MediaWikiServices;
24
25 /**
26  * Some internal bits split of from Skin.php. These functions are used
27  * for primarily page content: links, embedded images, table of contents. Links
28  * are also used in the skin.
29  *
30  * @todo turn this into a legacy interface for HtmlPageLinkRenderer and similar services.
31  *
32  * @ingroup Skins
33  */
34 class Linker {
35         /**
36          * Flags for userToolLinks()
37          */
38         const TOOL_LINKS_NOBLOCK = 1;
39         const TOOL_LINKS_EMAIL = 2;
40
41         /**
42          * Return the CSS colour of a known link
43          *
44          * @deprecated since 1.28, use LinkRenderer::getLinkClasses() instead
45          *
46          * @since 1.16.3
47          * @param LinkTarget $t
48          * @param int $threshold User defined threshold
49          * @return string CSS class
50          */
51         public static function getLinkColour( LinkTarget $t, $threshold ) {
52                 wfDeprecated( __METHOD__, '1.28' );
53                 $services = MediaWikiServices::getInstance();
54                 $linkRenderer = $services->getLinkRenderer();
55                 if ( $threshold !== $linkRenderer->getStubThreshold() ) {
56                         // Need to create a new instance with the right stub threshold...
57                         $linkRenderer = $services->getLinkRendererFactory()->create();
58                         $linkRenderer->setStubThreshold( $threshold );
59                 }
60
61                 return $linkRenderer->getLinkClasses( $t );
62         }
63
64         /**
65          * This function returns an HTML link to the given target.  It serves a few
66          * purposes:
67          *   1) If $target is a Title, the correct URL to link to will be figured
68          *      out automatically.
69          *   2) It automatically adds the usual classes for various types of link
70          *      targets: "new" for red links, "stub" for short articles, etc.
71          *   3) It escapes all attribute values safely so there's no risk of XSS.
72          *   4) It provides a default tooltip if the target is a Title (the page
73          *      name of the target).
74          * link() replaces the old functions in the makeLink() family.
75          *
76          * @since 1.18 Method exists since 1.16 as non-static, made static in 1.18.
77          * @deprecated since 1.28, use MediaWiki\Linker\LinkRenderer instead
78          *
79          * @param LinkTarget $target Can currently only be a LinkTarget, but this may
80          *   change to support Images, literal URLs, etc.
81          * @param string $html The HTML contents of the <a> element, i.e.,
82          *   the link text.  This is raw HTML and will not be escaped.  If null,
83          *   defaults to the prefixed text of the Title; or if the Title is just a
84          *   fragment, the contents of the fragment.
85          * @param array $customAttribs A key => value array of extra HTML attributes,
86          *   such as title and class.  (href is ignored.)  Classes will be
87          *   merged with the default classes, while other attributes will replace
88          *   default attributes.  All passed attribute values will be HTML-escaped.
89          *   A false attribute value means to suppress that attribute.
90          * @param array $query The query string to append to the URL
91          *   you're linking to, in key => value array form.  Query keys and values
92          *   will be URL-encoded.
93          * @param string|array $options String or array of strings:
94          *     'known': Page is known to exist, so don't check if it does.
95          *     'broken': Page is known not to exist, so don't check if it does.
96          *     'noclasses': Don't add any classes automatically (includes "new",
97          *       "stub", "mw-redirect", "extiw").  Only use the class attribute
98          *       provided, if any, so you get a simple blue link with no funny i-
99          *       cons.
100          *     'forcearticlepath': Use the article path always, even with a querystring.
101          *       Has compatibility issues on some setups, so avoid wherever possible.
102          *     'http': Force a full URL with http:// as the scheme.
103          *     'https': Force a full URL with https:// as the scheme.
104          *     'stubThreshold' => (int): Stub threshold to use when determining link classes.
105          * @return string HTML <a> attribute
106          */
107         public static function link(
108                 $target, $html = null, $customAttribs = [], $query = [], $options = []
109         ) {
110                 if ( !$target instanceof LinkTarget ) {
111                         wfWarn( __METHOD__ . ': Requires $target to be a LinkTarget object.', 2 );
112                         return "<!-- ERROR -->$html";
113                 }
114
115                 if ( is_string( $query ) ) {
116                         // some functions withing core using this still hand over query strings
117                         wfDeprecated( __METHOD__ . ' with parameter $query as string (should be array)', '1.20' );
118                         $query = wfCgiToArray( $query );
119                 }
120
121                 $services = MediaWikiServices::getInstance();
122                 $options = (array)$options;
123                 if ( $options ) {
124                         // Custom options, create new LinkRenderer
125                         if ( !isset( $options['stubThreshold'] ) ) {
126                                 $defaultLinkRenderer = $services->getLinkRenderer();
127                                 $options['stubThreshold'] = $defaultLinkRenderer->getStubThreshold();
128                         }
129                         $linkRenderer = $services->getLinkRendererFactory()
130                                 ->createFromLegacyOptions( $options );
131                 } else {
132                         $linkRenderer = $services->getLinkRenderer();
133                 }
134
135                 if ( $html !== null ) {
136                         $text = new HtmlArmor( $html );
137                 } else {
138                         $text = $html; // null
139                 }
140                 if ( in_array( 'known', $options, true ) ) {
141                         return $linkRenderer->makeKnownLink( $target, $text, $customAttribs, $query );
142                 } elseif ( in_array( 'broken', $options, true ) ) {
143                         return $linkRenderer->makeBrokenLink( $target, $text, $customAttribs, $query );
144                 } elseif ( in_array( 'noclasses', $options, true ) ) {
145                         return $linkRenderer->makePreloadedLink( $target, $text, '', $customAttribs, $query );
146                 } else {
147                         return $linkRenderer->makeLink( $target, $text, $customAttribs, $query );
148                 }
149         }
150
151         /**
152          * Identical to link(), except $options defaults to 'known'.
153          *
154          * @since 1.16.3
155          * @deprecated since 1.28, use MediaWiki\Linker\LinkRenderer instead
156          * @see Linker::link
157          * @param Title $target
158          * @param string $html
159          * @param array $customAttribs
160          * @param array $query
161          * @param string|array $options
162          * @return string
163          */
164         public static function linkKnown(
165                 $target, $html = null, $customAttribs = [],
166                 $query = [], $options = [ 'known' ]
167         ) {
168                 return self::link( $target, $html, $customAttribs, $query, $options );
169         }
170
171         /**
172          * Make appropriate markup for a link to the current article. This is since
173          * MediaWiki 1.29.0 rendered as an <a> tag without an href and with a class
174          * showing the link text. The calling sequence is the same as for the other
175          * make*LinkObj static functions, but $query is not used.
176          *
177          * @since 1.16.3
178          * @param Title $nt
179          * @param string $html [optional]
180          * @param string $query [optional]
181          * @param string $trail [optional]
182          * @param string $prefix [optional]
183          *
184          * @return string
185          */
186         public static function makeSelfLinkObj( $nt, $html = '', $query = '', $trail = '', $prefix = '' ) {
187                 $ret = "<a class=\"mw-selflink selflink\">{$prefix}{$html}</a>{$trail}";
188                 if ( !Hooks::run( 'SelfLinkBegin', [ $nt, &$html, &$trail, &$prefix, &$ret ] ) ) {
189                         return $ret;
190                 }
191
192                 if ( $html == '' ) {
193                         $html = htmlspecialchars( $nt->getPrefixedText() );
194                 }
195                 list( $inside, $trail ) = self::splitTrail( $trail );
196                 return "<a class=\"mw-selflink selflink\">{$prefix}{$html}{$inside}</a>{$trail}";
197         }
198
199         /**
200          * Get a message saying that an invalid title was encountered.
201          * This should be called after a method like Title::makeTitleSafe() returned
202          * a value indicating that the title object is invalid.
203          *
204          * @param IContextSource $context Context to use to get the messages
205          * @param int $namespace Namespace number
206          * @param string $title Text of the title, without the namespace part
207          * @return string
208          */
209         public static function getInvalidTitleDescription( IContextSource $context, $namespace, $title ) {
210                 global $wgContLang;
211
212                 // First we check whether the namespace exists or not.
213                 if ( MWNamespace::exists( $namespace ) ) {
214                         if ( $namespace == NS_MAIN ) {
215                                 $name = $context->msg( 'blanknamespace' )->text();
216                         } else {
217                                 $name = $wgContLang->getFormattedNsText( $namespace );
218                         }
219                         return $context->msg( 'invalidtitle-knownnamespace', $namespace, $name, $title )->text();
220                 } else {
221                         return $context->msg( 'invalidtitle-unknownnamespace', $namespace, $title )->text();
222                 }
223         }
224
225         /**
226          * @since 1.16.3
227          * @param LinkTarget $target
228          * @return LinkTarget
229          */
230         public static function normaliseSpecialPage( LinkTarget $target ) {
231                 if ( $target->getNamespace() == NS_SPECIAL && !$target->isExternal() ) {
232                         list( $name, $subpage ) = SpecialPageFactory::resolveAlias( $target->getDBkey() );
233                         if ( !$name ) {
234                                 return $target;
235                         }
236                         $ret = SpecialPage::getTitleValueFor( $name, $subpage, $target->getFragment() );
237                         return $ret;
238                 } else {
239                         return $target;
240                 }
241         }
242
243         /**
244          * Returns the filename part of an url.
245          * Used as alternative text for external images.
246          *
247          * @param string $url
248          *
249          * @return string
250          */
251         private static function fnamePart( $url ) {
252                 $basename = strrchr( $url, '/' );
253                 if ( false === $basename ) {
254                         $basename = $url;
255                 } else {
256                         $basename = substr( $basename, 1 );
257                 }
258                 return $basename;
259         }
260
261         /**
262          * Return the code for images which were added via external links,
263          * via Parser::maybeMakeExternalImage().
264          *
265          * @since 1.16.3
266          * @param string $url
267          * @param string $alt
268          *
269          * @return string
270          */
271         public static function makeExternalImage( $url, $alt = '' ) {
272                 if ( $alt == '' ) {
273                         $alt = self::fnamePart( $url );
274                 }
275                 $img = '';
276                 $success = Hooks::run( 'LinkerMakeExternalImage', [ &$url, &$alt, &$img ] );
277                 if ( !$success ) {
278                         wfDebug( "Hook LinkerMakeExternalImage changed the output of external image "
279                                 . "with url {$url} and alt text {$alt} to {$img}\n", true );
280                         return $img;
281                 }
282                 return Html::element( 'img',
283                         [
284                                 'src' => $url,
285                                 'alt' => $alt ] );
286         }
287
288         /**
289          * Given parameters derived from [[Image:Foo|options...]], generate the
290          * HTML that that syntax inserts in the page.
291          *
292          * @param Parser $parser
293          * @param Title $title Title object of the file (not the currently viewed page)
294          * @param File $file File object, or false if it doesn't exist
295          * @param array $frameParams Associative array of parameters external to the media handler.
296          *     Boolean parameters are indicated by presence or absence, the value is arbitrary and
297          *     will often be false.
298          *          thumbnail       If present, downscale and frame
299          *          manualthumb     Image name to use as a thumbnail, instead of automatic scaling
300          *          framed          Shows image in original size in a frame
301          *          frameless       Downscale but don't frame
302          *          upright         If present, tweak default sizes for portrait orientation
303          *          upright_factor  Fudge factor for "upright" tweak (default 0.75)
304          *          border          If present, show a border around the image
305          *          align           Horizontal alignment (left, right, center, none)
306          *          valign          Vertical alignment (baseline, sub, super, top, text-top, middle,
307          *                          bottom, text-bottom)
308          *          alt             Alternate text for image (i.e. alt attribute). Plain text.
309          *          class           HTML for image classes. Plain text.
310          *          caption         HTML for image caption.
311          *          link-url        URL to link to
312          *          link-title      Title object to link to
313          *          link-target     Value for the target attribute, only with link-url
314          *          no-link         Boolean, suppress description link
315          *
316          * @param array $handlerParams Associative array of media handler parameters, to be passed
317          *       to transform(). Typical keys are "width" and "page".
318          * @param string|bool $time Timestamp of the file, set as false for current
319          * @param string $query Query params for desc url
320          * @param int|null $widthOption Used by the parser to remember the user preference thumbnailsize
321          * @since 1.20
322          * @return string HTML for an image, with links, wrappers, etc.
323          */
324         public static function makeImageLink( Parser $parser, Title $title,
325                 $file, $frameParams = [], $handlerParams = [], $time = false,
326                 $query = "", $widthOption = null
327         ) {
328                 $res = null;
329                 $dummy = new DummyLinker;
330                 if ( !Hooks::run( 'ImageBeforeProduceHTML', [ &$dummy, &$title,
331                         &$file, &$frameParams, &$handlerParams, &$time, &$res ] ) ) {
332                         return $res;
333                 }
334
335                 if ( $file && !$file->allowInlineDisplay() ) {
336                         wfDebug( __METHOD__ . ': ' . $title->getPrefixedDBkey() . " does not allow inline display\n" );
337                         return self::link( $title );
338                 }
339
340                 // Clean up parameters
341                 $page = isset( $handlerParams['page'] ) ? $handlerParams['page'] : false;
342                 if ( !isset( $frameParams['align'] ) ) {
343                         $frameParams['align'] = '';
344                 }
345                 if ( !isset( $frameParams['alt'] ) ) {
346                         $frameParams['alt'] = '';
347                 }
348                 if ( !isset( $frameParams['title'] ) ) {
349                         $frameParams['title'] = '';
350                 }
351                 if ( !isset( $frameParams['class'] ) ) {
352                         $frameParams['class'] = '';
353                 }
354
355                 $prefix = $postfix = '';
356
357                 if ( 'center' == $frameParams['align'] ) {
358                         $prefix = '<div class="center">';
359                         $postfix = '</div>';
360                         $frameParams['align'] = 'none';
361                 }
362                 if ( $file && !isset( $handlerParams['width'] ) ) {
363                         if ( isset( $handlerParams['height'] ) && $file->isVectorized() ) {
364                                 // If its a vector image, and user only specifies height
365                                 // we don't want it to be limited by its "normal" width.
366                                 global $wgSVGMaxSize;
367                                 $handlerParams['width'] = $wgSVGMaxSize;
368                         } else {
369                                 $handlerParams['width'] = $file->getWidth( $page );
370                         }
371
372                         if ( isset( $frameParams['thumbnail'] )
373                                 || isset( $frameParams['manualthumb'] )
374                                 || isset( $frameParams['framed'] )
375                                 || isset( $frameParams['frameless'] )
376                                 || !$handlerParams['width']
377                         ) {
378                                 global $wgThumbLimits, $wgThumbUpright;
379
380                                 if ( $widthOption === null || !isset( $wgThumbLimits[$widthOption] ) ) {
381                                         $widthOption = User::getDefaultOption( 'thumbsize' );
382                                 }
383
384                                 // Reduce width for upright images when parameter 'upright' is used
385                                 if ( isset( $frameParams['upright'] ) && $frameParams['upright'] == 0 ) {
386                                         $frameParams['upright'] = $wgThumbUpright;
387                                 }
388
389                                 // For caching health: If width scaled down due to upright
390                                 // parameter, round to full __0 pixel to avoid the creation of a
391                                 // lot of odd thumbs.
392                                 $prefWidth = isset( $frameParams['upright'] ) ?
393                                         round( $wgThumbLimits[$widthOption] * $frameParams['upright'], -1 ) :
394                                         $wgThumbLimits[$widthOption];
395
396                                 // Use width which is smaller: real image width or user preference width
397                                 // Unless image is scalable vector.
398                                 if ( !isset( $handlerParams['height'] ) && ( $handlerParams['width'] <= 0 ||
399                                                 $prefWidth < $handlerParams['width'] || $file->isVectorized() ) ) {
400                                         $handlerParams['width'] = $prefWidth;
401                                 }
402                         }
403                 }
404
405                 if ( isset( $frameParams['thumbnail'] ) || isset( $frameParams['manualthumb'] )
406                         || isset( $frameParams['framed'] )
407                 ) {
408                         # Create a thumbnail. Alignment depends on the writing direction of
409                         # the page content language (right-aligned for LTR languages,
410                         # left-aligned for RTL languages)
411                         # If a thumbnail width has not been provided, it is set
412                         # to the default user option as specified in Language*.php
413                         if ( $frameParams['align'] == '' ) {
414                                 $frameParams['align'] = $parser->getTargetLanguage()->alignEnd();
415                         }
416                         return $prefix .
417                                 self::makeThumbLink2( $title, $file, $frameParams, $handlerParams, $time, $query ) .
418                                 $postfix;
419                 }
420
421                 if ( $file && isset( $frameParams['frameless'] ) ) {
422                         $srcWidth = $file->getWidth( $page );
423                         # For "frameless" option: do not present an image bigger than the
424                         # source (for bitmap-style images). This is the same behavior as the
425                         # "thumb" option does it already.
426                         if ( $srcWidth && !$file->mustRender() && $handlerParams['width'] > $srcWidth ) {
427                                 $handlerParams['width'] = $srcWidth;
428                         }
429                 }
430
431                 if ( $file && isset( $handlerParams['width'] ) ) {
432                         # Create a resized image, without the additional thumbnail features
433                         $thumb = $file->transform( $handlerParams );
434                 } else {
435                         $thumb = false;
436                 }
437
438                 if ( !$thumb ) {
439                         $s = self::makeBrokenImageLinkObj( $title, $frameParams['title'], '', '', '', $time == true );
440                 } else {
441                         self::processResponsiveImages( $file, $thumb, $handlerParams );
442                         $params = [
443                                 'alt' => $frameParams['alt'],
444                                 'title' => $frameParams['title'],
445                                 'valign' => isset( $frameParams['valign'] ) ? $frameParams['valign'] : false,
446                                 'img-class' => $frameParams['class'] ];
447                         if ( isset( $frameParams['border'] ) ) {
448                                 $params['img-class'] .= ( $params['img-class'] !== '' ? ' ' : '' ) . 'thumbborder';
449                         }
450                         $params = self::getImageLinkMTOParams( $frameParams, $query, $parser ) + $params;
451
452                         $s = $thumb->toHtml( $params );
453                 }
454                 if ( $frameParams['align'] != '' ) {
455                         $s = "<div class=\"float{$frameParams['align']}\">{$s}</div>";
456                 }
457                 return str_replace( "\n", ' ', $prefix . $s . $postfix );
458         }
459
460         /**
461          * Get the link parameters for MediaTransformOutput::toHtml() from given
462          * frame parameters supplied by the Parser.
463          * @param array $frameParams The frame parameters
464          * @param string $query An optional query string to add to description page links
465          * @param Parser|null $parser
466          * @return array
467          */
468         private static function getImageLinkMTOParams( $frameParams, $query = '', $parser = null ) {
469                 $mtoParams = [];
470                 if ( isset( $frameParams['link-url'] ) && $frameParams['link-url'] !== '' ) {
471                         $mtoParams['custom-url-link'] = $frameParams['link-url'];
472                         if ( isset( $frameParams['link-target'] ) ) {
473                                 $mtoParams['custom-target-link'] = $frameParams['link-target'];
474                         }
475                         if ( $parser ) {
476                                 $extLinkAttrs = $parser->getExternalLinkAttribs( $frameParams['link-url'] );
477                                 foreach ( $extLinkAttrs as $name => $val ) {
478                                         // Currently could include 'rel' and 'target'
479                                         $mtoParams['parser-extlink-' . $name] = $val;
480                                 }
481                         }
482                 } elseif ( isset( $frameParams['link-title'] ) && $frameParams['link-title'] !== '' ) {
483                         $mtoParams['custom-title-link'] = Title::newFromLinkTarget(
484                                 self::normaliseSpecialPage( $frameParams['link-title'] )
485                         );
486                 } elseif ( !empty( $frameParams['no-link'] ) ) {
487                         // No link
488                 } else {
489                         $mtoParams['desc-link'] = true;
490                         $mtoParams['desc-query'] = $query;
491                 }
492                 return $mtoParams;
493         }
494
495         /**
496          * Make HTML for a thumbnail including image, border and caption
497          * @param Title $title
498          * @param File|bool $file File object or false if it doesn't exist
499          * @param string $label
500          * @param string $alt
501          * @param string $align
502          * @param array $params
503          * @param bool $framed
504          * @param string $manualthumb
505          * @return string
506          */
507         public static function makeThumbLinkObj( Title $title, $file, $label = '', $alt,
508                 $align = 'right', $params = [], $framed = false, $manualthumb = ""
509         ) {
510                 $frameParams = [
511                         'alt' => $alt,
512                         'caption' => $label,
513                         'align' => $align
514                 ];
515                 if ( $framed ) {
516                         $frameParams['framed'] = true;
517                 }
518                 if ( $manualthumb ) {
519                         $frameParams['manualthumb'] = $manualthumb;
520                 }
521                 return self::makeThumbLink2( $title, $file, $frameParams, $params );
522         }
523
524         /**
525          * @param Title $title
526          * @param File $file
527          * @param array $frameParams
528          * @param array $handlerParams
529          * @param bool $time
530          * @param string $query
531          * @return string
532          */
533         public static function makeThumbLink2( Title $title, $file, $frameParams = [],
534                 $handlerParams = [], $time = false, $query = ""
535         ) {
536                 $exists = $file && $file->exists();
537
538                 $page = isset( $handlerParams['page'] ) ? $handlerParams['page'] : false;
539                 if ( !isset( $frameParams['align'] ) ) {
540                         $frameParams['align'] = 'right';
541                 }
542                 if ( !isset( $frameParams['alt'] ) ) {
543                         $frameParams['alt'] = '';
544                 }
545                 if ( !isset( $frameParams['title'] ) ) {
546                         $frameParams['title'] = '';
547                 }
548                 if ( !isset( $frameParams['caption'] ) ) {
549                         $frameParams['caption'] = '';
550                 }
551
552                 if ( empty( $handlerParams['width'] ) ) {
553                         // Reduce width for upright images when parameter 'upright' is used
554                         $handlerParams['width'] = isset( $frameParams['upright'] ) ? 130 : 180;
555                 }
556                 $thumb = false;
557                 $noscale = false;
558                 $manualthumb = false;
559
560                 if ( !$exists ) {
561                         $outerWidth = $handlerParams['width'] + 2;
562                 } else {
563                         if ( isset( $frameParams['manualthumb'] ) ) {
564                                 # Use manually specified thumbnail
565                                 $manual_title = Title::makeTitleSafe( NS_FILE, $frameParams['manualthumb'] );
566                                 if ( $manual_title ) {
567                                         $manual_img = wfFindFile( $manual_title );
568                                         if ( $manual_img ) {
569                                                 $thumb = $manual_img->getUnscaledThumb( $handlerParams );
570                                                 $manualthumb = true;
571                                         } else {
572                                                 $exists = false;
573                                         }
574                                 }
575                         } elseif ( isset( $frameParams['framed'] ) ) {
576                                 // Use image dimensions, don't scale
577                                 $thumb = $file->getUnscaledThumb( $handlerParams );
578                                 $noscale = true;
579                         } else {
580                                 # Do not present an image bigger than the source, for bitmap-style images
581                                 # This is a hack to maintain compatibility with arbitrary pre-1.10 behavior
582                                 $srcWidth = $file->getWidth( $page );
583                                 if ( $srcWidth && !$file->mustRender() && $handlerParams['width'] > $srcWidth ) {
584                                         $handlerParams['width'] = $srcWidth;
585                                 }
586                                 $thumb = $file->transform( $handlerParams );
587                         }
588
589                         if ( $thumb ) {
590                                 $outerWidth = $thumb->getWidth() + 2;
591                         } else {
592                                 $outerWidth = $handlerParams['width'] + 2;
593                         }
594                 }
595
596                 # ThumbnailImage::toHtml() already adds page= onto the end of DjVu URLs
597                 # So we don't need to pass it here in $query. However, the URL for the
598                 # zoom icon still needs it, so we make a unique query for it. See T16771
599                 $url = $title->getLocalURL( $query );
600                 if ( $page ) {
601                         $url = wfAppendQuery( $url, [ 'page' => $page ] );
602                 }
603                 if ( $manualthumb
604                         && !isset( $frameParams['link-title'] )
605                         && !isset( $frameParams['link-url'] )
606                         && !isset( $frameParams['no-link'] ) ) {
607                         $frameParams['link-url'] = $url;
608                 }
609
610                 $s = "<div class=\"thumb t{$frameParams['align']}\">"
611                         . "<div class=\"thumbinner\" style=\"width:{$outerWidth}px;\">";
612
613                 if ( !$exists ) {
614                         $s .= self::makeBrokenImageLinkObj( $title, $frameParams['title'], '', '', '', $time == true );
615                         $zoomIcon = '';
616                 } elseif ( !$thumb ) {
617                         $s .= wfMessage( 'thumbnail_error', '' )->escaped();
618                         $zoomIcon = '';
619                 } else {
620                         if ( !$noscale && !$manualthumb ) {
621                                 self::processResponsiveImages( $file, $thumb, $handlerParams );
622                         }
623                         $params = [
624                                 'alt' => $frameParams['alt'],
625                                 'title' => $frameParams['title'],
626                                 'img-class' => ( isset( $frameParams['class'] ) && $frameParams['class'] !== ''
627                                         ? $frameParams['class'] . ' '
628                                         : '' ) . 'thumbimage'
629                         ];
630                         $params = self::getImageLinkMTOParams( $frameParams, $query ) + $params;
631                         $s .= $thumb->toHtml( $params );
632                         if ( isset( $frameParams['framed'] ) ) {
633                                 $zoomIcon = "";
634                         } else {
635                                 $zoomIcon = Html::rawElement( 'div', [ 'class' => 'magnify' ],
636                                         Html::rawElement( 'a', [
637                                                 'href' => $url,
638                                                 'class' => 'internal',
639                                                 'title' => wfMessage( 'thumbnail-more' )->text() ],
640                                                 "" ) );
641                         }
642                 }
643                 $s .= '  <div class="thumbcaption">' . $zoomIcon . $frameParams['caption'] . "</div></div></div>";
644                 return str_replace( "\n", ' ', $s );
645         }
646
647         /**
648          * Process responsive images: add 1.5x and 2x subimages to the thumbnail, where
649          * applicable.
650          *
651          * @param File $file
652          * @param MediaTransformOutput $thumb
653          * @param array $hp Image parameters
654          */
655         public static function processResponsiveImages( $file, $thumb, $hp ) {
656                 global $wgResponsiveImages;
657                 if ( $wgResponsiveImages && $thumb && !$thumb->isError() ) {
658                         $hp15 = $hp;
659                         $hp15['width'] = round( $hp['width'] * 1.5 );
660                         $hp20 = $hp;
661                         $hp20['width'] = $hp['width'] * 2;
662                         if ( isset( $hp['height'] ) ) {
663                                 $hp15['height'] = round( $hp['height'] * 1.5 );
664                                 $hp20['height'] = $hp['height'] * 2;
665                         }
666
667                         $thumb15 = $file->transform( $hp15 );
668                         $thumb20 = $file->transform( $hp20 );
669                         if ( $thumb15 && !$thumb15->isError() && $thumb15->getUrl() !== $thumb->getUrl() ) {
670                                 $thumb->responsiveUrls['1.5'] = $thumb15->getUrl();
671                         }
672                         if ( $thumb20 && !$thumb20->isError() && $thumb20->getUrl() !== $thumb->getUrl() ) {
673                                 $thumb->responsiveUrls['2'] = $thumb20->getUrl();
674                         }
675                 }
676         }
677
678         /**
679          * Make a "broken" link to an image
680          *
681          * @since 1.16.3
682          * @param Title $title
683          * @param string $label Link label (plain text)
684          * @param string $query Query string
685          * @param string $unused1 Unused parameter kept for b/c
686          * @param string $unused2 Unused parameter kept for b/c
687          * @param bool $time A file of a certain timestamp was requested
688          * @return string
689          */
690         public static function makeBrokenImageLinkObj( $title, $label = '',
691                 $query = '', $unused1 = '', $unused2 = '', $time = false
692         ) {
693                 if ( !$title instanceof Title ) {
694                         wfWarn( __METHOD__ . ': Requires $title to be a Title object.' );
695                         return "<!-- ERROR -->" . htmlspecialchars( $label );
696                 }
697
698                 global $wgEnableUploads, $wgUploadMissingFileUrl, $wgUploadNavigationUrl;
699                 if ( $label == '' ) {
700                         $label = $title->getPrefixedText();
701                 }
702                 $encLabel = htmlspecialchars( $label );
703                 $currentExists = $time ? ( wfFindFile( $title ) != false ) : false;
704
705                 if ( ( $wgUploadMissingFileUrl || $wgUploadNavigationUrl || $wgEnableUploads )
706                         && !$currentExists
707                 ) {
708                         $redir = RepoGroup::singleton()->getLocalRepo()->checkRedirect( $title );
709
710                         if ( $redir ) {
711                                 // We already know it's a redirect, so mark it
712                                 // accordingly
713                                 return self::link(
714                                         $title,
715                                         $encLabel,
716                                         [ 'class' => 'mw-redirect' ],
717                                         wfCgiToArray( $query ),
718                                         [ 'known', 'noclasses' ]
719                                 );
720                         }
721
722                         $href = self::getUploadUrl( $title, $query );
723
724                         return '<a href="' . htmlspecialchars( $href ) . '" class="new" title="' .
725                                 htmlspecialchars( $title->getPrefixedText(), ENT_QUOTES ) . '">' .
726                                 $encLabel . '</a>';
727                 }
728
729                 return self::link( $title, $encLabel, [], wfCgiToArray( $query ), [ 'known', 'noclasses' ] );
730         }
731
732         /**
733          * Get the URL to upload a certain file
734          *
735          * @since 1.16.3
736          * @param Title $destFile Title object of the file to upload
737          * @param string $query Urlencoded query string to prepend
738          * @return string Urlencoded URL
739          */
740         protected static function getUploadUrl( $destFile, $query = '' ) {
741                 global $wgUploadMissingFileUrl, $wgUploadNavigationUrl;
742                 $q = 'wpDestFile=' . $destFile->getPartialURL();
743                 if ( $query != '' ) {
744                         $q .= '&' . $query;
745                 }
746
747                 if ( $wgUploadMissingFileUrl ) {
748                         return wfAppendQuery( $wgUploadMissingFileUrl, $q );
749                 } elseif ( $wgUploadNavigationUrl ) {
750                         return wfAppendQuery( $wgUploadNavigationUrl, $q );
751                 } else {
752                         $upload = SpecialPage::getTitleFor( 'Upload' );
753                         return $upload->getLocalURL( $q );
754                 }
755         }
756
757         /**
758          * Create a direct link to a given uploaded file.
759          *
760          * @since 1.16.3
761          * @param Title $title
762          * @param string $html Pre-sanitized HTML
763          * @param string $time MW timestamp of file creation time
764          * @return string HTML
765          */
766         public static function makeMediaLinkObj( $title, $html = '', $time = false ) {
767                 $img = wfFindFile( $title, [ 'time' => $time ] );
768                 return self::makeMediaLinkFile( $title, $img, $html );
769         }
770
771         /**
772          * Create a direct link to a given uploaded file.
773          * This will make a broken link if $file is false.
774          *
775          * @since 1.16.3
776          * @param Title $title
777          * @param File|bool $file File object or false
778          * @param string $html Pre-sanitized HTML
779          * @return string HTML
780          *
781          * @todo Handle invalid or missing images better.
782          */
783         public static function makeMediaLinkFile( Title $title, $file, $html = '' ) {
784                 if ( $file && $file->exists() ) {
785                         $url = $file->getUrl();
786                         $class = 'internal';
787                 } else {
788                         $url = self::getUploadUrl( $title );
789                         $class = 'new';
790                 }
791
792                 $alt = $title->getText();
793                 if ( $html == '' ) {
794                         $html = $alt;
795                 }
796
797                 $ret = '';
798                 $attribs = [
799                         'href' => $url,
800                         'class' => $class,
801                         'title' => $alt
802                 ];
803
804                 if ( !Hooks::run( 'LinkerMakeMediaLinkFile',
805                         [ $title, $file, &$html, &$attribs, &$ret ] ) ) {
806                         wfDebug( "Hook LinkerMakeMediaLinkFile changed the output of link "
807                                 . "with url {$url} and text {$html} to {$ret}\n", true );
808                         return $ret;
809                 }
810
811                 return Html::rawElement( 'a', $attribs, $html );
812         }
813
814         /**
815          * Make a link to a special page given its name and, optionally,
816          * a message key from the link text.
817          * Usage example: Linker::specialLink( 'Recentchanges' )
818          *
819          * @since 1.16.3
820          * @param string $name
821          * @param string $key
822          * @return string
823          */
824         public static function specialLink( $name, $key = '' ) {
825                 if ( $key == '' ) {
826                         $key = strtolower( $name );
827                 }
828
829                 return self::linkKnown( SpecialPage::getTitleFor( $name ), wfMessage( $key )->text() );
830         }
831
832         /**
833          * Make an external link
834          * @since 1.16.3. $title added in 1.21
835          * @param string $url URL to link to
836          * @param string $text Text of link
837          * @param bool $escape Do we escape the link text?
838          * @param string $linktype Type of external link. Gets added to the classes
839          * @param array $attribs Array of extra attributes to <a>
840          * @param Title|null $title Title object used for title specific link attributes
841          * @return string
842          */
843         public static function makeExternalLink( $url, $text, $escape = true,
844                 $linktype = '', $attribs = [], $title = null
845         ) {
846                 global $wgTitle;
847                 $class = "external";
848                 if ( $linktype ) {
849                         $class .= " $linktype";
850                 }
851                 if ( isset( $attribs['class'] ) && $attribs['class'] ) {
852                         $class .= " {$attribs['class']}";
853                 }
854                 $attribs['class'] = $class;
855
856                 if ( $escape ) {
857                         $text = htmlspecialchars( $text );
858                 }
859
860                 if ( !$title ) {
861                         $title = $wgTitle;
862                 }
863                 $newRel = Parser::getExternalLinkRel( $url, $title );
864                 if ( !isset( $attribs['rel'] ) || $attribs['rel'] === '' ) {
865                         $attribs['rel'] = $newRel;
866                 } elseif ( $newRel !== '' ) {
867                         // Merge the rel attributes.
868                         $newRels = explode( ' ', $newRel );
869                         $oldRels = explode( ' ', $attribs['rel'] );
870                         $combined = array_unique( array_merge( $newRels, $oldRels ) );
871                         $attribs['rel'] = implode( ' ', $combined );
872                 }
873                 $link = '';
874                 $success = Hooks::run( 'LinkerMakeExternalLink',
875                         [ &$url, &$text, &$link, &$attribs, $linktype ] );
876                 if ( !$success ) {
877                         wfDebug( "Hook LinkerMakeExternalLink changed the output of link "
878                                 . "with url {$url} and text {$text} to {$link}\n", true );
879                         return $link;
880                 }
881                 $attribs['href'] = $url;
882                 return Html::rawElement( 'a', $attribs, $text );
883         }
884
885         /**
886          * Make user link (or user contributions for unregistered users)
887          * @param int $userId User id in database.
888          * @param string $userName User name in database.
889          * @param string $altUserName Text to display instead of the user name (optional)
890          * @return string HTML fragment
891          * @since 1.16.3. $altUserName was added in 1.19.
892          */
893         public static function userLink( $userId, $userName, $altUserName = false ) {
894                 $classes = 'mw-userlink';
895                 if ( $userId == 0 ) {
896                         $page = SpecialPage::getTitleFor( 'Contributions', $userName );
897                         if ( $altUserName === false ) {
898                                 $altUserName = IP::prettifyIP( $userName );
899                         }
900                         $classes .= ' mw-anonuserlink'; // Separate link class for anons (T45179)
901                 } else {
902                         $page = Title::makeTitle( NS_USER, $userName );
903                 }
904
905                 // Wrap the output with <bdi> tags for directionality isolation
906                 return self::link(
907                         $page,
908                         '<bdi>' . htmlspecialchars( $altUserName !== false ? $altUserName : $userName ) . '</bdi>',
909                         [ 'class' => $classes ]
910                 );
911         }
912
913         /**
914          * Generate standard user tool links (talk, contributions, block link, etc.)
915          *
916          * @since 1.16.3
917          * @param int $userId User identifier
918          * @param string $userText User name or IP address
919          * @param bool $redContribsWhenNoEdits Should the contributions link be
920          *   red if the user has no edits?
921          * @param int $flags Customisation flags (e.g. Linker::TOOL_LINKS_NOBLOCK
922          *   and Linker::TOOL_LINKS_EMAIL).
923          * @param int $edits User edit count (optional, for performance)
924          * @return string HTML fragment
925          */
926         public static function userToolLinks(
927                 $userId, $userText, $redContribsWhenNoEdits = false, $flags = 0, $edits = null
928         ) {
929                 global $wgUser, $wgDisableAnonTalk, $wgLang;
930                 $talkable = !( $wgDisableAnonTalk && 0 == $userId );
931                 $blockable = !( $flags & self::TOOL_LINKS_NOBLOCK );
932                 $addEmailLink = $flags & self::TOOL_LINKS_EMAIL && $userId;
933
934                 $items = [];
935                 if ( $talkable ) {
936                         $items[] = self::userTalkLink( $userId, $userText );
937                 }
938                 if ( $userId ) {
939                         // check if the user has an edit
940                         $attribs = [];
941                         $attribs['class'] = 'mw-usertoollinks-contribs';
942                         if ( $redContribsWhenNoEdits ) {
943                                 if ( intval( $edits ) === 0 && $edits !== 0 ) {
944                                         $user = User::newFromId( $userId );
945                                         $edits = $user->getEditCount();
946                                 }
947                                 if ( $edits === 0 ) {
948                                         $attribs['class'] .= ' new';
949                                 }
950                         }
951                         $contribsPage = SpecialPage::getTitleFor( 'Contributions', $userText );
952
953                         $items[] = self::link( $contribsPage, wfMessage( 'contribslink' )->escaped(), $attribs );
954                 }
955                 if ( $blockable && $wgUser->isAllowed( 'block' ) ) {
956                         $items[] = self::blockLink( $userId, $userText );
957                 }
958
959                 if ( $addEmailLink && $wgUser->canSendEmail() ) {
960                         $items[] = self::emailLink( $userId, $userText );
961                 }
962
963                 Hooks::run( 'UserToolLinksEdit', [ $userId, $userText, &$items ] );
964
965                 if ( $items ) {
966                         return wfMessage( 'word-separator' )->escaped()
967                                 . '<span class="mw-usertoollinks">'
968                                 . wfMessage( 'parentheses' )->rawParams( $wgLang->pipeList( $items ) )->escaped()
969                                 . '</span>';
970                 } else {
971                         return '';
972                 }
973         }
974
975         /**
976          * Alias for userToolLinks( $userId, $userText, true );
977          * @since 1.16.3
978          * @param int $userId User identifier
979          * @param string $userText User name or IP address
980          * @param int $edits User edit count (optional, for performance)
981          * @return string
982          */
983         public static function userToolLinksRedContribs( $userId, $userText, $edits = null ) {
984                 return self::userToolLinks( $userId, $userText, true, 0, $edits );
985         }
986
987         /**
988          * @since 1.16.3
989          * @param int $userId User id in database.
990          * @param string $userText User name in database.
991          * @return string HTML fragment with user talk link
992          */
993         public static function userTalkLink( $userId, $userText ) {
994                 $userTalkPage = Title::makeTitle( NS_USER_TALK, $userText );
995                 $moreLinkAttribs['class'] = 'mw-usertoollinks-talk';
996                 $userTalkLink = self::link( $userTalkPage,
997                                                 wfMessage( 'talkpagelinktext' )->escaped(),
998                                                 $moreLinkAttribs );
999                 return $userTalkLink;
1000         }
1001
1002         /**
1003          * @since 1.16.3
1004          * @param int $userId Userid
1005          * @param string $userText User name in database.
1006          * @return string HTML fragment with block link
1007          */
1008         public static function blockLink( $userId, $userText ) {
1009                 $blockPage = SpecialPage::getTitleFor( 'Block', $userText );
1010                 $moreLinkAttribs['class'] = 'mw-usertoollinks-block';
1011                 $blockLink = self::link( $blockPage,
1012                                          wfMessage( 'blocklink' )->escaped(),
1013                                          $moreLinkAttribs );
1014                 return $blockLink;
1015         }
1016
1017         /**
1018          * @param int $userId Userid
1019          * @param string $userText User name in database.
1020          * @return string HTML fragment with e-mail user link
1021          */
1022         public static function emailLink( $userId, $userText ) {
1023                 $emailPage = SpecialPage::getTitleFor( 'Emailuser', $userText );
1024                 $moreLinkAttribs['class'] = 'mw-usertoollinks-mail';
1025                 $emailLink = self::link( $emailPage,
1026                                          wfMessage( 'emaillink' )->escaped(),
1027                                          $moreLinkAttribs );
1028                 return $emailLink;
1029         }
1030
1031         /**
1032          * Generate a user link if the current user is allowed to view it
1033          * @since 1.16.3
1034          * @param Revision $rev
1035          * @param bool $isPublic Show only if all users can see it
1036          * @return string HTML fragment
1037          */
1038         public static function revUserLink( $rev, $isPublic = false ) {
1039                 if ( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
1040                         $link = wfMessage( 'rev-deleted-user' )->escaped();
1041                 } elseif ( $rev->userCan( Revision::DELETED_USER ) ) {
1042                         $link = self::userLink( $rev->getUser( Revision::FOR_THIS_USER ),
1043                                 $rev->getUserText( Revision::FOR_THIS_USER ) );
1044                 } else {
1045                         $link = wfMessage( 'rev-deleted-user' )->escaped();
1046                 }
1047                 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
1048                         return '<span class="history-deleted">' . $link . '</span>';
1049                 }
1050                 return $link;
1051         }
1052
1053         /**
1054          * Generate a user tool link cluster if the current user is allowed to view it
1055          * @since 1.16.3
1056          * @param Revision $rev
1057          * @param bool $isPublic Show only if all users can see it
1058          * @return string HTML
1059          */
1060         public static function revUserTools( $rev, $isPublic = false ) {
1061                 if ( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
1062                         $link = wfMessage( 'rev-deleted-user' )->escaped();
1063                 } elseif ( $rev->userCan( Revision::DELETED_USER ) ) {
1064                         $userId = $rev->getUser( Revision::FOR_THIS_USER );
1065                         $userText = $rev->getUserText( Revision::FOR_THIS_USER );
1066                         $link = self::userLink( $userId, $userText )
1067                                 . self::userToolLinks( $userId, $userText );
1068                 } else {
1069                         $link = wfMessage( 'rev-deleted-user' )->escaped();
1070                 }
1071                 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
1072                         return ' <span class="history-deleted">' . $link . '</span>';
1073                 }
1074                 return $link;
1075         }
1076
1077         /**
1078          * This function is called by all recent changes variants, by the page history,
1079          * and by the user contributions list. It is responsible for formatting edit
1080          * summaries. It escapes any HTML in the summary, but adds some CSS to format
1081          * auto-generated comments (from section editing) and formats [[wikilinks]].
1082          *
1083          * @author Erik Moeller <moeller@scireview.de>
1084          * @since 1.16.3. $wikiId added in 1.26
1085          *
1086          * Note: there's not always a title to pass to this function.
1087          * Since you can't set a default parameter for a reference, I've turned it
1088          * temporarily to a value pass. Should be adjusted further. --brion
1089          *
1090          * @param string $comment
1091          * @param Title|null $title Title object (to generate link to the section in autocomment)
1092          *  or null
1093          * @param bool $local Whether section links should refer to local page
1094          * @param string|null $wikiId Id (as used by WikiMap) of the wiki to generate links to.
1095          *  For use with external changes.
1096          *
1097          * @return mixed|string
1098          */
1099         public static function formatComment(
1100                 $comment, $title = null, $local = false, $wikiId = null
1101         ) {
1102                 # Sanitize text a bit:
1103                 $comment = str_replace( "\n", " ", $comment );
1104                 # Allow HTML entities (for T15815)
1105                 $comment = Sanitizer::escapeHtmlAllowEntities( $comment );
1106
1107                 # Render autocomments and make links:
1108                 $comment = self::formatAutocomments( $comment, $title, $local, $wikiId );
1109                 $comment = self::formatLinksInComment( $comment, $title, $local, $wikiId );
1110
1111                 return $comment;
1112         }
1113
1114         /**
1115          * Converts autogenerated comments in edit summaries into section links.
1116          *
1117          * The pattern for autogen comments is / * foo * /, which makes for
1118          * some nasty regex.
1119          * We look for all comments, match any text before and after the comment,
1120          * add a separator where needed and format the comment itself with CSS
1121          * Called by Linker::formatComment.
1122          *
1123          * @param string $comment Comment text
1124          * @param Title|null $title An optional title object used to links to sections
1125          * @param bool $local Whether section links should refer to local page
1126          * @param string|null $wikiId Id of the wiki to link to (if not the local wiki),
1127          *  as used by WikiMap.
1128          *
1129          * @return string Formatted comment (wikitext)
1130          */
1131         private static function formatAutocomments(
1132                 $comment, $title = null, $local = false, $wikiId = null
1133         ) {
1134                 // @todo $append here is something of a hack to preserve the status
1135                 // quo. Someone who knows more about bidi and such should decide
1136                 // (1) what sane rendering even *is* for an LTR edit summary on an RTL
1137                 // wiki, both when autocomments exist and when they don't, and
1138                 // (2) what markup will make that actually happen.
1139                 $append = '';
1140                 $comment = preg_replace_callback(
1141                         // To detect the presence of content before or after the
1142                         // auto-comment, we use capturing groups inside optional zero-width
1143                         // assertions. But older versions of PCRE can't directly make
1144                         // zero-width assertions optional, so wrap them in a non-capturing
1145                         // group.
1146                         '!(?:(?<=(.)))?/\*\s*(.*?)\s*\*/(?:(?=(.)))?!',
1147                         function ( $match ) use ( $title, $local, $wikiId, &$append ) {
1148                                 global $wgLang;
1149
1150                                 // Ensure all match positions are defined
1151                                 $match += [ '', '', '', '' ];
1152
1153                                 $pre = $match[1] !== '';
1154                                 $auto = $match[2];
1155                                 $post = $match[3] !== '';
1156                                 $comment = null;
1157
1158                                 Hooks::run(
1159                                         'FormatAutocomments',
1160                                         [ &$comment, $pre, $auto, $post, $title, $local, $wikiId ]
1161                                 );
1162
1163                                 if ( $comment === null ) {
1164                                         $link = '';
1165                                         if ( $title ) {
1166                                                 $section = $auto;
1167                                                 # Remove links that a user may have manually put in the autosummary
1168                                                 # This could be improved by copying as much of Parser::stripSectionName as desired.
1169                                                 $section = str_replace( '[[:', '', $section );
1170                                                 $section = str_replace( '[[', '', $section );
1171                                                 $section = str_replace( ']]', '', $section );
1172
1173                                                 $section = Sanitizer::normalizeSectionNameWhitespace( $section ); # T24784
1174                                                 if ( $local ) {
1175                                                         $sectionTitle = Title::newFromText( '#' . $section );
1176                                                 } else {
1177                                                         $sectionTitle = Title::makeTitleSafe( $title->getNamespace(),
1178                                                                 $title->getDBkey(), Sanitizer::decodeCharReferences( $section ) );
1179                                                 }
1180                                                 if ( $sectionTitle ) {
1181                                                         $link = Linker::makeCommentLink( $sectionTitle, $wgLang->getArrow(), $wikiId, 'noclasses' );
1182                                                 } else {
1183                                                         $link = '';
1184                                                 }
1185                                         }
1186                                         if ( $pre ) {
1187                                                 # written summary $presep autocomment (summary /* section */)
1188                                                 $pre = wfMessage( 'autocomment-prefix' )->inContentLanguage()->escaped();
1189                                         }
1190                                         if ( $post ) {
1191                                                 # autocomment $postsep written summary (/* section */ summary)
1192                                                 $auto .= wfMessage( 'colon-separator' )->inContentLanguage()->escaped();
1193                                         }
1194                                         $auto = '<span class="autocomment">' . $auto . '</span>';
1195                                         $comment = $pre . $link . $wgLang->getDirMark()
1196                                                 . '<span dir="auto">' . $auto;
1197                                         $append .= '</span>';
1198                                 }
1199                                 return $comment;
1200                         },
1201                         $comment
1202                 );
1203                 return $comment . $append;
1204         }
1205
1206         /**
1207          * Formats wiki links and media links in text; all other wiki formatting
1208          * is ignored
1209          *
1210          * @since 1.16.3. $wikiId added in 1.26
1211          * @todo FIXME: Doesn't handle sub-links as in image thumb texts like the main parser
1212          *
1213          * @param string $comment Text to format links in. WARNING! Since the output of this
1214          *      function is html, $comment must be sanitized for use as html. You probably want
1215          *      to pass $comment through Sanitizer::escapeHtmlAllowEntities() before calling
1216          *      this function.
1217          * @param Title|null $title An optional title object used to links to sections
1218          * @param bool $local Whether section links should refer to local page
1219          * @param string|null $wikiId Id of the wiki to link to (if not the local wiki),
1220          *  as used by WikiMap.
1221          *
1222          * @return string
1223          */
1224         public static function formatLinksInComment(
1225                 $comment, $title = null, $local = false, $wikiId = null
1226         ) {
1227                 return preg_replace_callback(
1228                         '/
1229                                 \[\[
1230                                 :? # ignore optional leading colon
1231                                 ([^\]|]+) # 1. link target; page names cannot include ] or |
1232                                 (?:\|
1233                                         # 2. link text
1234                                         # Stop matching at ]] without relying on backtracking.
1235                                         ((?:]?[^\]])*+)
1236                                 )?
1237                                 \]\]
1238                                 ([^[]*) # 3. link trail (the text up until the next link)
1239                         /x',
1240                         function ( $match ) use ( $title, $local, $wikiId ) {
1241                                 global $wgContLang;
1242
1243                                 $medians = '(?:' . preg_quote( MWNamespace::getCanonicalName( NS_MEDIA ), '/' ) . '|';
1244                                 $medians .= preg_quote( $wgContLang->getNsText( NS_MEDIA ), '/' ) . '):';
1245
1246                                 $comment = $match[0];
1247
1248                                 # fix up urlencoded title texts (copied from Parser::replaceInternalLinks)
1249                                 if ( strpos( $match[1], '%' ) !== false ) {
1250                                         $match[1] = strtr(
1251                                                 rawurldecode( $match[1] ),
1252                                                 [ '<' => '&lt;', '>' => '&gt;' ]
1253                                         );
1254                                 }
1255
1256                                 # Handle link renaming [[foo|text]] will show link as "text"
1257                                 if ( $match[2] != "" ) {
1258                                         $text = $match[2];
1259                                 } else {
1260                                         $text = $match[1];
1261                                 }
1262                                 $submatch = [];
1263                                 $thelink = null;
1264                                 if ( preg_match( '/^' . $medians . '(.*)$/i', $match[1], $submatch ) ) {
1265                                         # Media link; trail not supported.
1266                                         $linkRegexp = '/\[\[(.*?)\]\]/';
1267                                         $title = Title::makeTitleSafe( NS_FILE, $submatch[1] );
1268                                         if ( $title ) {
1269                                                 $thelink = Linker::makeMediaLinkObj( $title, $text );
1270                                         }
1271                                 } else {
1272                                         # Other kind of link
1273                                         # Make sure its target is non-empty
1274                                         if ( isset( $match[1][0] ) && $match[1][0] == ':' ) {
1275                                                 $match[1] = substr( $match[1], 1 );
1276                                         }
1277                                         if ( $match[1] !== false && $match[1] !== '' ) {
1278                                                 if ( preg_match( $wgContLang->linkTrail(), $match[3], $submatch ) ) {
1279                                                         $trail = $submatch[1];
1280                                                 } else {
1281                                                         $trail = "";
1282                                                 }
1283                                                 $linkRegexp = '/\[\[(.*?)\]\]' . preg_quote( $trail, '/' ) . '/';
1284                                                 list( $inside, $trail ) = Linker::splitTrail( $trail );
1285
1286                                                 $linkText = $text;
1287                                                 $linkTarget = Linker::normalizeSubpageLink( $title, $match[1], $linkText );
1288
1289                                                 $target = Title::newFromText( $linkTarget );
1290                                                 if ( $target ) {
1291                                                         if ( $target->getText() == '' && !$target->isExternal()
1292                                                                 && !$local && $title
1293                                                         ) {
1294                                                                 $target = $title->createFragmentTarget( $target->getFragment() );
1295                                                         }
1296
1297                                                         $thelink = Linker::makeCommentLink( $target, $linkText . $inside, $wikiId ) . $trail;
1298                                                 }
1299                                         }
1300                                 }
1301                                 if ( $thelink ) {
1302                                         // If the link is still valid, go ahead and replace it in!
1303                                         $comment = preg_replace(
1304                                                 $linkRegexp,
1305                                                 StringUtils::escapeRegexReplacement( $thelink ),
1306                                                 $comment,
1307                                                 1
1308                                         );
1309                                 }
1310
1311                                 return $comment;
1312                         },
1313                         $comment
1314                 );
1315         }
1316
1317         /**
1318          * Generates a link to the given Title
1319          *
1320          * @note This is only public for technical reasons. It's not intended for use outside Linker.
1321          *
1322          * @param LinkTarget $linkTarget
1323          * @param string $text
1324          * @param string|null $wikiId Id of the wiki to link to (if not the local wiki),
1325          *  as used by WikiMap.
1326          * @param string|string[] $options See the $options parameter in Linker::link.
1327          *
1328          * @return string HTML link
1329          */
1330         public static function makeCommentLink(
1331                 LinkTarget $linkTarget, $text, $wikiId = null, $options = []
1332         ) {
1333                 if ( $wikiId !== null && !$linkTarget->isExternal() ) {
1334                         $link = self::makeExternalLink(
1335                                 WikiMap::getForeignURL(
1336                                         $wikiId,
1337                                         $linkTarget->getNamespace() === 0
1338                                                 ? $linkTarget->getDBkey()
1339                                                 : MWNamespace::getCanonicalName( $linkTarget->getNamespace() ) . ':'
1340                                                         . $linkTarget->getDBkey(),
1341                                         $linkTarget->getFragment()
1342                                 ),
1343                                 $text,
1344                                 /* escape = */ false // Already escaped
1345                         );
1346                 } else {
1347                         $link = self::link( $linkTarget, $text, [], [], $options );
1348                 }
1349
1350                 return $link;
1351         }
1352
1353         /**
1354          * @param Title $contextTitle
1355          * @param string $target
1356          * @param string &$text
1357          * @return string
1358          */
1359         public static function normalizeSubpageLink( $contextTitle, $target, &$text ) {
1360                 # Valid link forms:
1361                 # Foobar -- normal
1362                 # :Foobar -- override special treatment of prefix (images, language links)
1363                 # /Foobar -- convert to CurrentPage/Foobar
1364                 # /Foobar/ -- convert to CurrentPage/Foobar, strip the initial and final / from text
1365                 # ../ -- convert to CurrentPage, from CurrentPage/CurrentSubPage
1366                 # ../Foobar -- convert to CurrentPage/Foobar,
1367                 #              (from CurrentPage/CurrentSubPage)
1368                 # ../Foobar/ -- convert to CurrentPage/Foobar, use 'Foobar' as text
1369                 #              (from CurrentPage/CurrentSubPage)
1370
1371                 $ret = $target; # default return value is no change
1372
1373                 # Some namespaces don't allow subpages,
1374                 # so only perform processing if subpages are allowed
1375                 if ( $contextTitle && MWNamespace::hasSubpages( $contextTitle->getNamespace() ) ) {
1376                         $hash = strpos( $target, '#' );
1377                         if ( $hash !== false ) {
1378                                 $suffix = substr( $target, $hash );
1379                                 $target = substr( $target, 0, $hash );
1380                         } else {
1381                                 $suffix = '';
1382                         }
1383                         # T9425
1384                         $target = trim( $target );
1385                         # Look at the first character
1386                         if ( $target != '' && $target[0] === '/' ) {
1387                                 # / at end means we don't want the slash to be shown
1388                                 $m = [];
1389                                 $trailingSlashes = preg_match_all( '%(/+)$%', $target, $m );
1390                                 if ( $trailingSlashes ) {
1391                                         $noslash = $target = substr( $target, 1, -strlen( $m[0][0] ) );
1392                                 } else {
1393                                         $noslash = substr( $target, 1 );
1394                                 }
1395
1396                                 $ret = $contextTitle->getPrefixedText() . '/' . trim( $noslash ) . $suffix;
1397                                 if ( $text === '' ) {
1398                                         $text = $target . $suffix;
1399                                 } # this might be changed for ugliness reasons
1400                         } else {
1401                                 # check for .. subpage backlinks
1402                                 $dotdotcount = 0;
1403                                 $nodotdot = $target;
1404                                 while ( strncmp( $nodotdot, "../", 3 ) == 0 ) {
1405                                         ++$dotdotcount;
1406                                         $nodotdot = substr( $nodotdot, 3 );
1407                                 }
1408                                 if ( $dotdotcount > 0 ) {
1409                                         $exploded = explode( '/', $contextTitle->getPrefixedText() );
1410                                         if ( count( $exploded ) > $dotdotcount ) { # not allowed to go below top level page
1411                                                 $ret = implode( '/', array_slice( $exploded, 0, -$dotdotcount ) );
1412                                                 # / at the end means don't show full path
1413                                                 if ( substr( $nodotdot, -1, 1 ) === '/' ) {
1414                                                         $nodotdot = rtrim( $nodotdot, '/' );
1415                                                         if ( $text === '' ) {
1416                                                                 $text = $nodotdot . $suffix;
1417                                                         }
1418                                                 }
1419                                                 $nodotdot = trim( $nodotdot );
1420                                                 if ( $nodotdot != '' ) {
1421                                                         $ret .= '/' . $nodotdot;
1422                                                 }
1423                                                 $ret .= $suffix;
1424                                         }
1425                                 }
1426                         }
1427                 }
1428
1429                 return $ret;
1430         }
1431
1432         /**
1433          * Wrap a comment in standard punctuation and formatting if
1434          * it's non-empty, otherwise return empty string.
1435          *
1436          * @since 1.16.3. $wikiId added in 1.26
1437          * @param string $comment
1438          * @param Title|null $title Title object (to generate link to section in autocomment) or null
1439          * @param bool $local Whether section links should refer to local page
1440          * @param string|null $wikiId Id (as used by WikiMap) of the wiki to generate links to.
1441          *  For use with external changes.
1442          *
1443          * @return string
1444          */
1445         public static function commentBlock(
1446                 $comment, $title = null, $local = false, $wikiId = null
1447         ) {
1448                 // '*' used to be the comment inserted by the software way back
1449                 // in antiquity in case none was provided, here for backwards
1450                 // compatibility, acc. to brion -ævar
1451                 if ( $comment == '' || $comment == '*' ) {
1452                         return '';
1453                 } else {
1454                         $formatted = self::formatComment( $comment, $title, $local, $wikiId );
1455                         $formatted = wfMessage( 'parentheses' )->rawParams( $formatted )->escaped();
1456                         return " <span class=\"comment\">$formatted</span>";
1457                 }
1458         }
1459
1460         /**
1461          * Wrap and format the given revision's comment block, if the current
1462          * user is allowed to view it.
1463          *
1464          * @since 1.16.3
1465          * @param Revision $rev
1466          * @param bool $local Whether section links should refer to local page
1467          * @param bool $isPublic Show only if all users can see it
1468          * @return string HTML fragment
1469          */
1470         public static function revComment( Revision $rev, $local = false, $isPublic = false ) {
1471                 if ( $rev->getComment( Revision::RAW ) == "" ) {
1472                         return "";
1473                 }
1474                 if ( $rev->isDeleted( Revision::DELETED_COMMENT ) && $isPublic ) {
1475                         $block = " <span class=\"comment\">" . wfMessage( 'rev-deleted-comment' )->escaped() . "</span>";
1476                 } elseif ( $rev->userCan( Revision::DELETED_COMMENT ) ) {
1477                         $block = self::commentBlock( $rev->getComment( Revision::FOR_THIS_USER ),
1478                                 $rev->getTitle(), $local );
1479                 } else {
1480                         $block = " <span class=\"comment\">" . wfMessage( 'rev-deleted-comment' )->escaped() . "</span>";
1481                 }
1482                 if ( $rev->isDeleted( Revision::DELETED_COMMENT ) ) {
1483                         return " <span class=\"history-deleted\">$block</span>";
1484                 }
1485                 return $block;
1486         }
1487
1488         /**
1489          * @since 1.16.3
1490          * @param int $size
1491          * @return string
1492          */
1493         public static function formatRevisionSize( $size ) {
1494                 if ( $size == 0 ) {
1495                         $stxt = wfMessage( 'historyempty' )->escaped();
1496                 } else {
1497                         $stxt = wfMessage( 'nbytes' )->numParams( $size )->escaped();
1498                         $stxt = wfMessage( 'parentheses' )->rawParams( $stxt )->escaped();
1499                 }
1500                 return "<span class=\"history-size\">$stxt</span>";
1501         }
1502
1503         /**
1504          * Add another level to the Table of Contents
1505          *
1506          * @since 1.16.3
1507          * @return string
1508          */
1509         public static function tocIndent() {
1510                 return "\n<ul>";
1511         }
1512
1513         /**
1514          * Finish one or more sublevels on the Table of Contents
1515          *
1516          * @since 1.16.3
1517          * @param int $level
1518          * @return string
1519          */
1520         public static function tocUnindent( $level ) {
1521                 return "</li>\n" . str_repeat( "</ul>\n</li>\n", $level > 0 ? $level : 0 );
1522         }
1523
1524         /**
1525          * parameter level defines if we are on an indentation level
1526          *
1527          * @since 1.16.3
1528          * @param string $anchor
1529          * @param string $tocline
1530          * @param string $tocnumber
1531          * @param string $level
1532          * @param string|bool $sectionIndex
1533          * @return string
1534          */
1535         public static function tocLine( $anchor, $tocline, $tocnumber, $level, $sectionIndex = false ) {
1536                 $classes = "toclevel-$level";
1537                 if ( $sectionIndex !== false ) {
1538                         $classes .= " tocsection-$sectionIndex";
1539                 }
1540
1541                 // \n<li class="$classes"><a href="#$anchor"><span class="tocnumber">
1542                 // $tocnumber</span> <span class="toctext">$tocline</span></a>
1543                 return "\n" . Html::openElement( 'li', [ 'class' => $classes ] )
1544                         . Html::rawElement( 'a',
1545                                 [ 'href' => "#$anchor" ],
1546                                 Html::element( 'span', [ 'class' => 'tocnumber' ], $tocnumber )
1547                                         . ' '
1548                                         . Html::rawElement( 'span', [ 'class' => 'toctext' ], $tocline )
1549                         );
1550         }
1551
1552         /**
1553          * End a Table Of Contents line.
1554          * tocUnindent() will be used instead if we're ending a line below
1555          * the new level.
1556          * @since 1.16.3
1557          * @return string
1558          */
1559         public static function tocLineEnd() {
1560                 return "</li>\n";
1561         }
1562
1563         /**
1564          * Wraps the TOC in a table and provides the hide/collapse javascript.
1565          *
1566          * @since 1.16.3
1567          * @param string $toc Html of the Table Of Contents
1568          * @param string|Language|bool $lang Language for the toc title, defaults to user language
1569          * @return string Full html of the TOC
1570          */
1571         public static function tocList( $toc, $lang = false ) {
1572                 $lang = wfGetLangObj( $lang );
1573                 $title = wfMessage( 'toc' )->inLanguage( $lang )->escaped();
1574
1575                 return '<div id="toc" class="toc">'
1576                         . '<div class="toctitle"><h2>' . $title . "</h2></div>\n"
1577                         . $toc
1578                         . "</ul>\n</div>\n";
1579         }
1580
1581         /**
1582          * Generate a table of contents from a section tree.
1583          *
1584          * @since 1.16.3. $lang added in 1.17
1585          * @param array $tree Return value of ParserOutput::getSections()
1586          * @param string|Language|bool $lang Language for the toc title, defaults to user language
1587          * @return string HTML fragment
1588          */
1589         public static function generateTOC( $tree, $lang = false ) {
1590                 $toc = '';
1591                 $lastLevel = 0;
1592                 foreach ( $tree as $section ) {
1593                         if ( $section['toclevel'] > $lastLevel ) {
1594                                 $toc .= self::tocIndent();
1595                         } elseif ( $section['toclevel'] < $lastLevel ) {
1596                                 $toc .= self::tocUnindent(
1597                                         $lastLevel - $section['toclevel'] );
1598                         } else {
1599                                 $toc .= self::tocLineEnd();
1600                         }
1601
1602                         $toc .= self::tocLine( $section['anchor'],
1603                                 $section['line'], $section['number'],
1604                                 $section['toclevel'], $section['index'] );
1605                         $lastLevel = $section['toclevel'];
1606                 }
1607                 $toc .= self::tocLineEnd();
1608                 return self::tocList( $toc, $lang );
1609         }
1610
1611         /**
1612          * Create a headline for content
1613          *
1614          * @since 1.16.3
1615          * @param int $level The level of the headline (1-6)
1616          * @param string $attribs Any attributes for the headline, starting with
1617          *   a space and ending with '>'
1618          *   This *must* be at least '>' for no attribs
1619          * @param string $anchor The anchor to give the headline (the bit after the #)
1620          * @param string $html HTML for the text of the header
1621          * @param string $link HTML to add for the section edit link
1622          * @param string|bool $fallbackAnchor A second, optional anchor to give for
1623          *   backward compatibility (false to omit)
1624          *
1625          * @return string HTML headline
1626          */
1627         public static function makeHeadline( $level, $attribs, $anchor, $html,
1628                 $link, $fallbackAnchor = false
1629         ) {
1630                 $anchorEscaped = htmlspecialchars( $anchor );
1631                 $fallback = '';
1632                 if ( $fallbackAnchor !== false && $fallbackAnchor !== $anchor ) {
1633                         $fallbackAnchor = htmlspecialchars( $fallbackAnchor );
1634                         $fallback = "<span id=\"$fallbackAnchor\"></span>";
1635                 }
1636                 $ret = "<h$level$attribs"
1637                         . "$fallback<span class=\"mw-headline\" id=\"$anchorEscaped\">$html</span>"
1638                         . $link
1639                         . "</h$level>";
1640
1641                 return $ret;
1642         }
1643
1644         /**
1645          * Split a link trail, return the "inside" portion and the remainder of the trail
1646          * as a two-element array
1647          * @param string $trail
1648          * @return array
1649          */
1650         static function splitTrail( $trail ) {
1651                 global $wgContLang;
1652                 $regex = $wgContLang->linkTrail();
1653                 $inside = '';
1654                 if ( $trail !== '' ) {
1655                         $m = [];
1656                         if ( preg_match( $regex, $trail, $m ) ) {
1657                                 $inside = $m[1];
1658                                 $trail = $m[2];
1659                         }
1660                 }
1661                 return [ $inside, $trail ];
1662         }
1663
1664         /**
1665          * Generate a rollback link for a given revision.  Currently it's the
1666          * caller's responsibility to ensure that the revision is the top one. If
1667          * it's not, of course, the user will get an error message.
1668          *
1669          * If the calling page is called with the parameter &bot=1, all rollback
1670          * links also get that parameter. It causes the edit itself and the rollback
1671          * to be marked as "bot" edits. Bot edits are hidden by default from recent
1672          * changes, so this allows sysops to combat a busy vandal without bothering
1673          * other users.
1674          *
1675          * If the option verify is set this function will return the link only in case the
1676          * revision can be reverted. Please note that due to performance limitations
1677          * it might be assumed that a user isn't the only contributor of a page while
1678          * (s)he is, which will lead to useless rollback links. Furthermore this wont
1679          * work if $wgShowRollbackEditCount is disabled, so this can only function
1680          * as an additional check.
1681          *
1682          * If the option noBrackets is set the rollback link wont be enclosed in "[]".
1683          *
1684          * @since 1.16.3. $context added in 1.20. $options added in 1.21
1685          *
1686          * @param Revision $rev
1687          * @param IContextSource $context Context to use or null for the main context.
1688          * @param array $options
1689          * @return string
1690          */
1691         public static function generateRollback( $rev, IContextSource $context = null,
1692                 $options = [ 'verify' ]
1693         ) {
1694                 if ( $context === null ) {
1695                         $context = RequestContext::getMain();
1696                 }
1697
1698                 $editCount = false;
1699                 if ( in_array( 'verify', $options, true ) ) {
1700                         $editCount = self::getRollbackEditCount( $rev, true );
1701                         if ( $editCount === false ) {
1702                                 return '';
1703                         }
1704                 }
1705
1706                 $inner = self::buildRollbackLink( $rev, $context, $editCount );
1707
1708                 if ( !in_array( 'noBrackets', $options, true ) ) {
1709                         $inner = $context->msg( 'brackets' )->rawParams( $inner )->escaped();
1710                 }
1711
1712                 return '<span class="mw-rollback-link">' . $inner . '</span>';
1713         }
1714
1715         /**
1716          * This function will return the number of revisions which a rollback
1717          * would revert and, if $verify is set it will verify that a revision
1718          * can be reverted (that the user isn't the only contributor and the
1719          * revision we might rollback to isn't deleted). These checks can only
1720          * function as an additional check as this function only checks against
1721          * the last $wgShowRollbackEditCount edits.
1722          *
1723          * Returns null if $wgShowRollbackEditCount is disabled or false if $verify
1724          * is set and the user is the only contributor of the page.
1725          *
1726          * @param Revision $rev
1727          * @param bool $verify Try to verify that this revision can really be rolled back
1728          * @return int|bool|null
1729          */
1730         public static function getRollbackEditCount( $rev, $verify ) {
1731                 global $wgShowRollbackEditCount;
1732                 if ( !is_int( $wgShowRollbackEditCount ) || !$wgShowRollbackEditCount > 0 ) {
1733                         // Nothing has happened, indicate this by returning 'null'
1734                         return null;
1735                 }
1736
1737                 $dbr = wfGetDB( DB_REPLICA );
1738
1739                 // Up to the value of $wgShowRollbackEditCount revisions are counted
1740                 $res = $dbr->select(
1741                         'revision',
1742                         [ 'rev_user_text', 'rev_deleted' ],
1743                         // $rev->getPage() returns null sometimes
1744                         [ 'rev_page' => $rev->getTitle()->getArticleID() ],
1745                         __METHOD__,
1746                         [
1747                                 'USE INDEX' => [ 'revision' => 'page_timestamp' ],
1748                                 'ORDER BY' => 'rev_timestamp DESC',
1749                                 'LIMIT' => $wgShowRollbackEditCount + 1
1750                         ]
1751                 );
1752
1753                 $editCount = 0;
1754                 $moreRevs = false;
1755                 foreach ( $res as $row ) {
1756                         if ( $rev->getUserText( Revision::RAW ) != $row->rev_user_text ) {
1757                                 if ( $verify &&
1758                                         ( $row->rev_deleted & Revision::DELETED_TEXT
1759                                                 || $row->rev_deleted & Revision::DELETED_USER
1760                                 ) ) {
1761                                         // If the user or the text of the revision we might rollback
1762                                         // to is deleted in some way we can't rollback. Similar to
1763                                         // the sanity checks in WikiPage::commitRollback.
1764                                         return false;
1765                                 }
1766                                 $moreRevs = true;
1767                                 break;
1768                         }
1769                         $editCount++;
1770                 }
1771
1772                 if ( $verify && $editCount <= $wgShowRollbackEditCount && !$moreRevs ) {
1773                         // We didn't find at least $wgShowRollbackEditCount revisions made by the current user
1774                         // and there weren't any other revisions. That means that the current user is the only
1775                         // editor, so we can't rollback
1776                         return false;
1777                 }
1778                 return $editCount;
1779         }
1780
1781         /**
1782          * Build a raw rollback link, useful for collections of "tool" links
1783          *
1784          * @since 1.16.3. $context added in 1.20. $editCount added in 1.21
1785          * @param Revision $rev
1786          * @param IContextSource|null $context Context to use or null for the main context.
1787          * @param int $editCount Number of edits that would be reverted
1788          * @return string HTML fragment
1789          */
1790         public static function buildRollbackLink( $rev, IContextSource $context = null,
1791                 $editCount = false
1792         ) {
1793                 global $wgShowRollbackEditCount, $wgMiserMode;
1794
1795                 // To config which pages are affected by miser mode
1796                 $disableRollbackEditCountSpecialPage = [ 'Recentchanges', 'Watchlist' ];
1797
1798                 if ( $context === null ) {
1799                         $context = RequestContext::getMain();
1800                 }
1801
1802                 $title = $rev->getTitle();
1803                 $query = [
1804                         'action' => 'rollback',
1805                         'from' => $rev->getUserText(),
1806                         'token' => $context->getUser()->getEditToken( 'rollback' ),
1807                 ];
1808                 $attrs = [
1809                         'data-mw' => 'interface',
1810                         'title' => $context->msg( 'tooltip-rollback' )->text(),
1811                 ];
1812                 $options = [ 'known', 'noclasses' ];
1813
1814                 if ( $context->getRequest()->getBool( 'bot' ) ) {
1815                         $query['bot'] = '1';
1816                         $query['hidediff'] = '1'; // T17999
1817                 }
1818
1819                 $disableRollbackEditCount = false;
1820                 if ( $wgMiserMode ) {
1821                         foreach ( $disableRollbackEditCountSpecialPage as $specialPage ) {
1822                                 if ( $context->getTitle()->isSpecial( $specialPage ) ) {
1823                                         $disableRollbackEditCount = true;
1824                                         break;
1825                                 }
1826                         }
1827                 }
1828
1829                 if ( !$disableRollbackEditCount
1830                         && is_int( $wgShowRollbackEditCount )
1831                         && $wgShowRollbackEditCount > 0
1832                 ) {
1833                         if ( !is_numeric( $editCount ) ) {
1834                                 $editCount = self::getRollbackEditCount( $rev, false );
1835                         }
1836
1837                         if ( $editCount > $wgShowRollbackEditCount ) {
1838                                 $html = $context->msg( 'rollbacklinkcount-morethan' )
1839                                         ->numParams( $wgShowRollbackEditCount )->parse();
1840                         } else {
1841                                 $html = $context->msg( 'rollbacklinkcount' )->numParams( $editCount )->parse();
1842                         }
1843
1844                         return self::link( $title, $html, $attrs, $query, $options );
1845                 } else {
1846                         $html = $context->msg( 'rollbacklink' )->escaped();
1847                         return self::link( $title, $html, $attrs, $query, $options );
1848                 }
1849         }
1850
1851         /**
1852          * @deprecated since 1.28, use TemplatesOnThisPageFormatter directly
1853          *
1854          * Returns HTML for the "templates used on this page" list.
1855          *
1856          * Make an HTML list of templates, and then add a "More..." link at
1857          * the bottom. If $more is null, do not add a "More..." link. If $more
1858          * is a Title, make a link to that title and use it. If $more is a string,
1859          * directly paste it in as the link (escaping needs to be done manually).
1860          * Finally, if $more is a Message, call toString().
1861          *
1862          * @since 1.16.3. $more added in 1.21
1863          * @param Title[] $templates Array of templates
1864          * @param bool $preview Whether this is for a preview
1865          * @param bool $section Whether this is for a section edit
1866          * @param Title|Message|string|null $more An escaped link for "More..." of the templates
1867          * @return string HTML output
1868          */
1869         public static function formatTemplates( $templates, $preview = false,
1870                 $section = false, $more = null
1871         ) {
1872                 wfDeprecated( __METHOD__, '1.28' );
1873
1874                 $type = false;
1875                 if ( $preview ) {
1876                         $type = 'preview';
1877                 } elseif ( $section ) {
1878                         $type = 'section';
1879                 }
1880
1881                 if ( $more instanceof Message ) {
1882                         $more = $more->toString();
1883                 }
1884
1885                 $formatter = new TemplatesOnThisPageFormatter(
1886                         RequestContext::getMain(),
1887                         MediaWikiServices::getInstance()->getLinkRenderer()
1888                 );
1889                 return $formatter->format( $templates, $type, $more );
1890         }
1891
1892         /**
1893          * Returns HTML for the "hidden categories on this page" list.
1894          *
1895          * @since 1.16.3
1896          * @param array $hiddencats Array of hidden categories from Article::getHiddenCategories
1897          *   or similar
1898          * @return string HTML output
1899          */
1900         public static function formatHiddenCategories( $hiddencats ) {
1901                 $outText = '';
1902                 if ( count( $hiddencats ) > 0 ) {
1903                         # Construct the HTML
1904                         $outText = '<div class="mw-hiddenCategoriesExplanation">';
1905                         $outText .= wfMessage( 'hiddencategories' )->numParams( count( $hiddencats ) )->parseAsBlock();
1906                         $outText .= "</div><ul>\n";
1907
1908                         foreach ( $hiddencats as $titleObj ) {
1909                                 # If it's hidden, it must exist - no need to check with a LinkBatch
1910                                 $outText .= '<li>'
1911                                         . self::link( $titleObj, null, [], [], 'known' )
1912                                         . "</li>\n";
1913                         }
1914                         $outText .= '</ul>';
1915                 }
1916                 return $outText;
1917         }
1918
1919         /**
1920          * @deprecated since 1.28, use Language::formatSize() directly
1921          *
1922          * Format a size in bytes for output, using an appropriate
1923          * unit (B, KB, MB or GB) according to the magnitude in question
1924          *
1925          * @since 1.16.3
1926          * @param int $size Size to format
1927          * @return string
1928          */
1929         public static function formatSize( $size ) {
1930                 wfDeprecated( __METHOD__, '1.28' );
1931
1932                 global $wgLang;
1933                 return htmlspecialchars( $wgLang->formatSize( $size ) );
1934         }
1935
1936         /**
1937          * Given the id of an interface element, constructs the appropriate title
1938          * attribute from the system messages.  (Note, this is usually the id but
1939          * isn't always, because sometimes the accesskey needs to go on a different
1940          * element than the id, for reverse-compatibility, etc.)
1941          *
1942          * @since 1.16.3 $msgParams added in 1.27
1943          * @param string $name Id of the element, minus prefixes.
1944          * @param string|null $options Null or the string 'withaccess' to add an access-
1945          *   key hint
1946          * @param array $msgParams Parameters to pass to the message
1947          *
1948          * @return string Contents of the title attribute (which you must HTML-
1949          *   escape), or false for no title attribute
1950          */
1951         public static function titleAttrib( $name, $options = null, array $msgParams = [] ) {
1952                 $message = wfMessage( "tooltip-$name", $msgParams );
1953                 if ( !$message->exists() ) {
1954                         $tooltip = false;
1955                 } else {
1956                         $tooltip = $message->text();
1957                         # Compatibility: formerly some tooltips had [alt-.] hardcoded
1958                         $tooltip = preg_replace( "/ ?\[alt-.\]$/", '', $tooltip );
1959                         # Message equal to '-' means suppress it.
1960                         if ( $tooltip == '-' ) {
1961                                 $tooltip = false;
1962                         }
1963                 }
1964
1965                 if ( $options == 'withaccess' ) {
1966                         $accesskey = self::accesskey( $name );
1967                         if ( $accesskey !== false ) {
1968                                 // Should be build the same as in jquery.accessKeyLabel.js
1969                                 if ( $tooltip === false || $tooltip === '' ) {
1970                                         $tooltip = wfMessage( 'brackets', $accesskey )->text();
1971                                 } else {
1972                                         $tooltip .= wfMessage( 'word-separator' )->text();
1973                                         $tooltip .= wfMessage( 'brackets', $accesskey )->text();
1974                                 }
1975                         }
1976                 }
1977
1978                 return $tooltip;
1979         }
1980
1981         public static $accesskeycache;
1982
1983         /**
1984          * Given the id of an interface element, constructs the appropriate
1985          * accesskey attribute from the system messages.  (Note, this is usually
1986          * the id but isn't always, because sometimes the accesskey needs to go on
1987          * a different element than the id, for reverse-compatibility, etc.)
1988          *
1989          * @since 1.16.3
1990          * @param string $name Id of the element, minus prefixes.
1991          * @return string Contents of the accesskey attribute (which you must HTML-
1992          *   escape), or false for no accesskey attribute
1993          */
1994         public static function accesskey( $name ) {
1995                 if ( isset( self::$accesskeycache[$name] ) ) {
1996                         return self::$accesskeycache[$name];
1997                 }
1998
1999                 $message = wfMessage( "accesskey-$name" );
2000
2001                 if ( !$message->exists() ) {
2002                         $accesskey = false;
2003                 } else {
2004                         $accesskey = $message->plain();
2005                         if ( $accesskey === '' || $accesskey === '-' ) {
2006                                 # @todo FIXME: Per standard MW behavior, a value of '-' means to suppress the
2007                                 # attribute, but this is broken for accesskey: that might be a useful
2008                                 # value.
2009                                 $accesskey = false;
2010                         }
2011                 }
2012
2013                 self::$accesskeycache[$name] = $accesskey;
2014                 return self::$accesskeycache[$name];
2015         }
2016
2017         /**
2018          * Get a revision-deletion link, or disabled link, or nothing, depending
2019          * on user permissions & the settings on the revision.
2020          *
2021          * Will use forward-compatible revision ID in the Special:RevDelete link
2022          * if possible, otherwise the timestamp-based ID which may break after
2023          * undeletion.
2024          *
2025          * @param User $user
2026          * @param Revision $rev
2027          * @param Title $title
2028          * @return string HTML fragment
2029          */
2030         public static function getRevDeleteLink( User $user, Revision $rev, Title $title ) {
2031                 $canHide = $user->isAllowed( 'deleterevision' );
2032                 if ( !$canHide && !( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) ) {
2033                         return '';
2034                 }
2035
2036                 if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
2037                         return self::revDeleteLinkDisabled( $canHide ); // revision was hidden from sysops
2038                 } else {
2039                         if ( $rev->getId() ) {
2040                                 // RevDelete links using revision ID are stable across
2041                                 // page deletion and undeletion; use when possible.
2042                                 $query = [
2043                                         'type' => 'revision',
2044                                         'target' => $title->getPrefixedDBkey(),
2045                                         'ids' => $rev->getId()
2046                                 ];
2047                         } else {
2048                                 // Older deleted entries didn't save a revision ID.
2049                                 // We have to refer to these by timestamp, ick!
2050                                 $query = [
2051                                         'type' => 'archive',
2052                                         'target' => $title->getPrefixedDBkey(),
2053                                         'ids' => $rev->getTimestamp()
2054                                 ];
2055                         }
2056                         return self::revDeleteLink( $query,
2057                                 $rev->isDeleted( Revision::DELETED_RESTRICTED ), $canHide );
2058                 }
2059         }
2060
2061         /**
2062          * Creates a (show/hide) link for deleting revisions/log entries
2063          *
2064          * @param array $query Query parameters to be passed to link()
2065          * @param bool $restricted Set to true to use a "<strong>" instead of a "<span>"
2066          * @param bool $delete Set to true to use (show/hide) rather than (show)
2067          *
2068          * @return string HTML "<a>" link to Special:Revisiondelete, wrapped in a
2069          * span to allow for customization of appearance with CSS
2070          */
2071         public static function revDeleteLink( $query = [], $restricted = false, $delete = true ) {
2072                 $sp = SpecialPage::getTitleFor( 'Revisiondelete' );
2073                 $msgKey = $delete ? 'rev-delundel' : 'rev-showdeleted';
2074                 $html = wfMessage( $msgKey )->escaped();
2075                 $tag = $restricted ? 'strong' : 'span';
2076                 $link = self::link( $sp, $html, [], $query, [ 'known', 'noclasses' ] );
2077                 return Xml::tags(
2078                         $tag,
2079                         [ 'class' => 'mw-revdelundel-link' ],
2080                         wfMessage( 'parentheses' )->rawParams( $link )->escaped()
2081                 );
2082         }
2083
2084         /**
2085          * Creates a dead (show/hide) link for deleting revisions/log entries
2086          *
2087          * @since 1.16.3
2088          * @param bool $delete Set to true to use (show/hide) rather than (show)
2089          *
2090          * @return string HTML text wrapped in a span to allow for customization
2091          * of appearance with CSS
2092          */
2093         public static function revDeleteLinkDisabled( $delete = true ) {
2094                 $msgKey = $delete ? 'rev-delundel' : 'rev-showdeleted';
2095                 $html = wfMessage( $msgKey )->escaped();
2096                 $htmlParentheses = wfMessage( 'parentheses' )->rawParams( $html )->escaped();
2097                 return Xml::tags( 'span', [ 'class' => 'mw-revdelundel-link' ], $htmlParentheses );
2098         }
2099
2100         /* Deprecated methods */
2101
2102         /**
2103          * Returns the attributes for the tooltip and access key.
2104          *
2105          * @since 1.16.3. $msgParams introduced in 1.27
2106          * @param string $name
2107          * @param array $msgParams Params for constructing the message
2108          *
2109          * @return array
2110          */
2111         public static function tooltipAndAccesskeyAttribs( $name, array $msgParams = [] ) {
2112                 $attribs = [
2113                         'title' => self::titleAttrib( $name, 'withaccess', $msgParams ),
2114                         'accesskey' => self::accesskey( $name )
2115                 ];
2116                 if ( $attribs['title'] === false ) {
2117                         unset( $attribs['title'] );
2118                 }
2119                 if ( $attribs['accesskey'] === false ) {
2120                         unset( $attribs['accesskey'] );
2121                 }
2122                 return $attribs;
2123         }
2124
2125         /**
2126          * Returns raw bits of HTML, use titleAttrib()
2127          * @since 1.16.3
2128          * @param string $name
2129          * @param array|null $options
2130          * @return null|string
2131          */
2132         public static function tooltip( $name, $options = null ) {
2133                 $tooltip = self::titleAttrib( $name, $options );
2134                 if ( $tooltip === false ) {
2135                         return '';
2136                 }
2137                 return Xml::expandAttributes( [
2138                         'title' => $tooltip
2139                 ] );
2140         }
2141
2142 }