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