Run generateLocalAutoload.php
[mediawiki.git] / includes / Message.php
blobfd016fcb371de8368b7509248cfbf8ec092a88ee
1 <?php
2 /**
3 * Fetching and processing of interface messages.
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.
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.
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
20 * @file
21 * @author Niklas Laxström
24 /**
25 * The Message class provides methods which fulfil two basic services:
26 * - fetching interface messages
27 * - processing messages into a variety of formats
29 * First implemented with MediaWiki 1.17, the Message class is intended to
30 * replace the old wfMsg* functions that over time grew unusable.
31 * @see https://www.mediawiki.org/wiki/Manual:Messages_API for equivalences
32 * between old and new functions.
34 * You should use the wfMessage() global function which acts as a wrapper for
35 * the Message class. The wrapper let you pass parameters as arguments.
37 * The most basic usage cases would be:
39 * @code
40 * // Initialize a Message object using the 'some_key' message key
41 * $message = wfMessage( 'some_key' );
43 * // Using two parameters those values are strings 'value1' and 'value2':
44 * $message = wfMessage( 'some_key',
45 * 'value1', 'value2'
46 * );
47 * @endcode
49 * @section message_global_fn Global function wrapper:
51 * Since wfMessage() returns a Message instance, you can chain its call with
52 * a method. Some of them return a Message instance too so you can chain them.
53 * You will find below several examples of wfMessage() usage.
55 * Fetching a message text for interface message:
57 * @code
58 * $button = Xml::button(
59 * wfMessage( 'submit' )->text()
60 * );
61 * @endcode
63 * A Message instance can be passed parameters after it has been constructed,
64 * use the params() method to do so:
66 * @code
67 * wfMessage( 'welcome-to' )
68 * ->params( $wgSitename )
69 * ->text();
70 * @endcode
72 * {{GRAMMAR}} and friends work correctly:
74 * @code
75 * wfMessage( 'are-friends',
76 * $user, $friend
77 * );
78 * wfMessage( 'bad-message' )
79 * ->rawParams( '<script>...</script>' )
80 * ->escaped();
81 * @endcode
83 * @section message_language Changing language:
85 * Messages can be requested in a different language or in whatever current
86 * content language is being used. The methods are:
87 * - Message->inContentLanguage()
88 * - Message->inLanguage()
90 * Sometimes the message text ends up in the database, so content language is
91 * needed:
93 * @code
94 * wfMessage( 'file-log',
95 * $user, $filename
96 * )->inContentLanguage()->text();
97 * @endcode
99 * Checking whether a message exists:
101 * @code
102 * wfMessage( 'mysterious-message' )->exists()
103 * // returns a boolean whether the 'mysterious-message' key exist.
104 * @endcode
106 * If you want to use a different language:
108 * @code
109 * $userLanguage = $user->getOption( 'language' );
110 * wfMessage( 'email-header' )
111 * ->inLanguage( $userLanguage )
112 * ->plain();
113 * @endcode
115 * @note You can parse the text only in the content or interface languages
117 * @section message_compare_old Comparison with old wfMsg* functions:
119 * Use full parsing:
121 * @code
122 * // old style:
123 * wfMsgExt( 'key', array( 'parseinline' ), 'apple' );
124 * // new style:
125 * wfMessage( 'key', 'apple' )->parse();
126 * @endcode
128 * Parseinline is used because it is more useful when pre-building HTML.
129 * In normal use it is better to use OutputPage::(add|wrap)WikiMsg.
131 * Places where HTML cannot be used. {{-transformation is done.
132 * @code
133 * // old style:
134 * wfMsgExt( 'key', array( 'parsemag' ), 'apple', 'pear' );
135 * // new style:
136 * wfMessage( 'key', 'apple', 'pear' )->text();
137 * @endcode
139 * Shortcut for escaping the message too, similar to wfMsgHTML(), but
140 * parameters are not replaced after escaping by default.
141 * @code
142 * $escaped = wfMessage( 'key' )
143 * ->rawParams( 'apple' )
144 * ->escaped();
145 * @endcode
147 * @section message_appendix Appendix:
149 * @todo
150 * - test, can we have tests?
151 * - this documentation needs to be extended
153 * @see https://www.mediawiki.org/wiki/WfMessage()
154 * @see https://www.mediawiki.org/wiki/New_messages_API
155 * @see https://www.mediawiki.org/wiki/Localisation
157 * @since 1.17
159 class Message implements MessageSpecifier, Serializable {
162 * In which language to get this message. True, which is the default,
163 * means the current user language, false content language.
165 * @var bool
167 protected $interface = true;
170 * In which language to get this message. Overrides the $interface setting.
172 * @var Language|bool Explicit language object, or false for user language
174 protected $language = false;
177 * @var string The message key. If $keysToTry has more than one element,
178 * this may change to one of the keys to try when fetching the message text.
180 protected $key;
183 * @var string[] List of keys to try when fetching the message.
185 protected $keysToTry;
188 * @var array List of parameters which will be substituted into the message.
190 protected $parameters = [];
193 * Format for the message.
194 * Supported formats are:
195 * * text (transform)
196 * * escaped (transform+htmlspecialchars)
197 * * block-parse
198 * * parse (default)
199 * * plain
201 * @var string
203 protected $format = 'parse';
206 * @var bool Whether database can be used.
208 protected $useDatabase = true;
211 * @var Title Title object to use as context.
213 protected $title = null;
216 * @var Content Content object representing the message.
218 protected $content = null;
221 * @var string
223 protected $message;
226 * @since 1.17
227 * @param string|string[]|MessageSpecifier $key Message key, or array of
228 * message keys to try and use the first non-empty message for, or a
229 * MessageSpecifier to copy from.
230 * @param array $params Message parameters.
231 * @param Language $language [optional] Language to use (defaults to current user language).
232 * @throws InvalidArgumentException
234 public function __construct( $key, $params = [], Language $language = null ) {
235 if ( $key instanceof MessageSpecifier ) {
236 if ( $params ) {
237 throw new InvalidArgumentException(
238 '$params must be empty if $key is a MessageSpecifier'
241 $params = $key->getParams();
242 $key = $key->getKey();
245 if ( !is_string( $key ) && !is_array( $key ) ) {
246 throw new InvalidArgumentException( '$key must be a string or an array' );
249 $this->keysToTry = (array)$key;
251 if ( empty( $this->keysToTry ) ) {
252 throw new InvalidArgumentException( '$key must not be an empty list' );
255 $this->key = reset( $this->keysToTry );
257 $this->parameters = array_values( $params );
258 // User language is only resolved in getLanguage(). This helps preserve the
259 // semantic intent of "user language" across serialize() and unserialize().
260 $this->language = $language ?: false;
264 * @see Serializable::serialize()
265 * @since 1.26
266 * @return string
268 public function serialize() {
269 return serialize( [
270 'interface' => $this->interface,
271 'language' => $this->language ? $this->language->getCode() : false,
272 'key' => $this->key,
273 'keysToTry' => $this->keysToTry,
274 'parameters' => $this->parameters,
275 'format' => $this->format,
276 'useDatabase' => $this->useDatabase,
277 'title' => $this->title,
278 ] );
282 * @see Serializable::unserialize()
283 * @since 1.26
284 * @param string $serialized
286 public function unserialize( $serialized ) {
287 $data = unserialize( $serialized );
288 $this->interface = $data['interface'];
289 $this->key = $data['key'];
290 $this->keysToTry = $data['keysToTry'];
291 $this->parameters = $data['parameters'];
292 $this->format = $data['format'];
293 $this->useDatabase = $data['useDatabase'];
294 $this->language = $data['language'] ? Language::factory( $data['language'] ) : false;
295 $this->title = $data['title'];
299 * @since 1.24
301 * @return bool True if this is a multi-key message, that is, if the key provided to the
302 * constructor was a fallback list of keys to try.
304 public function isMultiKey() {
305 return count( $this->keysToTry ) > 1;
309 * @since 1.24
311 * @return string[] The list of keys to try when fetching the message text,
312 * in order of preference.
314 public function getKeysToTry() {
315 return $this->keysToTry;
319 * Returns the message key.
321 * If a list of multiple possible keys was supplied to the constructor, this method may
322 * return any of these keys. After the message has been fetched, this method will return
323 * the key that was actually used to fetch the message.
325 * @since 1.21
327 * @return string
329 public function getKey() {
330 return $this->key;
334 * Returns the message parameters.
336 * @since 1.21
338 * @return array
340 public function getParams() {
341 return $this->parameters;
345 * Returns the message format.
347 * @since 1.21
349 * @return string
351 public function getFormat() {
352 return $this->format;
356 * Returns the Language of the Message.
358 * @since 1.23
360 * @return Language
362 public function getLanguage() {
363 // Defaults to false which means current user language
364 return $this->language ?: RequestContext::getMain()->getLanguage();
368 * Factory function that is just wrapper for the real constructor. It is
369 * intended to be used instead of the real constructor, because it allows
370 * chaining method calls, while new objects don't.
372 * @since 1.17
374 * @param string|string[]|MessageSpecifier $key
375 * @param mixed $param,... Parameters as strings.
377 * @return Message
379 public static function newFromKey( $key /*...*/ ) {
380 $params = func_get_args();
381 array_shift( $params );
382 return new self( $key, $params );
386 * Factory function accepting multiple message keys and returning a message instance
387 * for the first message which is non-empty. If all messages are empty then an
388 * instance of the first message key is returned.
390 * @since 1.18
392 * @param string|string[] $keys,... Message keys, or first argument as an array of all the
393 * message keys.
395 * @return Message
397 public static function newFallbackSequence( /*...*/ ) {
398 $keys = func_get_args();
399 if ( func_num_args() == 1 ) {
400 if ( is_array( $keys[0] ) ) {
401 // Allow an array to be passed as the first argument instead
402 $keys = array_values( $keys[0] );
403 } else {
404 // Optimize a single string to not need special fallback handling
405 $keys = $keys[0];
408 return new self( $keys );
412 * Get a title object for a mediawiki message, where it can be found in the mediawiki namespace.
413 * The title will be for the current language, if the message key is in
414 * $wgForceUIMsgAsContentMsg it will be append with the language code (except content
415 * language), because Message::inContentLanguage will also return in user language.
417 * @see $wgForceUIMsgAsContentMsg
418 * @return Title
419 * @since 1.26
421 public function getTitle() {
422 global $wgContLang, $wgForceUIMsgAsContentMsg;
424 $code = $this->getLanguage()->getCode();
425 $title = $this->key;
426 if (
427 $wgContLang->getCode() !== $code
428 && in_array( $this->key, (array)$wgForceUIMsgAsContentMsg )
430 $title .= '/' . $code;
433 return Title::makeTitle( NS_MEDIAWIKI, $wgContLang->ucfirst( strtr( $title, ' ', '_' ) ) );
437 * Adds parameters to the parameter list of this message.
439 * @since 1.17
441 * @param mixed ... Parameters as strings, or a single argument that is
442 * an array of strings.
444 * @return Message $this
446 public function params( /*...*/ ) {
447 $args = func_get_args();
448 if ( isset( $args[0] ) && is_array( $args[0] ) ) {
449 $args = $args[0];
451 $args_values = array_values( $args );
452 $this->parameters = array_merge( $this->parameters, $args_values );
453 return $this;
457 * Add parameters that are substituted after parsing or escaping.
458 * In other words the parsing process cannot access the contents
459 * of this type of parameter, and you need to make sure it is
460 * sanitized beforehand. The parser will see "$n", instead.
462 * @since 1.17
464 * @param mixed $params,... Raw parameters as strings, or a single argument that is
465 * an array of raw parameters.
467 * @return Message $this
469 public function rawParams( /*...*/ ) {
470 $params = func_get_args();
471 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
472 $params = $params[0];
474 foreach ( $params as $param ) {
475 $this->parameters[] = self::rawParam( $param );
477 return $this;
481 * Add parameters that are numeric and will be passed through
482 * Language::formatNum before substitution
484 * @since 1.18
486 * @param mixed $param,... Numeric parameters, or a single argument that is
487 * an array of numeric parameters.
489 * @return Message $this
491 public function numParams( /*...*/ ) {
492 $params = func_get_args();
493 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
494 $params = $params[0];
496 foreach ( $params as $param ) {
497 $this->parameters[] = self::numParam( $param );
499 return $this;
503 * Add parameters that are durations of time and will be passed through
504 * Language::formatDuration before substitution
506 * @since 1.22
508 * @param int|int[] $param,... Duration parameters, or a single argument that is
509 * an array of duration parameters.
511 * @return Message $this
513 public function durationParams( /*...*/ ) {
514 $params = func_get_args();
515 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
516 $params = $params[0];
518 foreach ( $params as $param ) {
519 $this->parameters[] = self::durationParam( $param );
521 return $this;
525 * Add parameters that are expiration times and will be passed through
526 * Language::formatExpiry before substitution
528 * @since 1.22
530 * @param string|string[] $param,... Expiry parameters, or a single argument that is
531 * an array of expiry parameters.
533 * @return Message $this
535 public function expiryParams( /*...*/ ) {
536 $params = func_get_args();
537 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
538 $params = $params[0];
540 foreach ( $params as $param ) {
541 $this->parameters[] = self::expiryParam( $param );
543 return $this;
547 * Add parameters that are time periods and will be passed through
548 * Language::formatTimePeriod before substitution
550 * @since 1.22
552 * @param int|int[] $param,... Time period parameters, or a single argument that is
553 * an array of time period parameters.
555 * @return Message $this
557 public function timeperiodParams( /*...*/ ) {
558 $params = func_get_args();
559 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
560 $params = $params[0];
562 foreach ( $params as $param ) {
563 $this->parameters[] = self::timeperiodParam( $param );
565 return $this;
569 * Add parameters that are file sizes and will be passed through
570 * Language::formatSize before substitution
572 * @since 1.22
574 * @param int|int[] $param,... Size parameters, or a single argument that is
575 * an array of size parameters.
577 * @return Message $this
579 public function sizeParams( /*...*/ ) {
580 $params = func_get_args();
581 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
582 $params = $params[0];
584 foreach ( $params as $param ) {
585 $this->parameters[] = self::sizeParam( $param );
587 return $this;
591 * Add parameters that are bitrates and will be passed through
592 * Language::formatBitrate before substitution
594 * @since 1.22
596 * @param int|int[] $param,... Bit rate parameters, or a single argument that is
597 * an array of bit rate parameters.
599 * @return Message $this
601 public function bitrateParams( /*...*/ ) {
602 $params = func_get_args();
603 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
604 $params = $params[0];
606 foreach ( $params as $param ) {
607 $this->parameters[] = self::bitrateParam( $param );
609 return $this;
613 * Add parameters that are plaintext and will be passed through without
614 * the content being evaluated. Plaintext parameters are not valid as
615 * arguments to parser functions. This differs from self::rawParams in
616 * that the Message class handles escaping to match the output format.
618 * @since 1.25
620 * @param string|string[] $param,... plaintext parameters, or a single argument that is
621 * an array of plaintext parameters.
623 * @return Message $this
625 public function plaintextParams( /*...*/ ) {
626 $params = func_get_args();
627 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
628 $params = $params[0];
630 foreach ( $params as $param ) {
631 $this->parameters[] = self::plaintextParam( $param );
633 return $this;
637 * Set the language and the title from a context object
639 * @since 1.19
641 * @param IContextSource $context
643 * @return Message $this
645 public function setContext( IContextSource $context ) {
646 $this->inLanguage( $context->getLanguage() );
647 $this->title( $context->getTitle() );
648 $this->interface = true;
650 return $this;
654 * Request the message in any language that is supported.
656 * As a side effect interface message status is unconditionally
657 * turned off.
659 * @since 1.17
660 * @param Language|string $lang Language code or Language object.
661 * @return Message $this
662 * @throws MWException
664 public function inLanguage( $lang ) {
665 if ( $lang instanceof Language ) {
666 $this->language = $lang;
667 } elseif ( is_string( $lang ) ) {
668 if ( !$this->language instanceof Language || $this->language->getCode() != $lang ) {
669 $this->language = Language::factory( $lang );
671 } elseif ( $lang instanceof StubUserLang ) {
672 $this->language = false;
673 } else {
674 $type = gettype( $lang );
675 throw new MWException( __METHOD__ . " must be "
676 . "passed a String or Language object; $type given"
679 $this->message = null;
680 $this->interface = false;
681 return $this;
685 * Request the message in the wiki's content language,
686 * unless it is disabled for this message.
688 * @since 1.17
689 * @see $wgForceUIMsgAsContentMsg
691 * @return Message $this
693 public function inContentLanguage() {
694 global $wgForceUIMsgAsContentMsg;
695 if ( in_array( $this->key, (array)$wgForceUIMsgAsContentMsg ) ) {
696 return $this;
699 global $wgContLang;
700 $this->inLanguage( $wgContLang );
701 return $this;
705 * Allows manipulating the interface message flag directly.
706 * Can be used to restore the flag after setting a language.
708 * @since 1.20
710 * @param bool $interface
712 * @return Message $this
714 public function setInterfaceMessageFlag( $interface ) {
715 $this->interface = (bool)$interface;
716 return $this;
720 * Enable or disable database use.
722 * @since 1.17
724 * @param bool $useDatabase
726 * @return Message $this
728 public function useDatabase( $useDatabase ) {
729 $this->useDatabase = (bool)$useDatabase;
730 return $this;
734 * Set the Title object to use as context when transforming the message
736 * @since 1.18
738 * @param Title $title
740 * @return Message $this
742 public function title( $title ) {
743 $this->title = $title;
744 return $this;
748 * Returns the message as a Content object.
750 * @return Content
752 public function content() {
753 if ( !$this->content ) {
754 $this->content = new MessageContent( $this );
757 return $this->content;
761 * Returns the message parsed from wikitext to HTML.
763 * @since 1.17
765 * @return string HTML
767 public function toString() {
768 $string = $this->fetchMessage();
770 if ( $string === false ) {
771 if ( $this->format === 'plain' || $this->format === 'text' ) {
772 return '<' . $this->key . '>';
774 return '&lt;' . htmlspecialchars( $this->key ) . '&gt;';
777 # Replace $* with a list of parameters for &uselang=qqx.
778 if ( strpos( $string, '$*' ) !== false ) {
779 $paramlist = '';
780 if ( $this->parameters !== [] ) {
781 $paramlist = ': $' . implode( ', $', range( 1, count( $this->parameters ) ) );
783 $string = str_replace( '$*', $paramlist, $string );
786 # Replace parameters before text parsing
787 $string = $this->replaceParameters( $string, 'before' );
789 # Maybe transform using the full parser
790 if ( $this->format === 'parse' ) {
791 $string = $this->parseText( $string );
792 $string = Parser::stripOuterParagraph( $string );
793 } elseif ( $this->format === 'block-parse' ) {
794 $string = $this->parseText( $string );
795 } elseif ( $this->format === 'text' ) {
796 $string = $this->transformText( $string );
797 } elseif ( $this->format === 'escaped' ) {
798 $string = $this->transformText( $string );
799 $string = htmlspecialchars( $string, ENT_QUOTES, 'UTF-8', false );
802 # Raw parameter replacement
803 $string = $this->replaceParameters( $string, 'after' );
805 return $string;
809 * Magic method implementation of the above (for PHP >= 5.2.0), so we can do, eg:
810 * $foo = new Message( $key );
811 * $string = "<abbr>$foo</abbr>";
813 * @since 1.18
815 * @return string
817 public function __toString() {
818 // PHP doesn't allow __toString to throw exceptions and will
819 // trigger a fatal error if it does. So, catch any exceptions.
821 try {
822 return $this->toString();
823 } catch ( Exception $ex ) {
824 try {
825 trigger_error( "Exception caught in " . __METHOD__ . " (message " . $this->key . "): "
826 . $ex, E_USER_WARNING );
827 } catch ( Exception $ex ) {
828 // Doh! Cause a fatal error after all?
831 if ( $this->format === 'plain' || $this->format === 'text' ) {
832 return '<' . $this->key . '>';
834 return '&lt;' . htmlspecialchars( $this->key ) . '&gt;';
839 * Fully parse the text from wikitext to HTML.
841 * @since 1.17
843 * @return string Parsed HTML.
845 public function parse() {
846 $this->format = 'parse';
847 return $this->toString();
851 * Returns the message text. {{-transformation is done.
853 * @since 1.17
855 * @return string Unescaped message text.
857 public function text() {
858 $this->format = 'text';
859 return $this->toString();
863 * Returns the message text as-is, only parameters are substituted.
865 * @since 1.17
867 * @return string Unescaped untransformed message text.
869 public function plain() {
870 $this->format = 'plain';
871 return $this->toString();
875 * Returns the parsed message text which is always surrounded by a block element.
877 * @since 1.17
879 * @return string HTML
881 public function parseAsBlock() {
882 $this->format = 'block-parse';
883 return $this->toString();
887 * Returns the message text. {{-transformation is done and the result
888 * is escaped excluding any raw parameters.
890 * @since 1.17
892 * @return string Escaped message text.
894 public function escaped() {
895 $this->format = 'escaped';
896 return $this->toString();
900 * Check whether a message key has been defined currently.
902 * @since 1.17
904 * @return bool
906 public function exists() {
907 return $this->fetchMessage() !== false;
911 * Check whether a message does not exist, or is an empty string
913 * @since 1.18
914 * @todo FIXME: Merge with isDisabled()?
916 * @return bool
918 public function isBlank() {
919 $message = $this->fetchMessage();
920 return $message === false || $message === '';
924 * Check whether a message does not exist, is an empty string, or is "-".
926 * @since 1.18
928 * @return bool
930 public function isDisabled() {
931 $message = $this->fetchMessage();
932 return $message === false || $message === '' || $message === '-';
936 * @since 1.17
938 * @param mixed $raw
940 * @return array Array with a single "raw" key.
942 public static function rawParam( $raw ) {
943 return [ 'raw' => $raw ];
947 * @since 1.18
949 * @param mixed $num
951 * @return array Array with a single "num" key.
953 public static function numParam( $num ) {
954 return [ 'num' => $num ];
958 * @since 1.22
960 * @param int $duration
962 * @return int[] Array with a single "duration" key.
964 public static function durationParam( $duration ) {
965 return [ 'duration' => $duration ];
969 * @since 1.22
971 * @param string $expiry
973 * @return string[] Array with a single "expiry" key.
975 public static function expiryParam( $expiry ) {
976 return [ 'expiry' => $expiry ];
980 * @since 1.22
982 * @param number $period
984 * @return number[] Array with a single "period" key.
986 public static function timeperiodParam( $period ) {
987 return [ 'period' => $period ];
991 * @since 1.22
993 * @param int $size
995 * @return int[] Array with a single "size" key.
997 public static function sizeParam( $size ) {
998 return [ 'size' => $size ];
1002 * @since 1.22
1004 * @param int $bitrate
1006 * @return int[] Array with a single "bitrate" key.
1008 public static function bitrateParam( $bitrate ) {
1009 return [ 'bitrate' => $bitrate ];
1013 * @since 1.25
1015 * @param string $plaintext
1017 * @return string[] Array with a single "plaintext" key.
1019 public static function plaintextParam( $plaintext ) {
1020 return [ 'plaintext' => $plaintext ];
1024 * Substitutes any parameters into the message text.
1026 * @since 1.17
1028 * @param string $message The message text.
1029 * @param string $type Either "before" or "after".
1031 * @return string
1033 protected function replaceParameters( $message, $type = 'before' ) {
1034 $replacementKeys = [];
1035 foreach ( $this->parameters as $n => $param ) {
1036 list( $paramType, $value ) = $this->extractParam( $param );
1037 if ( $type === $paramType ) {
1038 $replacementKeys['$' . ( $n + 1 )] = $value;
1041 $message = strtr( $message, $replacementKeys );
1042 return $message;
1046 * Extracts the parameter type and preprocessed the value if needed.
1048 * @since 1.18
1050 * @param mixed $param Parameter as defined in this class.
1052 * @return array Array with the parameter type (either "before" or "after") and the value.
1054 protected function extractParam( $param ) {
1055 if ( is_array( $param ) ) {
1056 if ( isset( $param['raw'] ) ) {
1057 return [ 'after', $param['raw'] ];
1058 } elseif ( isset( $param['num'] ) ) {
1059 // Replace number params always in before step for now.
1060 // No support for combined raw and num params
1061 return [ 'before', $this->getLanguage()->formatNum( $param['num'] ) ];
1062 } elseif ( isset( $param['duration'] ) ) {
1063 return [ 'before', $this->getLanguage()->formatDuration( $param['duration'] ) ];
1064 } elseif ( isset( $param['expiry'] ) ) {
1065 return [ 'before', $this->getLanguage()->formatExpiry( $param['expiry'] ) ];
1066 } elseif ( isset( $param['period'] ) ) {
1067 return [ 'before', $this->getLanguage()->formatTimePeriod( $param['period'] ) ];
1068 } elseif ( isset( $param['size'] ) ) {
1069 return [ 'before', $this->getLanguage()->formatSize( $param['size'] ) ];
1070 } elseif ( isset( $param['bitrate'] ) ) {
1071 return [ 'before', $this->getLanguage()->formatBitrate( $param['bitrate'] ) ];
1072 } elseif ( isset( $param['plaintext'] ) ) {
1073 return [ 'after', $this->formatPlaintext( $param['plaintext'] ) ];
1074 } else {
1075 $warning = 'Invalid parameter for message "' . $this->getKey() . '": ' .
1076 htmlspecialchars( serialize( $param ) );
1077 trigger_error( $warning, E_USER_WARNING );
1078 $e = new Exception;
1079 wfDebugLog( 'Bug58676', $warning . "\n" . $e->getTraceAsString() );
1081 return [ 'before', '[INVALID]' ];
1083 } elseif ( $param instanceof Message ) {
1084 // Message objects should not be before parameters because
1085 // then they'll get double escaped. If the message needs to be
1086 // escaped, it'll happen right here when we call toString().
1087 return [ 'after', $param->toString() ];
1088 } else {
1089 return [ 'before', $param ];
1094 * Wrapper for what ever method we use to parse wikitext.
1096 * @since 1.17
1098 * @param string $string Wikitext message contents.
1100 * @return string Wikitext parsed into HTML.
1102 protected function parseText( $string ) {
1103 $out = MessageCache::singleton()->parse(
1104 $string,
1105 $this->title,
1106 /*linestart*/true,
1107 $this->interface,
1108 $this->getLanguage()
1111 return $out instanceof ParserOutput ? $out->getText() : $out;
1115 * Wrapper for what ever method we use to {{-transform wikitext.
1117 * @since 1.17
1119 * @param string $string Wikitext message contents.
1121 * @return string Wikitext with {{-constructs replaced with their values.
1123 protected function transformText( $string ) {
1124 return MessageCache::singleton()->transform(
1125 $string,
1126 $this->interface,
1127 $this->getLanguage(),
1128 $this->title
1133 * Wrapper for what ever method we use to get message contents.
1135 * @since 1.17
1137 * @return string
1138 * @throws MWException If message key array is empty.
1140 protected function fetchMessage() {
1141 if ( $this->message === null ) {
1142 $cache = MessageCache::singleton();
1144 foreach ( $this->keysToTry as $key ) {
1145 $message = $cache->get( $key, $this->useDatabase, $this->getLanguage() );
1146 if ( $message !== false && $message !== '' ) {
1147 break;
1151 // NOTE: The constructor makes sure keysToTry isn't empty,
1152 // so we know that $key and $message are initialized.
1153 $this->key = $key;
1154 $this->message = $message;
1156 return $this->message;
1160 * Formats a message parameter wrapped with 'plaintext'. Ensures that
1161 * the entire string is displayed unchanged when displayed in the output
1162 * format.
1164 * @since 1.25
1166 * @param string $plaintext String to ensure plaintext output of
1168 * @return string Input plaintext encoded for output to $this->format
1170 protected function formatPlaintext( $plaintext ) {
1171 switch ( $this->format ) {
1172 case 'text':
1173 case 'plain':
1174 return $plaintext;
1176 case 'parse':
1177 case 'block-parse':
1178 case 'escaped':
1179 default:
1180 return htmlspecialchars( $plaintext, ENT_QUOTES );
1187 * Variant of the Message class.
1189 * Rather than treating the message key as a lookup
1190 * value (which is passed to the MessageCache and
1191 * translated as necessary), a RawMessage key is
1192 * treated as the actual message.
1194 * All other functionality (parsing, escaping, etc.)
1195 * is preserved.
1197 * @since 1.21
1199 class RawMessage extends Message {
1202 * Call the parent constructor, then store the key as
1203 * the message.
1205 * @see Message::__construct
1207 * @param string $text Message to use.
1208 * @param array $params Parameters for the message.
1210 * @throws InvalidArgumentException
1212 public function __construct( $text, $params = [] ) {
1213 if ( !is_string( $text ) ) {
1214 throw new InvalidArgumentException( '$text must be a string' );
1217 parent::__construct( $text, $params );
1219 // The key is the message.
1220 $this->message = $text;
1224 * Fetch the message (in this case, the key).
1226 * @return string
1228 public function fetchMessage() {
1229 // Just in case the message is unset somewhere.
1230 if ( $this->message === null ) {
1231 $this->message = $this->key;
1234 return $this->message;